diff --git a/.buildkite/ftr_configs.yml b/.buildkite/ftr_configs.yml
index b25f6f1bf44ac..309bf005084c9 100644
--- a/.buildkite/ftr_configs.yml
+++ b/.buildkite/ftr_configs.yml
@@ -357,6 +357,7 @@ enabled:
- x-pack/test/saved_object_api_integration/spaces_only/config.ts
- x-pack/test/saved_object_tagging/api_integration/security_and_spaces/config.ts
- x-pack/test/saved_object_tagging/api_integration/tagging_api/config.ts
+ - x-pack/test/saved_object_tagging/api_integration/tagging_usage_collection/config.ts
- x-pack/test/saved_object_tagging/functional/config.ts
- x-pack/test/saved_objects_field_count/config.ts
- x-pack/test/search_sessions_integration/config.ts
diff --git a/.buildkite/pipelines/on_merge.yml b/.buildkite/pipelines/on_merge.yml
index 086098cee6790..133004f468948 100644
--- a/.buildkite/pipelines/on_merge.yml
+++ b/.buildkite/pipelines/on_merge.yml
@@ -154,16 +154,15 @@ steps:
- exit_status: '-1'
limit: 3
-# TODO: Enable in #166813 after fixing types
-# - command: .buildkite/scripts/steps/check_types.sh
-# label: 'Check Types'
-# agents:
-# queue: n2-16-spot
-# timeout_in_minutes: 60
-# retry:
-# automatic:
-# - exit_status: '-1'
-# limit: 3
+ - command: .buildkite/scripts/steps/check_types.sh
+ label: 'Check Types'
+ agents:
+ queue: n2-16-spot
+ timeout_in_minutes: 60
+ retry:
+ automatic:
+ - exit_status: '-1'
+ limit: 3
- command: .buildkite/scripts/steps/storybooks/build_and_upload.sh
label: 'Build Storybooks'
diff --git a/.buildkite/pipelines/pull_request/base.yml b/.buildkite/pipelines/pull_request/base.yml
index 9c2527fcdd413..158c22c0bb0c5 100644
--- a/.buildkite/pipelines/pull_request/base.yml
+++ b/.buildkite/pipelines/pull_request/base.yml
@@ -136,13 +136,12 @@ steps:
- exit_status: '-1'
limit: 3
-# TODO: Enable in #166813 after fixing types
-# - command: .buildkite/scripts/steps/check_types.sh
-# label: 'Check Types'
-# agents:
-# queue: n2-16-spot
-# timeout_in_minutes: 60
-# retry:
-# automatic:
-# - exit_status: '-1'
-# limit: 3
+ - command: .buildkite/scripts/steps/check_types.sh
+ label: 'Check Types'
+ agents:
+ queue: n2-16-spot
+ timeout_in_minutes: 60
+ retry:
+ automatic:
+ - exit_status: '-1'
+ limit: 3
diff --git a/.buildkite/pipelines/pull_request/type_check_selective.yml b/.buildkite/pipelines/pull_request/type_check_selective.yml
deleted file mode 100644
index 7d01f128aac3c..0000000000000
--- a/.buildkite/pipelines/pull_request/type_check_selective.yml
+++ /dev/null
@@ -1,10 +0,0 @@
-steps:
- - command: .buildkite/scripts/steps/check_types_commits.sh
- label: 'Check Types Commit Diff'
- agents:
- queue: n2-16-spot
- timeout_in_minutes: 60
- retry:
- automatic:
- - exit_status: '-1'
- limit: 3
diff --git a/.buildkite/scripts/pipelines/pull_request/pipeline.ts b/.buildkite/scripts/pipelines/pull_request/pipeline.ts
index 37bd89f2a75a7..80d1312af6e64 100644
--- a/.buildkite/scripts/pipelines/pull_request/pipeline.ts
+++ b/.buildkite/scripts/pipelines/pull_request/pipeline.ts
@@ -59,12 +59,6 @@ const uploadPipeline = (pipelineContent: string | object) => {
pipeline.push(getPipeline('.buildkite/pipelines/pull_request/kbn_handlebars.yml'));
}
- if (GITHUB_PR_LABELS.includes('ci:hard-typecheck')) {
- pipeline.push(getPipeline('.buildkite/pipelines/pull_request/type_check.yml'));
- } else {
- pipeline.push(getPipeline('.buildkite/pipelines/pull_request/type_check_selective.yml'));
- }
-
if (
(await doAnyChangesMatch([
/^src\/plugins\/controls/,
diff --git a/.buildkite/scripts/steps/check_types_commits.sh b/.buildkite/scripts/steps/check_types_commits.sh
index 2fe1af46825fb..d34c4dae5ffa9 100755
--- a/.buildkite/scripts/steps/check_types_commits.sh
+++ b/.buildkite/scripts/steps/check_types_commits.sh
@@ -2,6 +2,10 @@
set -euo pipefail
+# This script will collect typescript projects and run typecheck on projects between the given 2 parameters
+# Could be used for selective typechecking on projects that might be affected for a given PR.
+# (The accuracy for finding related projects is not a 100%)
+
if [[ "${CI-}" == "true" ]]; then
.buildkite/scripts/bootstrap.sh
diff --git a/.buildkite/scripts/steps/es_serverless/promote_es_serverless_image.sh b/.buildkite/scripts/steps/es_serverless/promote_es_serverless_image.sh
index c6bf1738fe144..c0a5a0d4e8407 100755
--- a/.buildkite/scripts/steps/es_serverless/promote_es_serverless_image.sh
+++ b/.buildkite/scripts/steps/es_serverless/promote_es_serverless_image.sh
@@ -24,11 +24,37 @@ echo "--- Promoting ${SOURCE_IMAGE_OR_TAG} to ':latest-verified'"
echo "Re-tagging $SOURCE_IMAGE -> $TARGET_IMAGE"
echo "$KIBANA_DOCKER_PASSWORD" | docker login -u "$KIBANA_DOCKER_USERNAME" --password-stdin docker.elastic.co
-docker pull "$SOURCE_IMAGE"
-docker tag "$SOURCE_IMAGE" "$TARGET_IMAGE"
-docker push "$TARGET_IMAGE"
-ORIG_IMG_DATA=$(docker inspect "$SOURCE_IMAGE")
+docker manifest inspect "$SOURCE_IMAGE" | tee manifests.json
+
+ARM_64_DIGEST=$(jq -r '.manifests[] | select(.platform.architecture == "arm64") | .digest' manifests.json)
+AMD_64_DIGEST=$(jq -r '.manifests[] | select(.platform.architecture == "amd64") | .digest' manifests.json)
+
+echo docker pull --platform linux/arm64 "$SOURCE_IMAGE@$ARM_64_DIGEST"
+docker pull --platform linux/arm64 "$SOURCE_IMAGE@$ARM_64_DIGEST"
+echo linux/arm64 image pulled, with digest: $ARM_64_DIGEST
+
+echo docker pull --platform linux/amd64 "$SOURCE_IMAGE@$AMD_64_DIGEST"
+docker pull --platform linux/amd64 "$SOURCE_IMAGE@$AMD_64_DIGEST"
+echo linux/amd64 image pulled, with digest: $AMD_64_DIGEST
+
+docker tag "$SOURCE_IMAGE@$ARM_64_DIGEST" "$TARGET_IMAGE-arm64"
+docker tag "$SOURCE_IMAGE@$AMD_64_DIGEST" "$TARGET_IMAGE-amd64"
+
+docker push "$TARGET_IMAGE-arm64"
+docker push "$TARGET_IMAGE-amd64"
+
+docker manifest rm "$TARGET_IMAGE" || echo "Nothing to delete"
+
+docker manifest create "$TARGET_IMAGE" \
+--amend "$TARGET_IMAGE-arm64" \
+--amend "$TARGET_IMAGE-amd64"
+
+docker manifest push "$TARGET_IMAGE"
+
+docker manifest inspect "$TARGET_IMAGE"
+
+ORIG_IMG_DATA=$(docker inspect "$SOURCE_IMAGE@$ARM_64_DIGEST")
ELASTIC_COMMIT_HASH=$(echo $ORIG_IMG_DATA | jq -r '.[].Config.Labels["org.opencontainers.image.revision"]')
docker logout docker.elastic.co
@@ -37,7 +63,7 @@ echo "Image push to $TARGET_IMAGE successful."
echo "Promotion successful! Henceforth, thou shall be named Sir $TARGET_IMAGE"
MANIFEST_UPLOAD_PATH="Skipped"
-if [[ "$UPLOAD_MANIFEST" =~ ^(1|true)$ && "$SOURCE_IMAGE_OR_TAG" =~ ^git-[0-9a-fA-F]{12}$ ]]; then
+if [[ "${UPLOAD_MANIFEST:-}" =~ ^(1|true)$ && "$SOURCE_IMAGE_OR_TAG" =~ ^git-[0-9a-fA-F]{12}$ ]]; then
echo "--- Uploading latest-verified manifest to GCS"
cat << EOT >> $MANIFEST_FILE_NAME
{
@@ -58,10 +84,12 @@ EOT
gsutil acl ch -u AllUsers:R "gs://$ES_SERVERLESS_BUCKET/$MANIFEST_FILE_NAME"
MANIFEST_UPLOAD_PATH="$MANIFEST_FILE_NAME"
-elif [[ "$UPLOAD_MANIFEST" =~ ^(1|true)$ ]]; then
+elif [[ "${UPLOAD_MANIFEST:-}" =~ ^(1|true)$ ]]; then
echo "--- Skipping upload of latest-verified manifest to GCS, ES Serverless build tag is not pointing to a hash"
elif [[ "$SOURCE_IMAGE_OR_TAG" =~ ^git-[0-9a-fA-F]{12}$ ]]; then
echo "--- Skipping upload of latest-verified manifest to GCS, flag was not provided"
+else
+ echo "--- Skipping upload of latest-verified manifest to GCS, no flag and hash provided"
fi
echo "--- Annotating build with info"
diff --git a/.github/CODEOWNERS b/.github/CODEOWNERS
index 89f769c0f12ec..8f9261eb8aede 100644
--- a/.github/CODEOWNERS
+++ b/.github/CODEOWNERS
@@ -484,6 +484,7 @@ packages/kbn-managed-vscode-config @elastic/kibana-operations
packages/kbn-managed-vscode-config-cli @elastic/kibana-operations
packages/kbn-management/cards_navigation @elastic/platform-deployment-management
src/plugins/management @elastic/platform-deployment-management
+packages/kbn-management/settings/components/field_category @elastic/platform-deployment-management
packages/kbn-management/settings/components/field_input @elastic/platform-deployment-management
packages/kbn-management/settings/components/field_row @elastic/platform-deployment-management
packages/kbn-management/settings/components/form @elastic/platform-deployment-management
diff --git a/api_docs/actions.mdx b/api_docs/actions.mdx
index 9a116bd9aa00b..0d89bf3c7f9dd 100644
--- a/api_docs/actions.mdx
+++ b/api_docs/actions.mdx
@@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/actions
title: "actions"
image: https://source.unsplash.com/400x175/?github
description: API docs for the actions plugin
-date: 2023-09-28
+date: 2023-09-29
tags: ['contributor', 'dev', 'apidocs', 'kibana', 'actions']
---
import actionsObj from './actions.devdocs.json';
diff --git a/api_docs/advanced_settings.mdx b/api_docs/advanced_settings.mdx
index dbf9c0fc8cec3..68a115e64c789 100644
--- a/api_docs/advanced_settings.mdx
+++ b/api_docs/advanced_settings.mdx
@@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/advancedSettings
title: "advancedSettings"
image: https://source.unsplash.com/400x175/?github
description: API docs for the advancedSettings plugin
-date: 2023-09-28
+date: 2023-09-29
tags: ['contributor', 'dev', 'apidocs', 'kibana', 'advancedSettings']
---
import advancedSettingsObj from './advanced_settings.devdocs.json';
diff --git a/api_docs/aiops.mdx b/api_docs/aiops.mdx
index 3eb68f5e67a56..e629362e8ce00 100644
--- a/api_docs/aiops.mdx
+++ b/api_docs/aiops.mdx
@@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/aiops
title: "aiops"
image: https://source.unsplash.com/400x175/?github
description: API docs for the aiops plugin
-date: 2023-09-28
+date: 2023-09-29
tags: ['contributor', 'dev', 'apidocs', 'kibana', 'aiops']
---
import aiopsObj from './aiops.devdocs.json';
diff --git a/api_docs/alerting.devdocs.json b/api_docs/alerting.devdocs.json
index 4a97328c5bbd9..6b300ca759ee0 100644
--- a/api_docs/alerting.devdocs.json
+++ b/api_docs/alerting.devdocs.json
@@ -108,10 +108,6 @@
"deprecated": true,
"trackAdoption": false,
"references": [
- {
- "plugin": "ml",
- "path": "x-pack/plugins/ml/public/alerting/register_ml_alerts.ts"
- },
{
"plugin": "stackAlerts",
"path": "x-pack/plugins/stack_alerts/public/rule_types/es_query/index.ts"
@@ -127,6 +123,10 @@
{
"plugin": "stackAlerts",
"path": "x-pack/plugins/stack_alerts/public/rule_types/es_query/index.ts"
+ },
+ {
+ "plugin": "ml",
+ "path": "x-pack/plugins/ml/public/alerting/register_ml_alerts.ts"
}
],
"children": [
@@ -3360,36 +3360,20 @@
"path": "x-pack/plugins/rule_registry/server/utils/create_persistence_rule_type_wrapper.ts"
},
{
- "plugin": "ml",
- "path": "x-pack/plugins/ml/server/lib/alerts/register_jobs_monitoring_rule_type.ts"
+ "plugin": "observability",
+ "path": "x-pack/plugins/observability/server/lib/rules/slo_burn_rate/executor.ts"
},
{
- "plugin": "ml",
- "path": "x-pack/plugins/ml/server/lib/alerts/register_jobs_monitoring_rule_type.ts"
+ "plugin": "observability",
+ "path": "x-pack/plugins/observability/server/lib/rules/custom_threshold/custom_threshold_executor.ts"
},
{
"plugin": "ml",
- "path": "x-pack/plugins/ml/server/lib/alerts/register_anomaly_detection_alert_type.ts"
+ "path": "x-pack/plugins/ml/server/lib/alerts/register_jobs_monitoring_rule_type.ts"
},
{
"plugin": "ml",
- "path": "x-pack/plugins/ml/server/lib/alerts/register_anomaly_detection_alert_type.ts"
- },
- {
- "plugin": "securitySolution",
- "path": "x-pack/plugins/security_solution/server/lib/detection_engine/rule_actions_legacy/logic/notifications/legacy_rules_notification_alert_type.ts"
- },
- {
- "plugin": "securitySolution",
- "path": "x-pack/plugins/security_solution/server/lib/detection_engine/rule_preview/api/preview_rules/route.ts"
- },
- {
- "plugin": "observability",
- "path": "x-pack/plugins/observability/server/lib/rules/slo_burn_rate/executor.ts"
- },
- {
- "plugin": "observability",
- "path": "x-pack/plugins/observability/server/lib/rules/custom_threshold/custom_threshold_executor.ts"
+ "path": "x-pack/plugins/ml/server/lib/alerts/register_jobs_monitoring_rule_type.ts"
},
{
"plugin": "infra",
@@ -3419,6 +3403,14 @@
"plugin": "monitoring",
"path": "x-pack/plugins/monitoring/server/alerts/base_rule.ts"
},
+ {
+ "plugin": "securitySolution",
+ "path": "x-pack/plugins/security_solution/server/lib/detection_engine/rule_actions_legacy/logic/notifications/legacy_rules_notification_alert_type.ts"
+ },
+ {
+ "plugin": "securitySolution",
+ "path": "x-pack/plugins/security_solution/server/lib/detection_engine/rule_preview/api/preview_rules/route.ts"
+ },
{
"plugin": "stackAlerts",
"path": "x-pack/plugins/stack_alerts/server/rule_types/index_threshold/rule_type.ts"
diff --git a/api_docs/alerting.mdx b/api_docs/alerting.mdx
index a9cfdd9c6283c..d21a7eb0aa50e 100644
--- a/api_docs/alerting.mdx
+++ b/api_docs/alerting.mdx
@@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/alerting
title: "alerting"
image: https://source.unsplash.com/400x175/?github
description: API docs for the alerting plugin
-date: 2023-09-28
+date: 2023-09-29
tags: ['contributor', 'dev', 'apidocs', 'kibana', 'alerting']
---
import alertingObj from './alerting.devdocs.json';
diff --git a/api_docs/apm.mdx b/api_docs/apm.mdx
index 4762b1407b25a..3755a26ed8429 100644
--- a/api_docs/apm.mdx
+++ b/api_docs/apm.mdx
@@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/apm
title: "apm"
image: https://source.unsplash.com/400x175/?github
description: API docs for the apm plugin
-date: 2023-09-28
+date: 2023-09-29
tags: ['contributor', 'dev', 'apidocs', 'kibana', 'apm']
---
import apmObj from './apm.devdocs.json';
diff --git a/api_docs/apm_data_access.mdx b/api_docs/apm_data_access.mdx
index 1e5c28a1e94d0..23a63a157a3fb 100644
--- a/api_docs/apm_data_access.mdx
+++ b/api_docs/apm_data_access.mdx
@@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/apmDataAccess
title: "apmDataAccess"
image: https://source.unsplash.com/400x175/?github
description: API docs for the apmDataAccess plugin
-date: 2023-09-28
+date: 2023-09-29
tags: ['contributor', 'dev', 'apidocs', 'kibana', 'apmDataAccess']
---
import apmDataAccessObj from './apm_data_access.devdocs.json';
diff --git a/api_docs/asset_manager.devdocs.json b/api_docs/asset_manager.devdocs.json
index 5f7f45af9f998..31183ec6acb0b 100644
--- a/api_docs/asset_manager.devdocs.json
+++ b/api_docs/asset_manager.devdocs.json
@@ -3,9 +3,82 @@
"client": {
"classes": [],
"functions": [],
- "interfaces": [],
+ "interfaces": [
+ {
+ "parentPluginId": "assetManager",
+ "id": "def-public.AssetManagerPublicPluginSetup",
+ "type": "Interface",
+ "tags": [],
+ "label": "AssetManagerPublicPluginSetup",
+ "description": [],
+ "path": "x-pack/plugins/asset_manager/public/types.ts",
+ "deprecated": false,
+ "trackAdoption": false,
+ "children": [
+ {
+ "parentPluginId": "assetManager",
+ "id": "def-public.AssetManagerPublicPluginSetup.publicAssetsClient",
+ "type": "Object",
+ "tags": [],
+ "label": "publicAssetsClient",
+ "description": [],
+ "signature": [
+ "IPublicAssetsClient"
+ ],
+ "path": "x-pack/plugins/asset_manager/public/types.ts",
+ "deprecated": false,
+ "trackAdoption": false
+ }
+ ],
+ "initialIsOpen": false
+ },
+ {
+ "parentPluginId": "assetManager",
+ "id": "def-public.AssetManagerPublicPluginStart",
+ "type": "Interface",
+ "tags": [],
+ "label": "AssetManagerPublicPluginStart",
+ "description": [],
+ "path": "x-pack/plugins/asset_manager/public/types.ts",
+ "deprecated": false,
+ "trackAdoption": false,
+ "children": [
+ {
+ "parentPluginId": "assetManager",
+ "id": "def-public.AssetManagerPublicPluginStart.publicAssetsClient",
+ "type": "Object",
+ "tags": [],
+ "label": "publicAssetsClient",
+ "description": [],
+ "signature": [
+ "IPublicAssetsClient"
+ ],
+ "path": "x-pack/plugins/asset_manager/public/types.ts",
+ "deprecated": false,
+ "trackAdoption": false
+ }
+ ],
+ "initialIsOpen": false
+ }
+ ],
"enums": [],
- "misc": [],
+ "misc": [
+ {
+ "parentPluginId": "assetManager",
+ "id": "def-public.AssetManagerAppId",
+ "type": "Type",
+ "tags": [],
+ "label": "AssetManagerAppId",
+ "description": [],
+ "signature": [
+ "\"assetManager\""
+ ],
+ "path": "x-pack/plugins/asset_manager/public/index.ts",
+ "deprecated": false,
+ "trackAdoption": false,
+ "initialIsOpen": false
+ }
+ ],
"objects": []
},
"server": {
@@ -24,7 +97,7 @@
"signature": [
"{ readonly alphaEnabled?: boolean | undefined; readonly sourceIndices: Readonly<{} & { logs: string; }>; readonly lockedSource: \"assets\" | \"signals\"; }"
],
- "path": "x-pack/plugins/asset_manager/server/types.ts",
+ "path": "x-pack/plugins/asset_manager/common/config.ts",
"deprecated": false,
"trackAdoption": false,
"initialIsOpen": false
@@ -45,7 +118,41 @@
"initialIsOpen": false
}
],
- "objects": []
+ "objects": [],
+ "setup": {
+ "parentPluginId": "assetManager",
+ "id": "def-server.AssetManagerServerPluginSetup",
+ "type": "Type",
+ "tags": [],
+ "label": "AssetManagerServerPluginSetup",
+ "description": [],
+ "signature": [
+ "{ assetClient: ",
+ "AssetClient",
+ "; } | undefined"
+ ],
+ "path": "x-pack/plugins/asset_manager/server/plugin.ts",
+ "deprecated": false,
+ "trackAdoption": false,
+ "lifecycle": "setup",
+ "initialIsOpen": true
+ },
+ "start": {
+ "parentPluginId": "assetManager",
+ "id": "def-server.AssetManagerServerPluginStart",
+ "type": "Type",
+ "tags": [],
+ "label": "AssetManagerServerPluginStart",
+ "description": [],
+ "signature": [
+ "{} | undefined"
+ ],
+ "path": "x-pack/plugins/asset_manager/server/plugin.ts",
+ "deprecated": false,
+ "trackAdoption": false,
+ "lifecycle": "start",
+ "initialIsOpen": true
+ }
},
"common": {
"classes": [],
diff --git a/api_docs/asset_manager.mdx b/api_docs/asset_manager.mdx
index ddf0cc20472fe..6f7552cd515cc 100644
--- a/api_docs/asset_manager.mdx
+++ b/api_docs/asset_manager.mdx
@@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/assetManager
title: "assetManager"
image: https://source.unsplash.com/400x175/?github
description: API docs for the assetManager plugin
-date: 2023-09-28
+date: 2023-09-29
tags: ['contributor', 'dev', 'apidocs', 'kibana', 'assetManager']
---
import assetManagerObj from './asset_manager.devdocs.json';
@@ -21,10 +21,24 @@ Contact [@elastic/infra-monitoring-ui](https://github.com/orgs/elastic/teams/inf
| Public API count | Any count | Items lacking comments | Missing exports |
|-------------------|-----------|------------------------|-----------------|
-| 2 | 0 | 2 | 0 |
+| 9 | 0 | 9 | 2 |
+
+## Client
+
+### Interfaces
+
+
+### Consts, variables and types
+
## Server
+### Setup
+
+
+### Start
+
+
### Consts, variables and types
diff --git a/api_docs/banners.mdx b/api_docs/banners.mdx
index b2669d7582a7b..f6cf2a6900b2e 100644
--- a/api_docs/banners.mdx
+++ b/api_docs/banners.mdx
@@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/banners
title: "banners"
image: https://source.unsplash.com/400x175/?github
description: API docs for the banners plugin
-date: 2023-09-28
+date: 2023-09-29
tags: ['contributor', 'dev', 'apidocs', 'kibana', 'banners']
---
import bannersObj from './banners.devdocs.json';
diff --git a/api_docs/bfetch.mdx b/api_docs/bfetch.mdx
index 1fae708721588..0393811c438ad 100644
--- a/api_docs/bfetch.mdx
+++ b/api_docs/bfetch.mdx
@@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/bfetch
title: "bfetch"
image: https://source.unsplash.com/400x175/?github
description: API docs for the bfetch plugin
-date: 2023-09-28
+date: 2023-09-29
tags: ['contributor', 'dev', 'apidocs', 'kibana', 'bfetch']
---
import bfetchObj from './bfetch.devdocs.json';
diff --git a/api_docs/canvas.mdx b/api_docs/canvas.mdx
index 17162885d6c6f..3af184b4742d2 100644
--- a/api_docs/canvas.mdx
+++ b/api_docs/canvas.mdx
@@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/canvas
title: "canvas"
image: https://source.unsplash.com/400x175/?github
description: API docs for the canvas plugin
-date: 2023-09-28
+date: 2023-09-29
tags: ['contributor', 'dev', 'apidocs', 'kibana', 'canvas']
---
import canvasObj from './canvas.devdocs.json';
diff --git a/api_docs/cases.mdx b/api_docs/cases.mdx
index ee01032ea5bbb..2800c746cc3a8 100644
--- a/api_docs/cases.mdx
+++ b/api_docs/cases.mdx
@@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/cases
title: "cases"
image: https://source.unsplash.com/400x175/?github
description: API docs for the cases plugin
-date: 2023-09-28
+date: 2023-09-29
tags: ['contributor', 'dev', 'apidocs', 'kibana', 'cases']
---
import casesObj from './cases.devdocs.json';
diff --git a/api_docs/charts.mdx b/api_docs/charts.mdx
index d8f4058a7693c..3db571b23aaf9 100644
--- a/api_docs/charts.mdx
+++ b/api_docs/charts.mdx
@@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/charts
title: "charts"
image: https://source.unsplash.com/400x175/?github
description: API docs for the charts plugin
-date: 2023-09-28
+date: 2023-09-29
tags: ['contributor', 'dev', 'apidocs', 'kibana', 'charts']
---
import chartsObj from './charts.devdocs.json';
diff --git a/api_docs/cloud.mdx b/api_docs/cloud.mdx
index b0df4aec4917c..01904c265c80d 100644
--- a/api_docs/cloud.mdx
+++ b/api_docs/cloud.mdx
@@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/cloud
title: "cloud"
image: https://source.unsplash.com/400x175/?github
description: API docs for the cloud plugin
-date: 2023-09-28
+date: 2023-09-29
tags: ['contributor', 'dev', 'apidocs', 'kibana', 'cloud']
---
import cloudObj from './cloud.devdocs.json';
diff --git a/api_docs/cloud_chat.mdx b/api_docs/cloud_chat.mdx
index 59f6308448b28..249c224384d96 100644
--- a/api_docs/cloud_chat.mdx
+++ b/api_docs/cloud_chat.mdx
@@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/cloudChat
title: "cloudChat"
image: https://source.unsplash.com/400x175/?github
description: API docs for the cloudChat plugin
-date: 2023-09-28
+date: 2023-09-29
tags: ['contributor', 'dev', 'apidocs', 'kibana', 'cloudChat']
---
import cloudChatObj from './cloud_chat.devdocs.json';
diff --git a/api_docs/cloud_chat_provider.mdx b/api_docs/cloud_chat_provider.mdx
index 1a10061b30cb7..4ac3bf6bd4cce 100644
--- a/api_docs/cloud_chat_provider.mdx
+++ b/api_docs/cloud_chat_provider.mdx
@@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/cloudChatProvider
title: "cloudChatProvider"
image: https://source.unsplash.com/400x175/?github
description: API docs for the cloudChatProvider plugin
-date: 2023-09-28
+date: 2023-09-29
tags: ['contributor', 'dev', 'apidocs', 'kibana', 'cloudChatProvider']
---
import cloudChatProviderObj from './cloud_chat_provider.devdocs.json';
diff --git a/api_docs/cloud_data_migration.mdx b/api_docs/cloud_data_migration.mdx
index 8105ffe2731a9..ae4b4a29d78ce 100644
--- a/api_docs/cloud_data_migration.mdx
+++ b/api_docs/cloud_data_migration.mdx
@@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/cloudDataMigration
title: "cloudDataMigration"
image: https://source.unsplash.com/400x175/?github
description: API docs for the cloudDataMigration plugin
-date: 2023-09-28
+date: 2023-09-29
tags: ['contributor', 'dev', 'apidocs', 'kibana', 'cloudDataMigration']
---
import cloudDataMigrationObj from './cloud_data_migration.devdocs.json';
diff --git a/api_docs/cloud_defend.mdx b/api_docs/cloud_defend.mdx
index ed4603e068a47..ec4be3d360a8b 100644
--- a/api_docs/cloud_defend.mdx
+++ b/api_docs/cloud_defend.mdx
@@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/cloudDefend
title: "cloudDefend"
image: https://source.unsplash.com/400x175/?github
description: API docs for the cloudDefend plugin
-date: 2023-09-28
+date: 2023-09-29
tags: ['contributor', 'dev', 'apidocs', 'kibana', 'cloudDefend']
---
import cloudDefendObj from './cloud_defend.devdocs.json';
diff --git a/api_docs/cloud_experiments.mdx b/api_docs/cloud_experiments.mdx
index 9254d1947b082..99716abd3701c 100644
--- a/api_docs/cloud_experiments.mdx
+++ b/api_docs/cloud_experiments.mdx
@@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/cloudExperiments
title: "cloudExperiments"
image: https://source.unsplash.com/400x175/?github
description: API docs for the cloudExperiments plugin
-date: 2023-09-28
+date: 2023-09-29
tags: ['contributor', 'dev', 'apidocs', 'kibana', 'cloudExperiments']
---
import cloudExperimentsObj from './cloud_experiments.devdocs.json';
diff --git a/api_docs/cloud_security_posture.mdx b/api_docs/cloud_security_posture.mdx
index f566e653ba31b..c20244fc686f9 100644
--- a/api_docs/cloud_security_posture.mdx
+++ b/api_docs/cloud_security_posture.mdx
@@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/cloudSecurityPosture
title: "cloudSecurityPosture"
image: https://source.unsplash.com/400x175/?github
description: API docs for the cloudSecurityPosture plugin
-date: 2023-09-28
+date: 2023-09-29
tags: ['contributor', 'dev', 'apidocs', 'kibana', 'cloudSecurityPosture']
---
import cloudSecurityPostureObj from './cloud_security_posture.devdocs.json';
diff --git a/api_docs/console.mdx b/api_docs/console.mdx
index 81e8162e0c184..5c671fd45f2d5 100644
--- a/api_docs/console.mdx
+++ b/api_docs/console.mdx
@@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/console
title: "console"
image: https://source.unsplash.com/400x175/?github
description: API docs for the console plugin
-date: 2023-09-28
+date: 2023-09-29
tags: ['contributor', 'dev', 'apidocs', 'kibana', 'console']
---
import consoleObj from './console.devdocs.json';
diff --git a/api_docs/content_management.mdx b/api_docs/content_management.mdx
index ed9e7f7c42fff..2d22cc243f482 100644
--- a/api_docs/content_management.mdx
+++ b/api_docs/content_management.mdx
@@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/contentManagement
title: "contentManagement"
image: https://source.unsplash.com/400x175/?github
description: API docs for the contentManagement plugin
-date: 2023-09-28
+date: 2023-09-29
tags: ['contributor', 'dev', 'apidocs', 'kibana', 'contentManagement']
---
import contentManagementObj from './content_management.devdocs.json';
diff --git a/api_docs/controls.mdx b/api_docs/controls.mdx
index adb1072427e54..2732f9a60e6b6 100644
--- a/api_docs/controls.mdx
+++ b/api_docs/controls.mdx
@@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/controls
title: "controls"
image: https://source.unsplash.com/400x175/?github
description: API docs for the controls plugin
-date: 2023-09-28
+date: 2023-09-29
tags: ['contributor', 'dev', 'apidocs', 'kibana', 'controls']
---
import controlsObj from './controls.devdocs.json';
diff --git a/api_docs/custom_integrations.mdx b/api_docs/custom_integrations.mdx
index 3c92e9bf5fb05..6112df2f0681b 100644
--- a/api_docs/custom_integrations.mdx
+++ b/api_docs/custom_integrations.mdx
@@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/customIntegrations
title: "customIntegrations"
image: https://source.unsplash.com/400x175/?github
description: API docs for the customIntegrations plugin
-date: 2023-09-28
+date: 2023-09-29
tags: ['contributor', 'dev', 'apidocs', 'kibana', 'customIntegrations']
---
import customIntegrationsObj from './custom_integrations.devdocs.json';
diff --git a/api_docs/dashboard.mdx b/api_docs/dashboard.mdx
index bc9e62b6ea68f..5ac9914f294d8 100644
--- a/api_docs/dashboard.mdx
+++ b/api_docs/dashboard.mdx
@@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/dashboard
title: "dashboard"
image: https://source.unsplash.com/400x175/?github
description: API docs for the dashboard plugin
-date: 2023-09-28
+date: 2023-09-29
tags: ['contributor', 'dev', 'apidocs', 'kibana', 'dashboard']
---
import dashboardObj from './dashboard.devdocs.json';
diff --git a/api_docs/dashboard_enhanced.mdx b/api_docs/dashboard_enhanced.mdx
index 85c05d0182f96..d086d1780167e 100644
--- a/api_docs/dashboard_enhanced.mdx
+++ b/api_docs/dashboard_enhanced.mdx
@@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/dashboardEnhanced
title: "dashboardEnhanced"
image: https://source.unsplash.com/400x175/?github
description: API docs for the dashboardEnhanced plugin
-date: 2023-09-28
+date: 2023-09-29
tags: ['contributor', 'dev', 'apidocs', 'kibana', 'dashboardEnhanced']
---
import dashboardEnhancedObj from './dashboard_enhanced.devdocs.json';
diff --git a/api_docs/data.devdocs.json b/api_docs/data.devdocs.json
index c7c415ce2a07d..5c0335bdc9fe2 100644
--- a/api_docs/data.devdocs.json
+++ b/api_docs/data.devdocs.json
@@ -8218,23 +8218,6 @@
"path": "src/plugins/data/common/search/types.ts",
"deprecated": false,
"trackAdoption": false
- },
- {
- "parentPluginId": "data",
- "id": "def-public.IKibanaSearchResponse.requestParams",
- "type": "Object",
- "tags": [],
- "label": "requestParams",
- "description": [
- "\nHTTP request parameters from elasticsearch transport client t"
- ],
- "signature": [
- "ConnectionRequestParams",
- " | undefined"
- ],
- "path": "src/plugins/data/common/search/types.ts",
- "deprecated": false,
- "trackAdoption": false
}
],
"initialIsOpen": false
@@ -8833,18 +8816,6 @@
"deprecated": true,
"trackAdoption": false,
"references": [
- {
- "plugin": "@kbn/core-saved-objects-api-server-internal",
- "path": "packages/core/saved-objects/core-saved-objects-api-server-internal/src/lib/apis/utils/internal_utils.ts"
- },
- {
- "plugin": "@kbn/core-saved-objects-import-export-server-internal",
- "path": "packages/core/saved-objects/core-saved-objects-import-export-server-internal/src/import/lib/collect_saved_objects.ts"
- },
- {
- "plugin": "@kbn/core-saved-objects-server-internal",
- "path": "packages/core/saved-objects/core-saved-objects-server-internal/src/routes/legacy_import_export/lib/import_dashboards.ts"
- },
{
"plugin": "@kbn/core-saved-objects-api-browser",
"path": "packages/core/saved-objects/core-saved-objects-api-browser/src/simple_saved_object.ts"
@@ -8857,6 +8828,22 @@
"plugin": "@kbn/core-saved-objects-browser-internal",
"path": "packages/core/saved-objects/core-saved-objects-browser-internal/src/simple_saved_object.ts"
},
+ {
+ "plugin": "@kbn/core-saved-objects-browser-mocks",
+ "path": "packages/core/saved-objects/core-saved-objects-browser-mocks/src/simple_saved_object.mock.ts"
+ },
+ {
+ "plugin": "@kbn/core-saved-objects-api-server-internal",
+ "path": "packages/core/saved-objects/core-saved-objects-api-server-internal/src/lib/apis/utils/internal_utils.ts"
+ },
+ {
+ "plugin": "@kbn/core-saved-objects-import-export-server-internal",
+ "path": "packages/core/saved-objects/core-saved-objects-import-export-server-internal/src/import/lib/collect_saved_objects.ts"
+ },
+ {
+ "plugin": "@kbn/core-saved-objects-server-internal",
+ "path": "packages/core/saved-objects/core-saved-objects-server-internal/src/routes/legacy_import_export/lib/import_dashboards.ts"
+ },
{
"plugin": "fleet",
"path": "x-pack/plugins/fleet/server/services/epm/kibana/assets/install.ts"
@@ -8869,6 +8856,22 @@
"plugin": "fleet",
"path": "x-pack/plugins/fleet/server/services/epm/kibana/assets/install.ts"
},
+ {
+ "plugin": "graph",
+ "path": "x-pack/plugins/graph/server/sample_data/logs.ts"
+ },
+ {
+ "plugin": "graph",
+ "path": "x-pack/plugins/graph/server/sample_data/ecommerce.ts"
+ },
+ {
+ "plugin": "graph",
+ "path": "x-pack/plugins/graph/server/sample_data/flights.ts"
+ },
+ {
+ "plugin": "lists",
+ "path": "x-pack/plugins/lists/server/services/exception_lists/exception_list_client.mock.ts"
+ },
{
"plugin": "osquery",
"path": "x-pack/plugins/osquery/server/routes/pack/read_pack_route.ts"
@@ -8957,26 +8960,6 @@
"plugin": "securitySolution",
"path": "x-pack/plugins/security_solution/server/lib/risk_score/prebuilt_saved_objects/saved_object/user_risk_score_dashboards.ts"
},
- {
- "plugin": "@kbn/core-saved-objects-browser-mocks",
- "path": "packages/core/saved-objects/core-saved-objects-browser-mocks/src/simple_saved_object.mock.ts"
- },
- {
- "plugin": "graph",
- "path": "x-pack/plugins/graph/server/sample_data/logs.ts"
- },
- {
- "plugin": "graph",
- "path": "x-pack/plugins/graph/server/sample_data/ecommerce.ts"
- },
- {
- "plugin": "graph",
- "path": "x-pack/plugins/graph/server/sample_data/flights.ts"
- },
- {
- "plugin": "lists",
- "path": "x-pack/plugins/lists/server/services/exception_lists/exception_list_client.mock.ts"
- },
{
"plugin": "alerting",
"path": "x-pack/plugins/alerting/server/rules_client/lib/siem_legacy_actions/retrieve_migrated_legacy_actions.mock.ts"
@@ -12796,6 +12779,10 @@
"plugin": "dashboard",
"path": "src/plugins/dashboard/public/services/data/data_service.ts"
},
+ {
+ "plugin": "stackAlerts",
+ "path": "x-pack/plugins/stack_alerts/public/rule_types/threshold/expression.tsx"
+ },
{
"plugin": "dataVisualizer",
"path": "x-pack/plugins/data_visualizer/public/application/common/components/stats_table/components/field_data_row/document_stats.tsx"
@@ -12812,10 +12799,6 @@
"plugin": "dataVisualizer",
"path": "x-pack/plugins/data_visualizer/public/application/data_drift/charts/default_value_formatter.ts"
},
- {
- "plugin": "stackAlerts",
- "path": "x-pack/plugins/stack_alerts/public/rule_types/threshold/expression.tsx"
- },
{
"plugin": "expressionPartitionVis",
"path": "src/plugins/chart_expressions/expression_partition_vis/public/utils/layers/get_color.test.ts"
@@ -13264,10 +13247,6 @@
"plugin": "@kbn/visualization-ui-components",
"path": "packages/kbn-visualization-ui-components/components/query_input/filter_query_input.tsx"
},
- {
- "plugin": "securitySolution",
- "path": "x-pack/plugins/security_solution/server/lib/detection_engine/rule_types/utils/get_query_filter.ts"
- },
{
"plugin": "observability",
"path": "x-pack/plugins/observability/public/components/custom_threshold/hooks/use_metrics_explorer_data.ts"
@@ -13292,6 +13271,10 @@
"plugin": "observability",
"path": "x-pack/plugins/observability/public/components/custom_threshold/components/alert_details_app_section.tsx"
},
+ {
+ "plugin": "securitySolution",
+ "path": "x-pack/plugins/security_solution/server/lib/detection_engine/rule_types/utils/get_query_filter.ts"
+ },
{
"plugin": "securitySolution",
"path": "x-pack/plugins/security_solution/public/common/containers/source/index.tsx"
@@ -13516,18 +13499,6 @@
"plugin": "dataViews",
"path": "src/plugins/data_views/common/data_views/data_view.ts"
},
- {
- "plugin": "logsShared",
- "path": "x-pack/plugins/logs_shared/common/log_views/resolved_log_view.ts"
- },
- {
- "plugin": "dataViews",
- "path": "src/plugins/data_views/server/rest_api_routes/public/update_data_view.ts"
- },
- {
- "plugin": "dataViews",
- "path": "src/plugins/data_views/server/rest_api_routes/public/update_data_view.ts"
- },
{
"plugin": "savedObjectsManagement",
"path": "src/plugins/saved_objects_management/public/management_section/objects_table/components/flyout.tsx"
@@ -13580,145 +13551,153 @@
"plugin": "lens",
"path": "x-pack/plugins/lens/public/app_plugin/lens_top_nav.tsx"
},
+ {
+ "plugin": "dataViews",
+ "path": "src/plugins/data_views/server/rest_api_routes/public/update_data_view.ts"
+ },
+ {
+ "plugin": "dataViews",
+ "path": "src/plugins/data_views/server/rest_api_routes/public/update_data_view.ts"
+ },
{
"plugin": "triggersActionsUi",
"path": "x-pack/plugins/triggers_actions_ui/public/common/lib/data_apis.ts"
},
{
- "plugin": "dataVisualizer",
- "path": "x-pack/plugins/data_visualizer/public/application/index_data_visualizer/hooks/use_data_visualizer_grid_data.ts"
+ "plugin": "ml",
+ "path": "x-pack/plugins/ml/server/models/data_frame_analytics/index_patterns.ts"
},
{
"plugin": "ml",
- "path": "x-pack/plugins/ml/public/application/data_frame_analytics/pages/analytics_creation/components/configuration_step/configuration_step_details.tsx"
+ "path": "x-pack/plugins/ml/server/models/job_service/new_job_caps/rollup.ts"
},
{
"plugin": "ml",
- "path": "x-pack/plugins/ml/public/application/datavisualizer/index_based/data_loader/data_loader.ts"
+ "path": "x-pack/plugins/ml/server/lib/alerts/alerting_service.ts"
},
{
"plugin": "ml",
- "path": "x-pack/plugins/ml/public/application/data_frame_analytics/pages/analytics_creation/hooks/use_index_data.ts"
+ "path": "x-pack/plugins/ml/server/models/data_recognizer/data_recognizer.ts"
},
{
- "plugin": "ml",
- "path": "x-pack/plugins/ml/public/application/data_frame_analytics/pages/analytics_creation/hooks/use_index_data.ts"
+ "plugin": "apm",
+ "path": "x-pack/plugins/apm/server/routes/data_view/create_static_data_view.ts"
},
{
- "plugin": "ml",
- "path": "x-pack/plugins/ml/public/application/data_frame_analytics/pages/analytics_creation/hooks/use_index_data.ts"
+ "plugin": "exploratoryView",
+ "path": "x-pack/plugins/exploratory_view/public/utils/observability_data_views/observability_data_views.ts"
},
{
- "plugin": "ml",
- "path": "x-pack/plugins/ml/public/application/data_frame_analytics/pages/analytics_creation/hooks/use_index_data.ts"
+ "plugin": "exploratoryView",
+ "path": "x-pack/plugins/exploratory_view/public/components/shared/exploratory_view/series_editor/columns/report_definition_field.tsx"
},
{
- "plugin": "ml",
- "path": "x-pack/plugins/ml/public/application/data_frame_analytics/pages/analytics_creation/components/configuration_step/configuration_step_form.tsx"
+ "plugin": "exploratoryView",
+ "path": "x-pack/plugins/exploratory_view/public/components/shared/exploratory_view/series_editor/use_filter_values.ts"
},
{
- "plugin": "ml",
- "path": "x-pack/plugins/ml/public/application/data_frame_analytics/pages/analytics_creation/components/configuration_step/configuration_step_form.tsx"
+ "plugin": "exploratoryView",
+ "path": "x-pack/plugins/exploratory_view/public/components/shared/exploratory_view/series_editor/columns/filter_value_btn.tsx"
},
{
- "plugin": "ml",
- "path": "x-pack/plugins/ml/public/application/data_frame_analytics/pages/analytics_creation/components/configuration_step/configuration_step_form.tsx"
+ "plugin": "logsShared",
+ "path": "x-pack/plugins/logs_shared/common/log_views/resolved_log_view.ts"
},
{
- "plugin": "ml",
- "path": "x-pack/plugins/ml/public/application/data_frame_analytics/pages/analytics_creation/page.tsx"
+ "plugin": "fleet",
+ "path": "x-pack/plugins/fleet/public/applications/fleet/sections/agents/agent_details_page/components/agent_logs/query_bar.tsx"
},
{
- "plugin": "ml",
- "path": "x-pack/plugins/ml/public/application/data_frame_analytics/pages/analytics_management/components/action_clone/clone_action_name.tsx"
+ "plugin": "stackAlerts",
+ "path": "x-pack/plugins/stack_alerts/public/rule_types/geo_containment/rule_form/boundary_form.tsx"
},
{
- "plugin": "ml",
- "path": "x-pack/plugins/ml/public/application/jobs/new_job/common/job_creator/job_creator.ts"
+ "plugin": "stackAlerts",
+ "path": "x-pack/plugins/stack_alerts/public/rule_types/geo_containment/rule_form/entity_form.tsx"
},
{
- "plugin": "ml",
- "path": "x-pack/plugins/ml/public/application/jobs/new_job/common/results_loader/categorization_examples_loader.ts"
+ "plugin": "stackAlerts",
+ "path": "x-pack/plugins/stack_alerts/public/rule_types/components/data_view_select_popover.tsx"
},
{
- "plugin": "ml",
- "path": "x-pack/plugins/ml/public/application/jobs/new_job/pages/index_or_search/preconfigured_job_redirect.ts"
+ "plugin": "dataVisualizer",
+ "path": "x-pack/plugins/data_visualizer/public/application/index_data_visualizer/hooks/use_data_visualizer_grid_data.ts"
},
{
"plugin": "ml",
- "path": "x-pack/plugins/ml/public/application/jobs/new_job/pages/components/pick_fields_step/components/bucket_span_estimator/estimate_bucket_span.ts"
+ "path": "x-pack/plugins/ml/public/application/data_frame_analytics/pages/analytics_creation/components/configuration_step/configuration_step_details.tsx"
},
{
"plugin": "ml",
- "path": "x-pack/plugins/ml/public/application/jobs/new_job/pages/components/datafeed_step/components/data_view/change_data_view.tsx"
+ "path": "x-pack/plugins/ml/public/application/datavisualizer/index_based/data_loader/data_loader.ts"
},
{
"plugin": "ml",
- "path": "x-pack/plugins/ml/public/application/data_frame_analytics/pages/analytics_exploration/components/outlier_exploration/use_outlier_data.ts"
+ "path": "x-pack/plugins/ml/public/application/data_frame_analytics/pages/analytics_creation/hooks/use_index_data.ts"
},
{
"plugin": "ml",
- "path": "x-pack/plugins/ml/public/application/data_frame_analytics/pages/analytics_exploration/components/exploration_results_table/use_exploration_results.ts"
+ "path": "x-pack/plugins/ml/public/application/data_frame_analytics/pages/analytics_creation/hooks/use_index_data.ts"
},
{
"plugin": "ml",
- "path": "x-pack/plugins/ml/public/application/data_frame_analytics/pages/analytics_management/components/source_selection/source_selection.tsx"
+ "path": "x-pack/plugins/ml/public/application/data_frame_analytics/pages/analytics_creation/hooks/use_index_data.ts"
},
{
"plugin": "ml",
- "path": "x-pack/plugins/ml/server/models/data_frame_analytics/index_patterns.ts"
+ "path": "x-pack/plugins/ml/public/application/data_frame_analytics/pages/analytics_creation/hooks/use_index_data.ts"
},
{
"plugin": "ml",
- "path": "x-pack/plugins/ml/server/models/job_service/new_job_caps/rollup.ts"
+ "path": "x-pack/plugins/ml/public/application/data_frame_analytics/pages/analytics_creation/components/configuration_step/configuration_step_form.tsx"
},
{
"plugin": "ml",
- "path": "x-pack/plugins/ml/server/lib/alerts/alerting_service.ts"
+ "path": "x-pack/plugins/ml/public/application/data_frame_analytics/pages/analytics_creation/components/configuration_step/configuration_step_form.tsx"
},
{
"plugin": "ml",
- "path": "x-pack/plugins/ml/server/models/data_recognizer/data_recognizer.ts"
+ "path": "x-pack/plugins/ml/public/application/data_frame_analytics/pages/analytics_creation/components/configuration_step/configuration_step_form.tsx"
},
{
- "plugin": "timelines",
- "path": "x-pack/plugins/timelines/server/search_strategy/index_fields/index.ts"
+ "plugin": "ml",
+ "path": "x-pack/plugins/ml/public/application/data_frame_analytics/pages/analytics_creation/page.tsx"
},
{
- "plugin": "apm",
- "path": "x-pack/plugins/apm/server/routes/data_view/create_static_data_view.ts"
+ "plugin": "ml",
+ "path": "x-pack/plugins/ml/public/application/data_frame_analytics/pages/analytics_management/components/action_clone/clone_action_name.tsx"
},
{
- "plugin": "exploratoryView",
- "path": "x-pack/plugins/exploratory_view/public/utils/observability_data_views/observability_data_views.ts"
+ "plugin": "ml",
+ "path": "x-pack/plugins/ml/public/application/jobs/new_job/common/job_creator/job_creator.ts"
},
{
- "plugin": "exploratoryView",
- "path": "x-pack/plugins/exploratory_view/public/components/shared/exploratory_view/series_editor/columns/report_definition_field.tsx"
+ "plugin": "ml",
+ "path": "x-pack/plugins/ml/public/application/jobs/new_job/common/results_loader/categorization_examples_loader.ts"
},
{
- "plugin": "exploratoryView",
- "path": "x-pack/plugins/exploratory_view/public/components/shared/exploratory_view/series_editor/use_filter_values.ts"
+ "plugin": "ml",
+ "path": "x-pack/plugins/ml/public/application/jobs/new_job/pages/index_or_search/preconfigured_job_redirect.ts"
},
{
- "plugin": "exploratoryView",
- "path": "x-pack/plugins/exploratory_view/public/components/shared/exploratory_view/series_editor/columns/filter_value_btn.tsx"
+ "plugin": "ml",
+ "path": "x-pack/plugins/ml/public/application/jobs/new_job/pages/components/pick_fields_step/components/bucket_span_estimator/estimate_bucket_span.ts"
},
{
- "plugin": "fleet",
- "path": "x-pack/plugins/fleet/public/applications/fleet/sections/agents/agent_details_page/components/agent_logs/query_bar.tsx"
+ "plugin": "ml",
+ "path": "x-pack/plugins/ml/public/application/jobs/new_job/pages/components/datafeed_step/components/data_view/change_data_view.tsx"
},
{
- "plugin": "stackAlerts",
- "path": "x-pack/plugins/stack_alerts/public/rule_types/geo_containment/rule_form/boundary_form.tsx"
+ "plugin": "ml",
+ "path": "x-pack/plugins/ml/public/application/data_frame_analytics/pages/analytics_exploration/components/outlier_exploration/use_outlier_data.ts"
},
{
- "plugin": "stackAlerts",
- "path": "x-pack/plugins/stack_alerts/public/rule_types/geo_containment/rule_form/entity_form.tsx"
+ "plugin": "ml",
+ "path": "x-pack/plugins/ml/public/application/data_frame_analytics/pages/analytics_exploration/components/exploration_results_table/use_exploration_results.ts"
},
{
- "plugin": "stackAlerts",
- "path": "x-pack/plugins/stack_alerts/public/rule_types/components/data_view_select_popover.tsx"
+ "plugin": "ml",
+ "path": "x-pack/plugins/ml/public/application/data_frame_analytics/pages/analytics_management/components/source_selection/source_selection.tsx"
},
{
"plugin": "infra",
@@ -13808,6 +13787,10 @@
"plugin": "visTypeTimeseries",
"path": "src/plugins/vis_types/timeseries/server/lib/get_fields.ts"
},
+ {
+ "plugin": "timelines",
+ "path": "x-pack/plugins/timelines/server/search_strategy/index_fields/index.ts"
+ },
{
"plugin": "securitySolution",
"path": "x-pack/plugins/security_solution/public/common/containers/sourcerer/create_sourcerer_data_view.ts"
@@ -21009,10 +20992,6 @@
"plugin": "@kbn/visualization-ui-components",
"path": "packages/kbn-visualization-ui-components/components/query_input/filter_query_input.tsx"
},
- {
- "plugin": "securitySolution",
- "path": "x-pack/plugins/security_solution/server/lib/detection_engine/rule_types/utils/get_query_filter.ts"
- },
{
"plugin": "observability",
"path": "x-pack/plugins/observability/public/components/custom_threshold/hooks/use_metrics_explorer_data.ts"
@@ -21037,6 +21016,10 @@
"plugin": "observability",
"path": "x-pack/plugins/observability/public/components/custom_threshold/components/alert_details_app_section.tsx"
},
+ {
+ "plugin": "securitySolution",
+ "path": "x-pack/plugins/security_solution/server/lib/detection_engine/rule_types/utils/get_query_filter.ts"
+ },
{
"plugin": "securitySolution",
"path": "x-pack/plugins/security_solution/public/common/containers/source/index.tsx"
@@ -21261,18 +21244,6 @@
"plugin": "dataViews",
"path": "src/plugins/data_views/common/data_views/data_view.ts"
},
- {
- "plugin": "logsShared",
- "path": "x-pack/plugins/logs_shared/common/log_views/resolved_log_view.ts"
- },
- {
- "plugin": "dataViews",
- "path": "src/plugins/data_views/server/rest_api_routes/public/update_data_view.ts"
- },
- {
- "plugin": "dataViews",
- "path": "src/plugins/data_views/server/rest_api_routes/public/update_data_view.ts"
- },
{
"plugin": "savedObjectsManagement",
"path": "src/plugins/saved_objects_management/public/management_section/objects_table/components/flyout.tsx"
@@ -21325,145 +21296,153 @@
"plugin": "lens",
"path": "x-pack/plugins/lens/public/app_plugin/lens_top_nav.tsx"
},
+ {
+ "plugin": "dataViews",
+ "path": "src/plugins/data_views/server/rest_api_routes/public/update_data_view.ts"
+ },
+ {
+ "plugin": "dataViews",
+ "path": "src/plugins/data_views/server/rest_api_routes/public/update_data_view.ts"
+ },
{
"plugin": "triggersActionsUi",
"path": "x-pack/plugins/triggers_actions_ui/public/common/lib/data_apis.ts"
},
{
- "plugin": "dataVisualizer",
- "path": "x-pack/plugins/data_visualizer/public/application/index_data_visualizer/hooks/use_data_visualizer_grid_data.ts"
+ "plugin": "ml",
+ "path": "x-pack/plugins/ml/server/models/data_frame_analytics/index_patterns.ts"
},
{
"plugin": "ml",
- "path": "x-pack/plugins/ml/public/application/data_frame_analytics/pages/analytics_creation/components/configuration_step/configuration_step_details.tsx"
+ "path": "x-pack/plugins/ml/server/models/job_service/new_job_caps/rollup.ts"
},
{
"plugin": "ml",
- "path": "x-pack/plugins/ml/public/application/datavisualizer/index_based/data_loader/data_loader.ts"
+ "path": "x-pack/plugins/ml/server/lib/alerts/alerting_service.ts"
},
{
"plugin": "ml",
- "path": "x-pack/plugins/ml/public/application/data_frame_analytics/pages/analytics_creation/hooks/use_index_data.ts"
+ "path": "x-pack/plugins/ml/server/models/data_recognizer/data_recognizer.ts"
},
{
- "plugin": "ml",
- "path": "x-pack/plugins/ml/public/application/data_frame_analytics/pages/analytics_creation/hooks/use_index_data.ts"
+ "plugin": "apm",
+ "path": "x-pack/plugins/apm/server/routes/data_view/create_static_data_view.ts"
},
{
- "plugin": "ml",
- "path": "x-pack/plugins/ml/public/application/data_frame_analytics/pages/analytics_creation/hooks/use_index_data.ts"
+ "plugin": "exploratoryView",
+ "path": "x-pack/plugins/exploratory_view/public/utils/observability_data_views/observability_data_views.ts"
},
{
- "plugin": "ml",
- "path": "x-pack/plugins/ml/public/application/data_frame_analytics/pages/analytics_creation/hooks/use_index_data.ts"
+ "plugin": "exploratoryView",
+ "path": "x-pack/plugins/exploratory_view/public/components/shared/exploratory_view/series_editor/columns/report_definition_field.tsx"
},
{
- "plugin": "ml",
- "path": "x-pack/plugins/ml/public/application/data_frame_analytics/pages/analytics_creation/components/configuration_step/configuration_step_form.tsx"
+ "plugin": "exploratoryView",
+ "path": "x-pack/plugins/exploratory_view/public/components/shared/exploratory_view/series_editor/use_filter_values.ts"
},
{
- "plugin": "ml",
- "path": "x-pack/plugins/ml/public/application/data_frame_analytics/pages/analytics_creation/components/configuration_step/configuration_step_form.tsx"
+ "plugin": "exploratoryView",
+ "path": "x-pack/plugins/exploratory_view/public/components/shared/exploratory_view/series_editor/columns/filter_value_btn.tsx"
},
{
- "plugin": "ml",
- "path": "x-pack/plugins/ml/public/application/data_frame_analytics/pages/analytics_creation/components/configuration_step/configuration_step_form.tsx"
+ "plugin": "logsShared",
+ "path": "x-pack/plugins/logs_shared/common/log_views/resolved_log_view.ts"
},
{
- "plugin": "ml",
- "path": "x-pack/plugins/ml/public/application/data_frame_analytics/pages/analytics_creation/page.tsx"
+ "plugin": "fleet",
+ "path": "x-pack/plugins/fleet/public/applications/fleet/sections/agents/agent_details_page/components/agent_logs/query_bar.tsx"
},
{
- "plugin": "ml",
- "path": "x-pack/plugins/ml/public/application/data_frame_analytics/pages/analytics_management/components/action_clone/clone_action_name.tsx"
+ "plugin": "stackAlerts",
+ "path": "x-pack/plugins/stack_alerts/public/rule_types/geo_containment/rule_form/boundary_form.tsx"
},
{
- "plugin": "ml",
- "path": "x-pack/plugins/ml/public/application/jobs/new_job/common/job_creator/job_creator.ts"
+ "plugin": "stackAlerts",
+ "path": "x-pack/plugins/stack_alerts/public/rule_types/geo_containment/rule_form/entity_form.tsx"
},
{
- "plugin": "ml",
- "path": "x-pack/plugins/ml/public/application/jobs/new_job/common/results_loader/categorization_examples_loader.ts"
+ "plugin": "stackAlerts",
+ "path": "x-pack/plugins/stack_alerts/public/rule_types/components/data_view_select_popover.tsx"
},
{
- "plugin": "ml",
- "path": "x-pack/plugins/ml/public/application/jobs/new_job/pages/index_or_search/preconfigured_job_redirect.ts"
+ "plugin": "dataVisualizer",
+ "path": "x-pack/plugins/data_visualizer/public/application/index_data_visualizer/hooks/use_data_visualizer_grid_data.ts"
},
{
"plugin": "ml",
- "path": "x-pack/plugins/ml/public/application/jobs/new_job/pages/components/pick_fields_step/components/bucket_span_estimator/estimate_bucket_span.ts"
+ "path": "x-pack/plugins/ml/public/application/data_frame_analytics/pages/analytics_creation/components/configuration_step/configuration_step_details.tsx"
},
{
"plugin": "ml",
- "path": "x-pack/plugins/ml/public/application/jobs/new_job/pages/components/datafeed_step/components/data_view/change_data_view.tsx"
+ "path": "x-pack/plugins/ml/public/application/datavisualizer/index_based/data_loader/data_loader.ts"
},
{
"plugin": "ml",
- "path": "x-pack/plugins/ml/public/application/data_frame_analytics/pages/analytics_exploration/components/outlier_exploration/use_outlier_data.ts"
+ "path": "x-pack/plugins/ml/public/application/data_frame_analytics/pages/analytics_creation/hooks/use_index_data.ts"
},
{
"plugin": "ml",
- "path": "x-pack/plugins/ml/public/application/data_frame_analytics/pages/analytics_exploration/components/exploration_results_table/use_exploration_results.ts"
+ "path": "x-pack/plugins/ml/public/application/data_frame_analytics/pages/analytics_creation/hooks/use_index_data.ts"
},
{
"plugin": "ml",
- "path": "x-pack/plugins/ml/public/application/data_frame_analytics/pages/analytics_management/components/source_selection/source_selection.tsx"
+ "path": "x-pack/plugins/ml/public/application/data_frame_analytics/pages/analytics_creation/hooks/use_index_data.ts"
},
{
"plugin": "ml",
- "path": "x-pack/plugins/ml/server/models/data_frame_analytics/index_patterns.ts"
+ "path": "x-pack/plugins/ml/public/application/data_frame_analytics/pages/analytics_creation/hooks/use_index_data.ts"
},
{
"plugin": "ml",
- "path": "x-pack/plugins/ml/server/models/job_service/new_job_caps/rollup.ts"
+ "path": "x-pack/plugins/ml/public/application/data_frame_analytics/pages/analytics_creation/components/configuration_step/configuration_step_form.tsx"
},
{
"plugin": "ml",
- "path": "x-pack/plugins/ml/server/lib/alerts/alerting_service.ts"
+ "path": "x-pack/plugins/ml/public/application/data_frame_analytics/pages/analytics_creation/components/configuration_step/configuration_step_form.tsx"
},
{
"plugin": "ml",
- "path": "x-pack/plugins/ml/server/models/data_recognizer/data_recognizer.ts"
+ "path": "x-pack/plugins/ml/public/application/data_frame_analytics/pages/analytics_creation/components/configuration_step/configuration_step_form.tsx"
},
{
- "plugin": "timelines",
- "path": "x-pack/plugins/timelines/server/search_strategy/index_fields/index.ts"
+ "plugin": "ml",
+ "path": "x-pack/plugins/ml/public/application/data_frame_analytics/pages/analytics_creation/page.tsx"
},
{
- "plugin": "apm",
- "path": "x-pack/plugins/apm/server/routes/data_view/create_static_data_view.ts"
+ "plugin": "ml",
+ "path": "x-pack/plugins/ml/public/application/data_frame_analytics/pages/analytics_management/components/action_clone/clone_action_name.tsx"
},
{
- "plugin": "exploratoryView",
- "path": "x-pack/plugins/exploratory_view/public/utils/observability_data_views/observability_data_views.ts"
+ "plugin": "ml",
+ "path": "x-pack/plugins/ml/public/application/jobs/new_job/common/job_creator/job_creator.ts"
},
{
- "plugin": "exploratoryView",
- "path": "x-pack/plugins/exploratory_view/public/components/shared/exploratory_view/series_editor/columns/report_definition_field.tsx"
+ "plugin": "ml",
+ "path": "x-pack/plugins/ml/public/application/jobs/new_job/common/results_loader/categorization_examples_loader.ts"
},
{
- "plugin": "exploratoryView",
- "path": "x-pack/plugins/exploratory_view/public/components/shared/exploratory_view/series_editor/use_filter_values.ts"
+ "plugin": "ml",
+ "path": "x-pack/plugins/ml/public/application/jobs/new_job/pages/index_or_search/preconfigured_job_redirect.ts"
},
{
- "plugin": "exploratoryView",
- "path": "x-pack/plugins/exploratory_view/public/components/shared/exploratory_view/series_editor/columns/filter_value_btn.tsx"
+ "plugin": "ml",
+ "path": "x-pack/plugins/ml/public/application/jobs/new_job/pages/components/pick_fields_step/components/bucket_span_estimator/estimate_bucket_span.ts"
},
{
- "plugin": "fleet",
- "path": "x-pack/plugins/fleet/public/applications/fleet/sections/agents/agent_details_page/components/agent_logs/query_bar.tsx"
+ "plugin": "ml",
+ "path": "x-pack/plugins/ml/public/application/jobs/new_job/pages/components/datafeed_step/components/data_view/change_data_view.tsx"
},
{
- "plugin": "stackAlerts",
- "path": "x-pack/plugins/stack_alerts/public/rule_types/geo_containment/rule_form/boundary_form.tsx"
+ "plugin": "ml",
+ "path": "x-pack/plugins/ml/public/application/data_frame_analytics/pages/analytics_exploration/components/outlier_exploration/use_outlier_data.ts"
},
{
- "plugin": "stackAlerts",
- "path": "x-pack/plugins/stack_alerts/public/rule_types/geo_containment/rule_form/entity_form.tsx"
+ "plugin": "ml",
+ "path": "x-pack/plugins/ml/public/application/data_frame_analytics/pages/analytics_exploration/components/exploration_results_table/use_exploration_results.ts"
},
{
- "plugin": "stackAlerts",
- "path": "x-pack/plugins/stack_alerts/public/rule_types/components/data_view_select_popover.tsx"
+ "plugin": "ml",
+ "path": "x-pack/plugins/ml/public/application/data_frame_analytics/pages/analytics_management/components/source_selection/source_selection.tsx"
},
{
"plugin": "infra",
@@ -21553,6 +21532,10 @@
"plugin": "visTypeTimeseries",
"path": "src/plugins/vis_types/timeseries/server/lib/get_fields.ts"
},
+ {
+ "plugin": "timelines",
+ "path": "x-pack/plugins/timelines/server/search_strategy/index_fields/index.ts"
+ },
{
"plugin": "securitySolution",
"path": "x-pack/plugins/security_solution/public/common/containers/sourcerer/create_sourcerer_data_view.ts"
@@ -27718,18 +27701,6 @@
"deprecated": true,
"trackAdoption": false,
"references": [
- {
- "plugin": "@kbn/core-saved-objects-api-server-internal",
- "path": "packages/core/saved-objects/core-saved-objects-api-server-internal/src/lib/apis/utils/internal_utils.ts"
- },
- {
- "plugin": "@kbn/core-saved-objects-import-export-server-internal",
- "path": "packages/core/saved-objects/core-saved-objects-import-export-server-internal/src/import/lib/collect_saved_objects.ts"
- },
- {
- "plugin": "@kbn/core-saved-objects-server-internal",
- "path": "packages/core/saved-objects/core-saved-objects-server-internal/src/routes/legacy_import_export/lib/import_dashboards.ts"
- },
{
"plugin": "@kbn/core-saved-objects-api-browser",
"path": "packages/core/saved-objects/core-saved-objects-api-browser/src/simple_saved_object.ts"
@@ -27742,6 +27713,22 @@
"plugin": "@kbn/core-saved-objects-browser-internal",
"path": "packages/core/saved-objects/core-saved-objects-browser-internal/src/simple_saved_object.ts"
},
+ {
+ "plugin": "@kbn/core-saved-objects-browser-mocks",
+ "path": "packages/core/saved-objects/core-saved-objects-browser-mocks/src/simple_saved_object.mock.ts"
+ },
+ {
+ "plugin": "@kbn/core-saved-objects-api-server-internal",
+ "path": "packages/core/saved-objects/core-saved-objects-api-server-internal/src/lib/apis/utils/internal_utils.ts"
+ },
+ {
+ "plugin": "@kbn/core-saved-objects-import-export-server-internal",
+ "path": "packages/core/saved-objects/core-saved-objects-import-export-server-internal/src/import/lib/collect_saved_objects.ts"
+ },
+ {
+ "plugin": "@kbn/core-saved-objects-server-internal",
+ "path": "packages/core/saved-objects/core-saved-objects-server-internal/src/routes/legacy_import_export/lib/import_dashboards.ts"
+ },
{
"plugin": "fleet",
"path": "x-pack/plugins/fleet/server/services/epm/kibana/assets/install.ts"
@@ -27754,6 +27741,22 @@
"plugin": "fleet",
"path": "x-pack/plugins/fleet/server/services/epm/kibana/assets/install.ts"
},
+ {
+ "plugin": "graph",
+ "path": "x-pack/plugins/graph/server/sample_data/logs.ts"
+ },
+ {
+ "plugin": "graph",
+ "path": "x-pack/plugins/graph/server/sample_data/ecommerce.ts"
+ },
+ {
+ "plugin": "graph",
+ "path": "x-pack/plugins/graph/server/sample_data/flights.ts"
+ },
+ {
+ "plugin": "lists",
+ "path": "x-pack/plugins/lists/server/services/exception_lists/exception_list_client.mock.ts"
+ },
{
"plugin": "osquery",
"path": "x-pack/plugins/osquery/server/routes/pack/read_pack_route.ts"
@@ -27842,26 +27845,6 @@
"plugin": "securitySolution",
"path": "x-pack/plugins/security_solution/server/lib/risk_score/prebuilt_saved_objects/saved_object/user_risk_score_dashboards.ts"
},
- {
- "plugin": "@kbn/core-saved-objects-browser-mocks",
- "path": "packages/core/saved-objects/core-saved-objects-browser-mocks/src/simple_saved_object.mock.ts"
- },
- {
- "plugin": "graph",
- "path": "x-pack/plugins/graph/server/sample_data/logs.ts"
- },
- {
- "plugin": "graph",
- "path": "x-pack/plugins/graph/server/sample_data/ecommerce.ts"
- },
- {
- "plugin": "graph",
- "path": "x-pack/plugins/graph/server/sample_data/flights.ts"
- },
- {
- "plugin": "lists",
- "path": "x-pack/plugins/lists/server/services/exception_lists/exception_list_client.mock.ts"
- },
{
"plugin": "alerting",
"path": "x-pack/plugins/alerting/server/rules_client/lib/siem_legacy_actions/retrieve_migrated_legacy_actions.mock.ts"
diff --git a/api_docs/data.mdx b/api_docs/data.mdx
index 76c97d8b1bf9f..c60ee98bcae8f 100644
--- a/api_docs/data.mdx
+++ b/api_docs/data.mdx
@@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/data
title: "data"
image: https://source.unsplash.com/400x175/?github
description: API docs for the data plugin
-date: 2023-09-28
+date: 2023-09-29
tags: ['contributor', 'dev', 'apidocs', 'kibana', 'data']
---
import dataObj from './data.devdocs.json';
@@ -21,7 +21,7 @@ Contact [@elastic/kibana-visualizations](https://github.com/orgs/elastic/teams/k
| Public API count | Any count | Items lacking comments | Missing exports |
|-------------------|-----------|------------------------|-----------------|
-| 3310 | 33 | 2575 | 24 |
+| 3311 | 33 | 2577 | 24 |
## Client
diff --git a/api_docs/data_query.mdx b/api_docs/data_query.mdx
index 4a3052e69dacb..8eed5453737fc 100644
--- a/api_docs/data_query.mdx
+++ b/api_docs/data_query.mdx
@@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/data-query
title: "data.query"
image: https://source.unsplash.com/400x175/?github
description: API docs for the data.query plugin
-date: 2023-09-28
+date: 2023-09-29
tags: ['contributor', 'dev', 'apidocs', 'kibana', 'data.query']
---
import dataQueryObj from './data_query.devdocs.json';
@@ -21,7 +21,7 @@ Contact [@elastic/kibana-visualizations](https://github.com/orgs/elastic/teams/k
| Public API count | Any count | Items lacking comments | Missing exports |
|-------------------|-----------|------------------------|-----------------|
-| 3310 | 33 | 2575 | 24 |
+| 3311 | 33 | 2577 | 24 |
## Client
diff --git a/api_docs/data_search.devdocs.json b/api_docs/data_search.devdocs.json
index f79d7c49a2f89..f0a4baedc0261 100644
--- a/api_docs/data_search.devdocs.json
+++ b/api_docs/data_search.devdocs.json
@@ -16128,6 +16128,39 @@
"returnComment": [],
"initialIsOpen": false
},
+ {
+ "parentPluginId": "data",
+ "id": "def-common.isMultiFieldKey",
+ "type": "Function",
+ "tags": [],
+ "label": "isMultiFieldKey",
+ "description": [],
+ "signature": [
+ "(field: unknown) => boolean"
+ ],
+ "path": "src/plugins/data/common/search/aggs/buckets/multi_field_key.ts",
+ "deprecated": false,
+ "trackAdoption": false,
+ "children": [
+ {
+ "parentPluginId": "data",
+ "id": "def-common.isMultiFieldKey.$1",
+ "type": "Unknown",
+ "tags": [],
+ "label": "field",
+ "description": [],
+ "signature": [
+ "unknown"
+ ],
+ "path": "src/plugins/data/common/search/aggs/buckets/multi_field_key.ts",
+ "deprecated": false,
+ "trackAdoption": false,
+ "isRequired": true
+ }
+ ],
+ "returnComment": [],
+ "initialIsOpen": false
+ },
{
"parentPluginId": "data",
"id": "def-common.isNumberType",
@@ -28023,23 +28056,6 @@
"path": "src/plugins/data/common/search/types.ts",
"deprecated": false,
"trackAdoption": false
- },
- {
- "parentPluginId": "data",
- "id": "def-common.IKibanaSearchResponse.requestParams",
- "type": "Object",
- "tags": [],
- "label": "requestParams",
- "description": [
- "\nHTTP request parameters from elasticsearch transport client t"
- ],
- "signature": [
- "ConnectionRequestParams",
- " | undefined"
- ],
- "path": "src/plugins/data/common/search/types.ts",
- "deprecated": false,
- "trackAdoption": false
}
],
"initialIsOpen": false
@@ -35052,6 +35068,23 @@
"trackAdoption": false,
"initialIsOpen": false
},
+ {
+ "parentPluginId": "data",
+ "id": "def-common.MULTI_FIELD_KEY_SEPARATOR",
+ "type": "string",
+ "tags": [],
+ "label": "MULTI_FIELD_KEY_SEPARATOR",
+ "description": [
+ "\nMulti-field key separator used in Visualizations (Lens, AggBased, TSVB).\nThis differs from the separator used in the toString method of the MultiFieldKey"
+ ],
+ "signature": [
+ "\" › \""
+ ],
+ "path": "src/plugins/data/common/search/aggs/buckets/multi_field_key.ts",
+ "deprecated": false,
+ "trackAdoption": false,
+ "initialIsOpen": false
+ },
{
"parentPluginId": "data",
"id": "def-common.NumericalRangeOutput",
diff --git a/api_docs/data_search.mdx b/api_docs/data_search.mdx
index 55c7a1cd37548..e7caee8f95917 100644
--- a/api_docs/data_search.mdx
+++ b/api_docs/data_search.mdx
@@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/data-search
title: "data.search"
image: https://source.unsplash.com/400x175/?github
description: API docs for the data.search plugin
-date: 2023-09-28
+date: 2023-09-29
tags: ['contributor', 'dev', 'apidocs', 'kibana', 'data.search']
---
import dataSearchObj from './data_search.devdocs.json';
@@ -21,7 +21,7 @@ Contact [@elastic/kibana-visualizations](https://github.com/orgs/elastic/teams/k
| Public API count | Any count | Items lacking comments | Missing exports |
|-------------------|-----------|------------------------|-----------------|
-| 3310 | 33 | 2575 | 24 |
+| 3311 | 33 | 2577 | 24 |
## Client
diff --git a/api_docs/data_view_editor.mdx b/api_docs/data_view_editor.mdx
index 523efeb3c400b..c324604693ced 100644
--- a/api_docs/data_view_editor.mdx
+++ b/api_docs/data_view_editor.mdx
@@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/dataViewEditor
title: "dataViewEditor"
image: https://source.unsplash.com/400x175/?github
description: API docs for the dataViewEditor plugin
-date: 2023-09-28
+date: 2023-09-29
tags: ['contributor', 'dev', 'apidocs', 'kibana', 'dataViewEditor']
---
import dataViewEditorObj from './data_view_editor.devdocs.json';
diff --git a/api_docs/data_view_field_editor.mdx b/api_docs/data_view_field_editor.mdx
index 34b59f7b16539..ac10e1f38cbd2 100644
--- a/api_docs/data_view_field_editor.mdx
+++ b/api_docs/data_view_field_editor.mdx
@@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/dataViewFieldEditor
title: "dataViewFieldEditor"
image: https://source.unsplash.com/400x175/?github
description: API docs for the dataViewFieldEditor plugin
-date: 2023-09-28
+date: 2023-09-29
tags: ['contributor', 'dev', 'apidocs', 'kibana', 'dataViewFieldEditor']
---
import dataViewFieldEditorObj from './data_view_field_editor.devdocs.json';
diff --git a/api_docs/data_view_management.mdx b/api_docs/data_view_management.mdx
index c82cf17f02184..cc9788c023c7a 100644
--- a/api_docs/data_view_management.mdx
+++ b/api_docs/data_view_management.mdx
@@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/dataViewManagement
title: "dataViewManagement"
image: https://source.unsplash.com/400x175/?github
description: API docs for the dataViewManagement plugin
-date: 2023-09-28
+date: 2023-09-29
tags: ['contributor', 'dev', 'apidocs', 'kibana', 'dataViewManagement']
---
import dataViewManagementObj from './data_view_management.devdocs.json';
diff --git a/api_docs/data_views.devdocs.json b/api_docs/data_views.devdocs.json
index baaf0d95bec9c..aa6f12fb292d7 100644
--- a/api_docs/data_views.devdocs.json
+++ b/api_docs/data_views.devdocs.json
@@ -71,10 +71,6 @@
"plugin": "@kbn/visualization-ui-components",
"path": "packages/kbn-visualization-ui-components/components/query_input/filter_query_input.tsx"
},
- {
- "plugin": "securitySolution",
- "path": "x-pack/plugins/security_solution/server/lib/detection_engine/rule_types/utils/get_query_filter.ts"
- },
{
"plugin": "observability",
"path": "x-pack/plugins/observability/public/components/custom_threshold/hooks/use_metrics_explorer_data.ts"
@@ -99,6 +95,10 @@
"plugin": "observability",
"path": "x-pack/plugins/observability/public/components/custom_threshold/components/alert_details_app_section.tsx"
},
+ {
+ "plugin": "securitySolution",
+ "path": "x-pack/plugins/security_solution/server/lib/detection_engine/rule_types/utils/get_query_filter.ts"
+ },
{
"plugin": "securitySolution",
"path": "x-pack/plugins/security_solution/public/common/containers/source/index.tsx"
@@ -307,10 +307,6 @@
"plugin": "@kbn/es-query",
"path": "packages/kbn-es-query/src/kuery/functions/utils/get_full_field_name_node.test.ts"
},
- {
- "plugin": "data",
- "path": "src/plugins/data/public/query/filter_manager/lib/get_display_value.ts"
- },
{
"plugin": "data",
"path": "src/plugins/data/common/search/search_source/inspect/inspector_stats.ts"
@@ -321,15 +317,15 @@
},
{
"plugin": "data",
- "path": "src/plugins/data/public/search/errors/painless_error.tsx"
+ "path": "src/plugins/data/common/search/aggs/param_types/field.ts"
},
{
"plugin": "data",
- "path": "src/plugins/data/common/search/aggs/param_types/field.ts"
+ "path": "src/plugins/data/public/query/filter_manager/lib/get_display_value.ts"
},
{
- "plugin": "logsShared",
- "path": "x-pack/plugins/logs_shared/common/log_views/resolved_log_view.ts"
+ "plugin": "data",
+ "path": "src/plugins/data/public/search/errors/painless_error.tsx"
},
{
"plugin": "savedObjectsManagement",
@@ -388,140 +384,140 @@
"path": "x-pack/plugins/triggers_actions_ui/public/common/lib/data_apis.ts"
},
{
- "plugin": "dataVisualizer",
- "path": "x-pack/plugins/data_visualizer/public/application/index_data_visualizer/hooks/use_data_visualizer_grid_data.ts"
+ "plugin": "ml",
+ "path": "x-pack/plugins/ml/server/models/data_frame_analytics/index_patterns.ts"
},
{
"plugin": "ml",
- "path": "x-pack/plugins/ml/public/application/data_frame_analytics/pages/analytics_creation/components/configuration_step/configuration_step_details.tsx"
+ "path": "x-pack/plugins/ml/server/models/job_service/new_job_caps/rollup.ts"
},
{
"plugin": "ml",
- "path": "x-pack/plugins/ml/public/application/datavisualizer/index_based/data_loader/data_loader.ts"
+ "path": "x-pack/plugins/ml/server/lib/alerts/alerting_service.ts"
},
{
"plugin": "ml",
- "path": "x-pack/plugins/ml/public/application/data_frame_analytics/pages/analytics_creation/hooks/use_index_data.ts"
+ "path": "x-pack/plugins/ml/server/models/data_recognizer/data_recognizer.ts"
},
{
- "plugin": "ml",
- "path": "x-pack/plugins/ml/public/application/data_frame_analytics/pages/analytics_creation/hooks/use_index_data.ts"
+ "plugin": "apm",
+ "path": "x-pack/plugins/apm/server/routes/data_view/create_static_data_view.ts"
},
{
- "plugin": "ml",
- "path": "x-pack/plugins/ml/public/application/data_frame_analytics/pages/analytics_creation/hooks/use_index_data.ts"
+ "plugin": "exploratoryView",
+ "path": "x-pack/plugins/exploratory_view/public/utils/observability_data_views/observability_data_views.ts"
},
{
- "plugin": "ml",
- "path": "x-pack/plugins/ml/public/application/data_frame_analytics/pages/analytics_creation/hooks/use_index_data.ts"
+ "plugin": "exploratoryView",
+ "path": "x-pack/plugins/exploratory_view/public/components/shared/exploratory_view/series_editor/columns/report_definition_field.tsx"
},
{
- "plugin": "ml",
- "path": "x-pack/plugins/ml/public/application/data_frame_analytics/pages/analytics_creation/components/configuration_step/configuration_step_form.tsx"
+ "plugin": "exploratoryView",
+ "path": "x-pack/plugins/exploratory_view/public/components/shared/exploratory_view/series_editor/use_filter_values.ts"
},
{
- "plugin": "ml",
- "path": "x-pack/plugins/ml/public/application/data_frame_analytics/pages/analytics_creation/components/configuration_step/configuration_step_form.tsx"
+ "plugin": "exploratoryView",
+ "path": "x-pack/plugins/exploratory_view/public/components/shared/exploratory_view/series_editor/columns/filter_value_btn.tsx"
},
{
- "plugin": "ml",
- "path": "x-pack/plugins/ml/public/application/data_frame_analytics/pages/analytics_creation/components/configuration_step/configuration_step_form.tsx"
+ "plugin": "logsShared",
+ "path": "x-pack/plugins/logs_shared/common/log_views/resolved_log_view.ts"
},
{
- "plugin": "ml",
- "path": "x-pack/plugins/ml/public/application/data_frame_analytics/pages/analytics_creation/page.tsx"
+ "plugin": "fleet",
+ "path": "x-pack/plugins/fleet/public/applications/fleet/sections/agents/agent_details_page/components/agent_logs/query_bar.tsx"
},
{
- "plugin": "ml",
- "path": "x-pack/plugins/ml/public/application/data_frame_analytics/pages/analytics_management/components/action_clone/clone_action_name.tsx"
+ "plugin": "stackAlerts",
+ "path": "x-pack/plugins/stack_alerts/public/rule_types/geo_containment/rule_form/boundary_form.tsx"
},
{
- "plugin": "ml",
- "path": "x-pack/plugins/ml/public/application/jobs/new_job/common/job_creator/job_creator.ts"
+ "plugin": "stackAlerts",
+ "path": "x-pack/plugins/stack_alerts/public/rule_types/geo_containment/rule_form/entity_form.tsx"
},
{
- "plugin": "ml",
- "path": "x-pack/plugins/ml/public/application/jobs/new_job/common/results_loader/categorization_examples_loader.ts"
+ "plugin": "stackAlerts",
+ "path": "x-pack/plugins/stack_alerts/public/rule_types/components/data_view_select_popover.tsx"
},
{
- "plugin": "ml",
- "path": "x-pack/plugins/ml/public/application/jobs/new_job/pages/index_or_search/preconfigured_job_redirect.ts"
+ "plugin": "dataVisualizer",
+ "path": "x-pack/plugins/data_visualizer/public/application/index_data_visualizer/hooks/use_data_visualizer_grid_data.ts"
},
{
"plugin": "ml",
- "path": "x-pack/plugins/ml/public/application/jobs/new_job/pages/components/pick_fields_step/components/bucket_span_estimator/estimate_bucket_span.ts"
+ "path": "x-pack/plugins/ml/public/application/data_frame_analytics/pages/analytics_creation/components/configuration_step/configuration_step_details.tsx"
},
{
"plugin": "ml",
- "path": "x-pack/plugins/ml/public/application/jobs/new_job/pages/components/datafeed_step/components/data_view/change_data_view.tsx"
+ "path": "x-pack/plugins/ml/public/application/datavisualizer/index_based/data_loader/data_loader.ts"
},
{
"plugin": "ml",
- "path": "x-pack/plugins/ml/public/application/data_frame_analytics/pages/analytics_exploration/components/outlier_exploration/use_outlier_data.ts"
+ "path": "x-pack/plugins/ml/public/application/data_frame_analytics/pages/analytics_creation/hooks/use_index_data.ts"
},
{
"plugin": "ml",
- "path": "x-pack/plugins/ml/public/application/data_frame_analytics/pages/analytics_exploration/components/exploration_results_table/use_exploration_results.ts"
+ "path": "x-pack/plugins/ml/public/application/data_frame_analytics/pages/analytics_creation/hooks/use_index_data.ts"
},
{
"plugin": "ml",
- "path": "x-pack/plugins/ml/public/application/data_frame_analytics/pages/analytics_management/components/source_selection/source_selection.tsx"
+ "path": "x-pack/plugins/ml/public/application/data_frame_analytics/pages/analytics_creation/hooks/use_index_data.ts"
},
{
"plugin": "ml",
- "path": "x-pack/plugins/ml/server/models/data_frame_analytics/index_patterns.ts"
+ "path": "x-pack/plugins/ml/public/application/data_frame_analytics/pages/analytics_creation/hooks/use_index_data.ts"
},
{
"plugin": "ml",
- "path": "x-pack/plugins/ml/server/models/job_service/new_job_caps/rollup.ts"
+ "path": "x-pack/plugins/ml/public/application/data_frame_analytics/pages/analytics_creation/components/configuration_step/configuration_step_form.tsx"
},
{
"plugin": "ml",
- "path": "x-pack/plugins/ml/server/lib/alerts/alerting_service.ts"
+ "path": "x-pack/plugins/ml/public/application/data_frame_analytics/pages/analytics_creation/components/configuration_step/configuration_step_form.tsx"
},
{
"plugin": "ml",
- "path": "x-pack/plugins/ml/server/models/data_recognizer/data_recognizer.ts"
+ "path": "x-pack/plugins/ml/public/application/data_frame_analytics/pages/analytics_creation/components/configuration_step/configuration_step_form.tsx"
},
{
- "plugin": "timelines",
- "path": "x-pack/plugins/timelines/server/search_strategy/index_fields/index.ts"
+ "plugin": "ml",
+ "path": "x-pack/plugins/ml/public/application/data_frame_analytics/pages/analytics_creation/page.tsx"
},
{
- "plugin": "apm",
- "path": "x-pack/plugins/apm/server/routes/data_view/create_static_data_view.ts"
+ "plugin": "ml",
+ "path": "x-pack/plugins/ml/public/application/data_frame_analytics/pages/analytics_management/components/action_clone/clone_action_name.tsx"
},
{
- "plugin": "exploratoryView",
- "path": "x-pack/plugins/exploratory_view/public/utils/observability_data_views/observability_data_views.ts"
+ "plugin": "ml",
+ "path": "x-pack/plugins/ml/public/application/jobs/new_job/common/job_creator/job_creator.ts"
},
{
- "plugin": "exploratoryView",
- "path": "x-pack/plugins/exploratory_view/public/components/shared/exploratory_view/series_editor/columns/report_definition_field.tsx"
+ "plugin": "ml",
+ "path": "x-pack/plugins/ml/public/application/jobs/new_job/common/results_loader/categorization_examples_loader.ts"
},
{
- "plugin": "exploratoryView",
- "path": "x-pack/plugins/exploratory_view/public/components/shared/exploratory_view/series_editor/use_filter_values.ts"
+ "plugin": "ml",
+ "path": "x-pack/plugins/ml/public/application/jobs/new_job/pages/index_or_search/preconfigured_job_redirect.ts"
},
{
- "plugin": "exploratoryView",
- "path": "x-pack/plugins/exploratory_view/public/components/shared/exploratory_view/series_editor/columns/filter_value_btn.tsx"
+ "plugin": "ml",
+ "path": "x-pack/plugins/ml/public/application/jobs/new_job/pages/components/pick_fields_step/components/bucket_span_estimator/estimate_bucket_span.ts"
},
{
- "plugin": "fleet",
- "path": "x-pack/plugins/fleet/public/applications/fleet/sections/agents/agent_details_page/components/agent_logs/query_bar.tsx"
+ "plugin": "ml",
+ "path": "x-pack/plugins/ml/public/application/jobs/new_job/pages/components/datafeed_step/components/data_view/change_data_view.tsx"
},
{
- "plugin": "stackAlerts",
- "path": "x-pack/plugins/stack_alerts/public/rule_types/geo_containment/rule_form/boundary_form.tsx"
+ "plugin": "ml",
+ "path": "x-pack/plugins/ml/public/application/data_frame_analytics/pages/analytics_exploration/components/outlier_exploration/use_outlier_data.ts"
},
{
- "plugin": "stackAlerts",
- "path": "x-pack/plugins/stack_alerts/public/rule_types/geo_containment/rule_form/entity_form.tsx"
+ "plugin": "ml",
+ "path": "x-pack/plugins/ml/public/application/data_frame_analytics/pages/analytics_exploration/components/exploration_results_table/use_exploration_results.ts"
},
{
- "plugin": "stackAlerts",
- "path": "x-pack/plugins/stack_alerts/public/rule_types/components/data_view_select_popover.tsx"
+ "plugin": "ml",
+ "path": "x-pack/plugins/ml/public/application/data_frame_analytics/pages/analytics_management/components/source_selection/source_selection.tsx"
},
{
"plugin": "infra",
@@ -611,6 +607,10 @@
"plugin": "visTypeTimeseries",
"path": "src/plugins/vis_types/timeseries/server/lib/get_fields.ts"
},
+ {
+ "plugin": "timelines",
+ "path": "x-pack/plugins/timelines/server/search_strategy/index_fields/index.ts"
+ },
{
"plugin": "securitySolution",
"path": "x-pack/plugins/security_solution/public/common/containers/sourcerer/create_sourcerer_data_view.ts"
@@ -8064,10 +8064,6 @@
"plugin": "@kbn/visualization-ui-components",
"path": "packages/kbn-visualization-ui-components/components/query_input/filter_query_input.tsx"
},
- {
- "plugin": "securitySolution",
- "path": "x-pack/plugins/security_solution/server/lib/detection_engine/rule_types/utils/get_query_filter.ts"
- },
{
"plugin": "observability",
"path": "x-pack/plugins/observability/public/components/custom_threshold/hooks/use_metrics_explorer_data.ts"
@@ -8092,6 +8088,10 @@
"plugin": "observability",
"path": "x-pack/plugins/observability/public/components/custom_threshold/components/alert_details_app_section.tsx"
},
+ {
+ "plugin": "securitySolution",
+ "path": "x-pack/plugins/security_solution/server/lib/detection_engine/rule_types/utils/get_query_filter.ts"
+ },
{
"plugin": "securitySolution",
"path": "x-pack/plugins/security_solution/public/common/containers/source/index.tsx"
@@ -8300,10 +8300,6 @@
"plugin": "@kbn/es-query",
"path": "packages/kbn-es-query/src/kuery/functions/utils/get_full_field_name_node.test.ts"
},
- {
- "plugin": "data",
- "path": "src/plugins/data/public/query/filter_manager/lib/get_display_value.ts"
- },
{
"plugin": "data",
"path": "src/plugins/data/common/search/search_source/inspect/inspector_stats.ts"
@@ -8314,15 +8310,15 @@
},
{
"plugin": "data",
- "path": "src/plugins/data/public/search/errors/painless_error.tsx"
+ "path": "src/plugins/data/common/search/aggs/param_types/field.ts"
},
{
"plugin": "data",
- "path": "src/plugins/data/common/search/aggs/param_types/field.ts"
+ "path": "src/plugins/data/public/query/filter_manager/lib/get_display_value.ts"
},
{
- "plugin": "logsShared",
- "path": "x-pack/plugins/logs_shared/common/log_views/resolved_log_view.ts"
+ "plugin": "data",
+ "path": "src/plugins/data/public/search/errors/painless_error.tsx"
},
{
"plugin": "savedObjectsManagement",
@@ -8381,140 +8377,140 @@
"path": "x-pack/plugins/triggers_actions_ui/public/common/lib/data_apis.ts"
},
{
- "plugin": "dataVisualizer",
- "path": "x-pack/plugins/data_visualizer/public/application/index_data_visualizer/hooks/use_data_visualizer_grid_data.ts"
+ "plugin": "ml",
+ "path": "x-pack/plugins/ml/server/models/data_frame_analytics/index_patterns.ts"
},
{
"plugin": "ml",
- "path": "x-pack/plugins/ml/public/application/data_frame_analytics/pages/analytics_creation/components/configuration_step/configuration_step_details.tsx"
+ "path": "x-pack/plugins/ml/server/models/job_service/new_job_caps/rollup.ts"
},
{
"plugin": "ml",
- "path": "x-pack/plugins/ml/public/application/datavisualizer/index_based/data_loader/data_loader.ts"
+ "path": "x-pack/plugins/ml/server/lib/alerts/alerting_service.ts"
},
{
"plugin": "ml",
- "path": "x-pack/plugins/ml/public/application/data_frame_analytics/pages/analytics_creation/hooks/use_index_data.ts"
+ "path": "x-pack/plugins/ml/server/models/data_recognizer/data_recognizer.ts"
},
{
- "plugin": "ml",
- "path": "x-pack/plugins/ml/public/application/data_frame_analytics/pages/analytics_creation/hooks/use_index_data.ts"
+ "plugin": "apm",
+ "path": "x-pack/plugins/apm/server/routes/data_view/create_static_data_view.ts"
},
{
- "plugin": "ml",
- "path": "x-pack/plugins/ml/public/application/data_frame_analytics/pages/analytics_creation/hooks/use_index_data.ts"
+ "plugin": "exploratoryView",
+ "path": "x-pack/plugins/exploratory_view/public/utils/observability_data_views/observability_data_views.ts"
},
{
- "plugin": "ml",
- "path": "x-pack/plugins/ml/public/application/data_frame_analytics/pages/analytics_creation/hooks/use_index_data.ts"
+ "plugin": "exploratoryView",
+ "path": "x-pack/plugins/exploratory_view/public/components/shared/exploratory_view/series_editor/columns/report_definition_field.tsx"
},
{
- "plugin": "ml",
- "path": "x-pack/plugins/ml/public/application/data_frame_analytics/pages/analytics_creation/components/configuration_step/configuration_step_form.tsx"
+ "plugin": "exploratoryView",
+ "path": "x-pack/plugins/exploratory_view/public/components/shared/exploratory_view/series_editor/use_filter_values.ts"
},
{
- "plugin": "ml",
- "path": "x-pack/plugins/ml/public/application/data_frame_analytics/pages/analytics_creation/components/configuration_step/configuration_step_form.tsx"
+ "plugin": "exploratoryView",
+ "path": "x-pack/plugins/exploratory_view/public/components/shared/exploratory_view/series_editor/columns/filter_value_btn.tsx"
},
{
- "plugin": "ml",
- "path": "x-pack/plugins/ml/public/application/data_frame_analytics/pages/analytics_creation/components/configuration_step/configuration_step_form.tsx"
+ "plugin": "logsShared",
+ "path": "x-pack/plugins/logs_shared/common/log_views/resolved_log_view.ts"
},
{
- "plugin": "ml",
- "path": "x-pack/plugins/ml/public/application/data_frame_analytics/pages/analytics_creation/page.tsx"
+ "plugin": "fleet",
+ "path": "x-pack/plugins/fleet/public/applications/fleet/sections/agents/agent_details_page/components/agent_logs/query_bar.tsx"
},
{
- "plugin": "ml",
- "path": "x-pack/plugins/ml/public/application/data_frame_analytics/pages/analytics_management/components/action_clone/clone_action_name.tsx"
+ "plugin": "stackAlerts",
+ "path": "x-pack/plugins/stack_alerts/public/rule_types/geo_containment/rule_form/boundary_form.tsx"
},
{
- "plugin": "ml",
- "path": "x-pack/plugins/ml/public/application/jobs/new_job/common/job_creator/job_creator.ts"
+ "plugin": "stackAlerts",
+ "path": "x-pack/plugins/stack_alerts/public/rule_types/geo_containment/rule_form/entity_form.tsx"
},
{
- "plugin": "ml",
- "path": "x-pack/plugins/ml/public/application/jobs/new_job/common/results_loader/categorization_examples_loader.ts"
+ "plugin": "stackAlerts",
+ "path": "x-pack/plugins/stack_alerts/public/rule_types/components/data_view_select_popover.tsx"
},
{
- "plugin": "ml",
- "path": "x-pack/plugins/ml/public/application/jobs/new_job/pages/index_or_search/preconfigured_job_redirect.ts"
+ "plugin": "dataVisualizer",
+ "path": "x-pack/plugins/data_visualizer/public/application/index_data_visualizer/hooks/use_data_visualizer_grid_data.ts"
},
{
"plugin": "ml",
- "path": "x-pack/plugins/ml/public/application/jobs/new_job/pages/components/pick_fields_step/components/bucket_span_estimator/estimate_bucket_span.ts"
+ "path": "x-pack/plugins/ml/public/application/data_frame_analytics/pages/analytics_creation/components/configuration_step/configuration_step_details.tsx"
},
{
"plugin": "ml",
- "path": "x-pack/plugins/ml/public/application/jobs/new_job/pages/components/datafeed_step/components/data_view/change_data_view.tsx"
+ "path": "x-pack/plugins/ml/public/application/datavisualizer/index_based/data_loader/data_loader.ts"
},
{
"plugin": "ml",
- "path": "x-pack/plugins/ml/public/application/data_frame_analytics/pages/analytics_exploration/components/outlier_exploration/use_outlier_data.ts"
+ "path": "x-pack/plugins/ml/public/application/data_frame_analytics/pages/analytics_creation/hooks/use_index_data.ts"
},
{
"plugin": "ml",
- "path": "x-pack/plugins/ml/public/application/data_frame_analytics/pages/analytics_exploration/components/exploration_results_table/use_exploration_results.ts"
+ "path": "x-pack/plugins/ml/public/application/data_frame_analytics/pages/analytics_creation/hooks/use_index_data.ts"
},
{
"plugin": "ml",
- "path": "x-pack/plugins/ml/public/application/data_frame_analytics/pages/analytics_management/components/source_selection/source_selection.tsx"
+ "path": "x-pack/plugins/ml/public/application/data_frame_analytics/pages/analytics_creation/hooks/use_index_data.ts"
},
{
"plugin": "ml",
- "path": "x-pack/plugins/ml/server/models/data_frame_analytics/index_patterns.ts"
+ "path": "x-pack/plugins/ml/public/application/data_frame_analytics/pages/analytics_creation/hooks/use_index_data.ts"
},
{
"plugin": "ml",
- "path": "x-pack/plugins/ml/server/models/job_service/new_job_caps/rollup.ts"
+ "path": "x-pack/plugins/ml/public/application/data_frame_analytics/pages/analytics_creation/components/configuration_step/configuration_step_form.tsx"
},
{
"plugin": "ml",
- "path": "x-pack/plugins/ml/server/lib/alerts/alerting_service.ts"
+ "path": "x-pack/plugins/ml/public/application/data_frame_analytics/pages/analytics_creation/components/configuration_step/configuration_step_form.tsx"
},
{
"plugin": "ml",
- "path": "x-pack/plugins/ml/server/models/data_recognizer/data_recognizer.ts"
+ "path": "x-pack/plugins/ml/public/application/data_frame_analytics/pages/analytics_creation/components/configuration_step/configuration_step_form.tsx"
},
{
- "plugin": "timelines",
- "path": "x-pack/plugins/timelines/server/search_strategy/index_fields/index.ts"
+ "plugin": "ml",
+ "path": "x-pack/plugins/ml/public/application/data_frame_analytics/pages/analytics_creation/page.tsx"
},
{
- "plugin": "apm",
- "path": "x-pack/plugins/apm/server/routes/data_view/create_static_data_view.ts"
+ "plugin": "ml",
+ "path": "x-pack/plugins/ml/public/application/data_frame_analytics/pages/analytics_management/components/action_clone/clone_action_name.tsx"
},
{
- "plugin": "exploratoryView",
- "path": "x-pack/plugins/exploratory_view/public/utils/observability_data_views/observability_data_views.ts"
+ "plugin": "ml",
+ "path": "x-pack/plugins/ml/public/application/jobs/new_job/common/job_creator/job_creator.ts"
},
{
- "plugin": "exploratoryView",
- "path": "x-pack/plugins/exploratory_view/public/components/shared/exploratory_view/series_editor/columns/report_definition_field.tsx"
+ "plugin": "ml",
+ "path": "x-pack/plugins/ml/public/application/jobs/new_job/common/results_loader/categorization_examples_loader.ts"
},
{
- "plugin": "exploratoryView",
- "path": "x-pack/plugins/exploratory_view/public/components/shared/exploratory_view/series_editor/use_filter_values.ts"
+ "plugin": "ml",
+ "path": "x-pack/plugins/ml/public/application/jobs/new_job/pages/index_or_search/preconfigured_job_redirect.ts"
},
{
- "plugin": "exploratoryView",
- "path": "x-pack/plugins/exploratory_view/public/components/shared/exploratory_view/series_editor/columns/filter_value_btn.tsx"
+ "plugin": "ml",
+ "path": "x-pack/plugins/ml/public/application/jobs/new_job/pages/components/pick_fields_step/components/bucket_span_estimator/estimate_bucket_span.ts"
},
{
- "plugin": "fleet",
- "path": "x-pack/plugins/fleet/public/applications/fleet/sections/agents/agent_details_page/components/agent_logs/query_bar.tsx"
+ "plugin": "ml",
+ "path": "x-pack/plugins/ml/public/application/jobs/new_job/pages/components/datafeed_step/components/data_view/change_data_view.tsx"
},
{
- "plugin": "stackAlerts",
- "path": "x-pack/plugins/stack_alerts/public/rule_types/geo_containment/rule_form/boundary_form.tsx"
+ "plugin": "ml",
+ "path": "x-pack/plugins/ml/public/application/data_frame_analytics/pages/analytics_exploration/components/outlier_exploration/use_outlier_data.ts"
},
{
- "plugin": "stackAlerts",
- "path": "x-pack/plugins/stack_alerts/public/rule_types/geo_containment/rule_form/entity_form.tsx"
+ "plugin": "ml",
+ "path": "x-pack/plugins/ml/public/application/data_frame_analytics/pages/analytics_exploration/components/exploration_results_table/use_exploration_results.ts"
},
{
- "plugin": "stackAlerts",
- "path": "x-pack/plugins/stack_alerts/public/rule_types/components/data_view_select_popover.tsx"
+ "plugin": "ml",
+ "path": "x-pack/plugins/ml/public/application/data_frame_analytics/pages/analytics_management/components/source_selection/source_selection.tsx"
},
{
"plugin": "infra",
@@ -8604,6 +8600,10 @@
"plugin": "visTypeTimeseries",
"path": "src/plugins/vis_types/timeseries/server/lib/get_fields.ts"
},
+ {
+ "plugin": "timelines",
+ "path": "x-pack/plugins/timelines/server/search_strategy/index_fields/index.ts"
+ },
{
"plugin": "securitySolution",
"path": "x-pack/plugins/security_solution/public/common/containers/sourcerer/create_sourcerer_data_view.ts"
@@ -15118,10 +15118,6 @@
"plugin": "@kbn/visualization-ui-components",
"path": "packages/kbn-visualization-ui-components/components/query_input/filter_query_input.tsx"
},
- {
- "plugin": "securitySolution",
- "path": "x-pack/plugins/security_solution/server/lib/detection_engine/rule_types/utils/get_query_filter.ts"
- },
{
"plugin": "observability",
"path": "x-pack/plugins/observability/public/components/custom_threshold/hooks/use_metrics_explorer_data.ts"
@@ -15146,6 +15142,10 @@
"plugin": "observability",
"path": "x-pack/plugins/observability/public/components/custom_threshold/components/alert_details_app_section.tsx"
},
+ {
+ "plugin": "securitySolution",
+ "path": "x-pack/plugins/security_solution/server/lib/detection_engine/rule_types/utils/get_query_filter.ts"
+ },
{
"plugin": "securitySolution",
"path": "x-pack/plugins/security_solution/public/common/containers/source/index.tsx"
@@ -15354,10 +15354,6 @@
"plugin": "@kbn/es-query",
"path": "packages/kbn-es-query/src/kuery/functions/utils/get_full_field_name_node.test.ts"
},
- {
- "plugin": "data",
- "path": "src/plugins/data/public/query/filter_manager/lib/get_display_value.ts"
- },
{
"plugin": "data",
"path": "src/plugins/data/common/search/search_source/inspect/inspector_stats.ts"
@@ -15368,15 +15364,15 @@
},
{
"plugin": "data",
- "path": "src/plugins/data/public/search/errors/painless_error.tsx"
+ "path": "src/plugins/data/common/search/aggs/param_types/field.ts"
},
{
"plugin": "data",
- "path": "src/plugins/data/common/search/aggs/param_types/field.ts"
+ "path": "src/plugins/data/public/query/filter_manager/lib/get_display_value.ts"
},
{
- "plugin": "logsShared",
- "path": "x-pack/plugins/logs_shared/common/log_views/resolved_log_view.ts"
+ "plugin": "data",
+ "path": "src/plugins/data/public/search/errors/painless_error.tsx"
},
{
"plugin": "savedObjectsManagement",
@@ -15435,140 +15431,140 @@
"path": "x-pack/plugins/triggers_actions_ui/public/common/lib/data_apis.ts"
},
{
- "plugin": "dataVisualizer",
- "path": "x-pack/plugins/data_visualizer/public/application/index_data_visualizer/hooks/use_data_visualizer_grid_data.ts"
+ "plugin": "ml",
+ "path": "x-pack/plugins/ml/server/models/data_frame_analytics/index_patterns.ts"
},
{
"plugin": "ml",
- "path": "x-pack/plugins/ml/public/application/data_frame_analytics/pages/analytics_creation/components/configuration_step/configuration_step_details.tsx"
+ "path": "x-pack/plugins/ml/server/models/job_service/new_job_caps/rollup.ts"
},
{
"plugin": "ml",
- "path": "x-pack/plugins/ml/public/application/datavisualizer/index_based/data_loader/data_loader.ts"
+ "path": "x-pack/plugins/ml/server/lib/alerts/alerting_service.ts"
},
{
"plugin": "ml",
- "path": "x-pack/plugins/ml/public/application/data_frame_analytics/pages/analytics_creation/hooks/use_index_data.ts"
+ "path": "x-pack/plugins/ml/server/models/data_recognizer/data_recognizer.ts"
},
{
- "plugin": "ml",
- "path": "x-pack/plugins/ml/public/application/data_frame_analytics/pages/analytics_creation/hooks/use_index_data.ts"
+ "plugin": "apm",
+ "path": "x-pack/plugins/apm/server/routes/data_view/create_static_data_view.ts"
},
{
- "plugin": "ml",
- "path": "x-pack/plugins/ml/public/application/data_frame_analytics/pages/analytics_creation/hooks/use_index_data.ts"
+ "plugin": "exploratoryView",
+ "path": "x-pack/plugins/exploratory_view/public/utils/observability_data_views/observability_data_views.ts"
},
{
- "plugin": "ml",
- "path": "x-pack/plugins/ml/public/application/data_frame_analytics/pages/analytics_creation/hooks/use_index_data.ts"
+ "plugin": "exploratoryView",
+ "path": "x-pack/plugins/exploratory_view/public/components/shared/exploratory_view/series_editor/columns/report_definition_field.tsx"
},
{
- "plugin": "ml",
- "path": "x-pack/plugins/ml/public/application/data_frame_analytics/pages/analytics_creation/components/configuration_step/configuration_step_form.tsx"
+ "plugin": "exploratoryView",
+ "path": "x-pack/plugins/exploratory_view/public/components/shared/exploratory_view/series_editor/use_filter_values.ts"
},
{
- "plugin": "ml",
- "path": "x-pack/plugins/ml/public/application/data_frame_analytics/pages/analytics_creation/components/configuration_step/configuration_step_form.tsx"
+ "plugin": "exploratoryView",
+ "path": "x-pack/plugins/exploratory_view/public/components/shared/exploratory_view/series_editor/columns/filter_value_btn.tsx"
},
{
- "plugin": "ml",
- "path": "x-pack/plugins/ml/public/application/data_frame_analytics/pages/analytics_creation/components/configuration_step/configuration_step_form.tsx"
+ "plugin": "logsShared",
+ "path": "x-pack/plugins/logs_shared/common/log_views/resolved_log_view.ts"
},
{
- "plugin": "ml",
- "path": "x-pack/plugins/ml/public/application/data_frame_analytics/pages/analytics_creation/page.tsx"
+ "plugin": "fleet",
+ "path": "x-pack/plugins/fleet/public/applications/fleet/sections/agents/agent_details_page/components/agent_logs/query_bar.tsx"
},
{
- "plugin": "ml",
- "path": "x-pack/plugins/ml/public/application/data_frame_analytics/pages/analytics_management/components/action_clone/clone_action_name.tsx"
+ "plugin": "stackAlerts",
+ "path": "x-pack/plugins/stack_alerts/public/rule_types/geo_containment/rule_form/boundary_form.tsx"
},
{
- "plugin": "ml",
- "path": "x-pack/plugins/ml/public/application/jobs/new_job/common/job_creator/job_creator.ts"
+ "plugin": "stackAlerts",
+ "path": "x-pack/plugins/stack_alerts/public/rule_types/geo_containment/rule_form/entity_form.tsx"
},
{
- "plugin": "ml",
- "path": "x-pack/plugins/ml/public/application/jobs/new_job/common/results_loader/categorization_examples_loader.ts"
+ "plugin": "stackAlerts",
+ "path": "x-pack/plugins/stack_alerts/public/rule_types/components/data_view_select_popover.tsx"
},
{
- "plugin": "ml",
- "path": "x-pack/plugins/ml/public/application/jobs/new_job/pages/index_or_search/preconfigured_job_redirect.ts"
+ "plugin": "dataVisualizer",
+ "path": "x-pack/plugins/data_visualizer/public/application/index_data_visualizer/hooks/use_data_visualizer_grid_data.ts"
},
{
"plugin": "ml",
- "path": "x-pack/plugins/ml/public/application/jobs/new_job/pages/components/pick_fields_step/components/bucket_span_estimator/estimate_bucket_span.ts"
+ "path": "x-pack/plugins/ml/public/application/data_frame_analytics/pages/analytics_creation/components/configuration_step/configuration_step_details.tsx"
},
{
"plugin": "ml",
- "path": "x-pack/plugins/ml/public/application/jobs/new_job/pages/components/datafeed_step/components/data_view/change_data_view.tsx"
+ "path": "x-pack/plugins/ml/public/application/datavisualizer/index_based/data_loader/data_loader.ts"
},
{
"plugin": "ml",
- "path": "x-pack/plugins/ml/public/application/data_frame_analytics/pages/analytics_exploration/components/outlier_exploration/use_outlier_data.ts"
+ "path": "x-pack/plugins/ml/public/application/data_frame_analytics/pages/analytics_creation/hooks/use_index_data.ts"
},
{
"plugin": "ml",
- "path": "x-pack/plugins/ml/public/application/data_frame_analytics/pages/analytics_exploration/components/exploration_results_table/use_exploration_results.ts"
+ "path": "x-pack/plugins/ml/public/application/data_frame_analytics/pages/analytics_creation/hooks/use_index_data.ts"
},
{
"plugin": "ml",
- "path": "x-pack/plugins/ml/public/application/data_frame_analytics/pages/analytics_management/components/source_selection/source_selection.tsx"
+ "path": "x-pack/plugins/ml/public/application/data_frame_analytics/pages/analytics_creation/hooks/use_index_data.ts"
},
{
"plugin": "ml",
- "path": "x-pack/plugins/ml/server/models/data_frame_analytics/index_patterns.ts"
+ "path": "x-pack/plugins/ml/public/application/data_frame_analytics/pages/analytics_creation/hooks/use_index_data.ts"
},
{
"plugin": "ml",
- "path": "x-pack/plugins/ml/server/models/job_service/new_job_caps/rollup.ts"
+ "path": "x-pack/plugins/ml/public/application/data_frame_analytics/pages/analytics_creation/components/configuration_step/configuration_step_form.tsx"
},
{
"plugin": "ml",
- "path": "x-pack/plugins/ml/server/lib/alerts/alerting_service.ts"
+ "path": "x-pack/plugins/ml/public/application/data_frame_analytics/pages/analytics_creation/components/configuration_step/configuration_step_form.tsx"
},
{
"plugin": "ml",
- "path": "x-pack/plugins/ml/server/models/data_recognizer/data_recognizer.ts"
+ "path": "x-pack/plugins/ml/public/application/data_frame_analytics/pages/analytics_creation/components/configuration_step/configuration_step_form.tsx"
},
{
- "plugin": "timelines",
- "path": "x-pack/plugins/timelines/server/search_strategy/index_fields/index.ts"
+ "plugin": "ml",
+ "path": "x-pack/plugins/ml/public/application/data_frame_analytics/pages/analytics_creation/page.tsx"
},
{
- "plugin": "apm",
- "path": "x-pack/plugins/apm/server/routes/data_view/create_static_data_view.ts"
+ "plugin": "ml",
+ "path": "x-pack/plugins/ml/public/application/data_frame_analytics/pages/analytics_management/components/action_clone/clone_action_name.tsx"
},
{
- "plugin": "exploratoryView",
- "path": "x-pack/plugins/exploratory_view/public/utils/observability_data_views/observability_data_views.ts"
+ "plugin": "ml",
+ "path": "x-pack/plugins/ml/public/application/jobs/new_job/common/job_creator/job_creator.ts"
},
{
- "plugin": "exploratoryView",
- "path": "x-pack/plugins/exploratory_view/public/components/shared/exploratory_view/series_editor/columns/report_definition_field.tsx"
+ "plugin": "ml",
+ "path": "x-pack/plugins/ml/public/application/jobs/new_job/common/results_loader/categorization_examples_loader.ts"
},
{
- "plugin": "exploratoryView",
- "path": "x-pack/plugins/exploratory_view/public/components/shared/exploratory_view/series_editor/use_filter_values.ts"
+ "plugin": "ml",
+ "path": "x-pack/plugins/ml/public/application/jobs/new_job/pages/index_or_search/preconfigured_job_redirect.ts"
},
{
- "plugin": "exploratoryView",
- "path": "x-pack/plugins/exploratory_view/public/components/shared/exploratory_view/series_editor/columns/filter_value_btn.tsx"
+ "plugin": "ml",
+ "path": "x-pack/plugins/ml/public/application/jobs/new_job/pages/components/pick_fields_step/components/bucket_span_estimator/estimate_bucket_span.ts"
},
{
- "plugin": "fleet",
- "path": "x-pack/plugins/fleet/public/applications/fleet/sections/agents/agent_details_page/components/agent_logs/query_bar.tsx"
+ "plugin": "ml",
+ "path": "x-pack/plugins/ml/public/application/jobs/new_job/pages/components/datafeed_step/components/data_view/change_data_view.tsx"
},
{
- "plugin": "stackAlerts",
- "path": "x-pack/plugins/stack_alerts/public/rule_types/geo_containment/rule_form/boundary_form.tsx"
+ "plugin": "ml",
+ "path": "x-pack/plugins/ml/public/application/data_frame_analytics/pages/analytics_exploration/components/outlier_exploration/use_outlier_data.ts"
},
{
- "plugin": "stackAlerts",
- "path": "x-pack/plugins/stack_alerts/public/rule_types/geo_containment/rule_form/entity_form.tsx"
+ "plugin": "ml",
+ "path": "x-pack/plugins/ml/public/application/data_frame_analytics/pages/analytics_exploration/components/exploration_results_table/use_exploration_results.ts"
},
{
- "plugin": "stackAlerts",
- "path": "x-pack/plugins/stack_alerts/public/rule_types/components/data_view_select_popover.tsx"
+ "plugin": "ml",
+ "path": "x-pack/plugins/ml/public/application/data_frame_analytics/pages/analytics_management/components/source_selection/source_selection.tsx"
},
{
"plugin": "infra",
@@ -15658,6 +15654,10 @@
"plugin": "visTypeTimeseries",
"path": "src/plugins/vis_types/timeseries/server/lib/get_fields.ts"
},
+ {
+ "plugin": "timelines",
+ "path": "x-pack/plugins/timelines/server/search_strategy/index_fields/index.ts"
+ },
{
"plugin": "securitySolution",
"path": "x-pack/plugins/security_solution/public/common/containers/sourcerer/create_sourcerer_data_view.ts"
@@ -24366,18 +24366,6 @@
"deprecated": true,
"trackAdoption": false,
"references": [
- {
- "plugin": "@kbn/core-saved-objects-api-server-internal",
- "path": "packages/core/saved-objects/core-saved-objects-api-server-internal/src/lib/apis/utils/internal_utils.ts"
- },
- {
- "plugin": "@kbn/core-saved-objects-import-export-server-internal",
- "path": "packages/core/saved-objects/core-saved-objects-import-export-server-internal/src/import/lib/collect_saved_objects.ts"
- },
- {
- "plugin": "@kbn/core-saved-objects-server-internal",
- "path": "packages/core/saved-objects/core-saved-objects-server-internal/src/routes/legacy_import_export/lib/import_dashboards.ts"
- },
{
"plugin": "@kbn/core-saved-objects-api-browser",
"path": "packages/core/saved-objects/core-saved-objects-api-browser/src/simple_saved_object.ts"
@@ -24390,6 +24378,22 @@
"plugin": "@kbn/core-saved-objects-browser-internal",
"path": "packages/core/saved-objects/core-saved-objects-browser-internal/src/simple_saved_object.ts"
},
+ {
+ "plugin": "@kbn/core-saved-objects-browser-mocks",
+ "path": "packages/core/saved-objects/core-saved-objects-browser-mocks/src/simple_saved_object.mock.ts"
+ },
+ {
+ "plugin": "@kbn/core-saved-objects-api-server-internal",
+ "path": "packages/core/saved-objects/core-saved-objects-api-server-internal/src/lib/apis/utils/internal_utils.ts"
+ },
+ {
+ "plugin": "@kbn/core-saved-objects-import-export-server-internal",
+ "path": "packages/core/saved-objects/core-saved-objects-import-export-server-internal/src/import/lib/collect_saved_objects.ts"
+ },
+ {
+ "plugin": "@kbn/core-saved-objects-server-internal",
+ "path": "packages/core/saved-objects/core-saved-objects-server-internal/src/routes/legacy_import_export/lib/import_dashboards.ts"
+ },
{
"plugin": "fleet",
"path": "x-pack/plugins/fleet/server/services/epm/kibana/assets/install.ts"
@@ -24402,6 +24406,22 @@
"plugin": "fleet",
"path": "x-pack/plugins/fleet/server/services/epm/kibana/assets/install.ts"
},
+ {
+ "plugin": "graph",
+ "path": "x-pack/plugins/graph/server/sample_data/logs.ts"
+ },
+ {
+ "plugin": "graph",
+ "path": "x-pack/plugins/graph/server/sample_data/ecommerce.ts"
+ },
+ {
+ "plugin": "graph",
+ "path": "x-pack/plugins/graph/server/sample_data/flights.ts"
+ },
+ {
+ "plugin": "lists",
+ "path": "x-pack/plugins/lists/server/services/exception_lists/exception_list_client.mock.ts"
+ },
{
"plugin": "osquery",
"path": "x-pack/plugins/osquery/server/routes/pack/read_pack_route.ts"
@@ -24490,26 +24510,6 @@
"plugin": "securitySolution",
"path": "x-pack/plugins/security_solution/server/lib/risk_score/prebuilt_saved_objects/saved_object/user_risk_score_dashboards.ts"
},
- {
- "plugin": "@kbn/core-saved-objects-browser-mocks",
- "path": "packages/core/saved-objects/core-saved-objects-browser-mocks/src/simple_saved_object.mock.ts"
- },
- {
- "plugin": "graph",
- "path": "x-pack/plugins/graph/server/sample_data/logs.ts"
- },
- {
- "plugin": "graph",
- "path": "x-pack/plugins/graph/server/sample_data/ecommerce.ts"
- },
- {
- "plugin": "graph",
- "path": "x-pack/plugins/graph/server/sample_data/flights.ts"
- },
- {
- "plugin": "lists",
- "path": "x-pack/plugins/lists/server/services/exception_lists/exception_list_client.mock.ts"
- },
{
"plugin": "alerting",
"path": "x-pack/plugins/alerting/server/rules_client/lib/siem_legacy_actions/retrieve_migrated_legacy_actions.mock.ts"
diff --git a/api_docs/data_views.mdx b/api_docs/data_views.mdx
index ae7cee83fdaf7..27437fcd766fb 100644
--- a/api_docs/data_views.mdx
+++ b/api_docs/data_views.mdx
@@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/dataViews
title: "dataViews"
image: https://source.unsplash.com/400x175/?github
description: API docs for the dataViews plugin
-date: 2023-09-28
+date: 2023-09-29
tags: ['contributor', 'dev', 'apidocs', 'kibana', 'dataViews']
---
import dataViewsObj from './data_views.devdocs.json';
diff --git a/api_docs/data_visualizer.mdx b/api_docs/data_visualizer.mdx
index 57fc66f96769e..0e76079c026b7 100644
--- a/api_docs/data_visualizer.mdx
+++ b/api_docs/data_visualizer.mdx
@@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/dataVisualizer
title: "dataVisualizer"
image: https://source.unsplash.com/400x175/?github
description: API docs for the dataVisualizer plugin
-date: 2023-09-28
+date: 2023-09-29
tags: ['contributor', 'dev', 'apidocs', 'kibana', 'dataVisualizer']
---
import dataVisualizerObj from './data_visualizer.devdocs.json';
diff --git a/api_docs/deprecations_by_api.mdx b/api_docs/deprecations_by_api.mdx
index 4bf60fbe5107a..f62330c24105c 100644
--- a/api_docs/deprecations_by_api.mdx
+++ b/api_docs/deprecations_by_api.mdx
@@ -7,7 +7,7 @@ id: kibDevDocsDeprecationsByApi
slug: /kibana-dev-docs/api-meta/deprecated-api-list-by-api
title: Deprecated API usage by API
description: A list of deprecated APIs, which plugins are still referencing them, and when they need to be removed by.
-date: 2023-09-28
+date: 2023-09-29
tags: ['contributor', 'dev', 'apidocs', 'kibana']
---
@@ -16,36 +16,37 @@ tags: ['contributor', 'dev', 'apidocs', 'kibana']
| Deprecated API | Referencing plugin(s) | Remove By |
| ---------------|-----------|-----------|
-| | ml, stackAlerts | - |
-| | ruleRegistry, ml, securitySolution, observability, infra, monitoring, stackAlerts, synthetics, transform, uptime | - |
-| | @kbn/es-query, @kbn/visualization-ui-components, securitySolution, observability, timelines, lists, threatIntelligence, savedSearch, dataViews, logsShared, savedObjectsManagement, unifiedSearch, controls, @kbn/unified-field-list, lens, triggersActionsUi, dataVisualizer, ml, apm, exploratoryView, fleet, stackAlerts, infra, canvas, presentationUtil, enterpriseSearch, graph, visTypeTimeseries, transform, upgradeAssistant, uptime, ux, maps, dataViewManagement, eventAnnotationListing, inputControlVis, visDefaultEditor, visTypeTimelion, visTypeVega, data | - |
-| | @kbn/es-query, @kbn/visualization-ui-components, securitySolution, observability, timelines, lists, threatIntelligence, savedSearch, dataViews, logsShared, savedObjectsManagement, unifiedSearch, controls, @kbn/unified-field-list, lens, triggersActionsUi, dataVisualizer, ml, apm, exploratoryView, fleet, stackAlerts, infra, canvas, presentationUtil, enterpriseSearch, graph, visTypeTimeseries, transform, upgradeAssistant, uptime, ux, maps, dataViewManagement, eventAnnotationListing, inputControlVis, visDefaultEditor, visTypeTimelion, visTypeVega, data | - |
-| | @kbn/es-query, @kbn/visualization-ui-components, securitySolution, observability, timelines, lists, threatIntelligence, savedSearch, data, logsShared, savedObjectsManagement, unifiedSearch, controls, @kbn/unified-field-list, lens, triggersActionsUi, dataVisualizer, ml, apm, exploratoryView, fleet, stackAlerts, infra, canvas, presentationUtil, enterpriseSearch, graph, visTypeTimeseries, transform, upgradeAssistant, uptime, ux, maps, dataViewManagement, eventAnnotationListing, inputControlVis, visDefaultEditor, visTypeTimelion, visTypeVega | - |
-| | home, data, esUiShared, savedObjectsManagement, ml, exploratoryView, fleet, observability, apm, indexLifecycleManagement, observabilityOnboarding, synthetics, upgradeAssistant, uptime, ux, kibanaOverview | - |
-| | share, uiActions, guidedOnboarding, home, serverless, management, spaces, security, savedObjects, indexManagement, visualizations, controls, dashboard, savedObjectsTagging, expressionXY, lens, expressionMetricVis, expressionGauge, alerting, triggersActionsUi, cases, licenseManagement, advancedSettings, maps, dataVisualizer, aiops, ml, exploratoryView, fleet, infra, profiling, apm, expressionImage, expressionMetric, expressionError, expressionRevealImage, expressionRepeatImage, expressionShape, crossClusterReplication, enterpriseSearch, globalSearchBar, graph, grokdebugger, indexLifecycleManagement, ingestPipelines, logstash, monitoring, observabilityOnboarding, osquery, devTools, painlessLab, remoteClusters, rollup, searchprofiler, newsfeed, securitySolution, snapshotRestore, synthetics, transform, upgradeAssistant, uptime, ux, watcher, cloudDataMigration, console, filesManagement, kibanaOverview, visDefaultEditor, expressionHeatmap, expressionLegacyMetricVis, expressionPartitionVis, expressionTagcloud, visTypeTable, visTypeTimelion, visTypeTimeseries, visTypeVega, visTypeVislib | - |
-| | encryptedSavedObjects, actions, data, ml, securitySolution, logstash, cloudChat | - |
-| | actions, ml, savedObjectsTagging, enterpriseSearch | - |
-| | @kbn/core-saved-objects-browser-internal, @kbn/core, savedObjects, visualizations, dataVisualizer, ml, aiops, dashboardEnhanced, graph, lens, securitySolution, eventAnnotation, @kbn/core-saved-objects-browser-mocks | - |
-| | @kbn/core, ml, savedObjects, embeddable, visualizations, canvas, graph, @kbn/core-saved-objects-common, @kbn/core-saved-objects-server, actions, alerting, securitySolution, savedSearch, enterpriseSearch, taskManager, @kbn/core-saved-objects-server-internal, @kbn/core-saved-objects-api-server | - |
+| | stackAlerts, ml | - |
+| | ruleRegistry, observability, ml, infra, monitoring, securitySolution, stackAlerts, synthetics, transform, uptime | - |
| | stackAlerts, alerting, securitySolution, inputControlVis | - |
| | stackAlerts, infra, graph, inputControlVis, securitySolution, savedObjects | - |
-| | dashboard, dataVisualizer, stackAlerts, expressionPartitionVis | - |
+| | dashboard, stackAlerts, dataVisualizer, expressionPartitionVis | - |
+| | @kbn/es-query, @kbn/visualization-ui-components, observability, securitySolution, timelines, lists, threatIntelligence, savedSearch, dataViews, savedObjectsManagement, unifiedSearch, controls, @kbn/unified-field-list, lens, triggersActionsUi, ml, apm, exploratoryView, logsShared, fleet, stackAlerts, dataVisualizer, infra, canvas, presentationUtil, enterpriseSearch, graph, visTypeTimeseries, transform, upgradeAssistant, uptime, ux, maps, dataViewManagement, eventAnnotationListing, inputControlVis, visDefaultEditor, visTypeTimelion, visTypeVega, data | - |
| | stackAlerts, alerting, securitySolution, inputControlVis | - |
+| | @kbn/es-query, @kbn/visualization-ui-components, observability, securitySolution, timelines, lists, threatIntelligence, savedSearch, dataViews, savedObjectsManagement, unifiedSearch, controls, @kbn/unified-field-list, lens, triggersActionsUi, ml, apm, exploratoryView, logsShared, fleet, stackAlerts, dataVisualizer, infra, canvas, presentationUtil, enterpriseSearch, graph, visTypeTimeseries, transform, upgradeAssistant, uptime, ux, maps, dataViewManagement, eventAnnotationListing, inputControlVis, visDefaultEditor, visTypeTimelion, visTypeVega, data | - |
+| | @kbn/es-query, @kbn/visualization-ui-components, observability, securitySolution, timelines, lists, threatIntelligence, savedSearch, data, savedObjectsManagement, unifiedSearch, controls, @kbn/unified-field-list, lens, triggersActionsUi, ml, apm, exploratoryView, logsShared, fleet, stackAlerts, dataVisualizer, infra, canvas, presentationUtil, enterpriseSearch, graph, visTypeTimeseries, transform, upgradeAssistant, uptime, ux, maps, dataViewManagement, eventAnnotationListing, inputControlVis, visDefaultEditor, visTypeTimelion, visTypeVega | - |
+| | home, data, esUiShared, savedObjectsManagement, exploratoryView, fleet, observability, ml, apm, indexLifecycleManagement, observabilityOnboarding, synthetics, upgradeAssistant, uptime, ux, kibanaOverview | - |
+| | share, uiActions, guidedOnboarding, home, serverless, management, spaces, savedObjects, indexManagement, visualizations, controls, dashboard, savedObjectsTagging, expressionXY, lens, expressionMetricVis, expressionGauge, security, alerting, triggersActionsUi, cases, aiops, exploratoryView, fleet, licenseManagement, advancedSettings, maps, dataVisualizer, ml, infra, profiling, apm, expressionImage, expressionMetric, expressionError, expressionRevealImage, expressionRepeatImage, expressionShape, crossClusterReplication, enterpriseSearch, globalSearchBar, graph, grokdebugger, indexLifecycleManagement, ingestPipelines, logstash, monitoring, observabilityOnboarding, osquery, devTools, painlessLab, remoteClusters, rollup, searchprofiler, newsfeed, securitySolution, snapshotRestore, synthetics, transform, upgradeAssistant, uptime, ux, watcher, cloudDataMigration, console, filesManagement, kibanaOverview, visDefaultEditor, expressionHeatmap, expressionLegacyMetricVis, expressionPartitionVis, expressionTagcloud, visTypeTable, visTypeTimelion, visTypeTimeseries, visTypeVega, visTypeVislib | - |
+| | encryptedSavedObjects, actions, data, ml, logstash, securitySolution, cloudChat | - |
+| | actions, ml, savedObjectsTagging, enterpriseSearch | - |
+| | @kbn/core-saved-objects-browser-internal, @kbn/core, savedObjects, visualizations, aiops, ml, dataVisualizer, dashboardEnhanced, graph, lens, securitySolution, eventAnnotation, @kbn/core-saved-objects-browser-mocks | - |
+| | @kbn/core, savedObjects, embeddable, visualizations, canvas, graph, ml, @kbn/core-saved-objects-common, @kbn/core-saved-objects-server, actions, alerting, savedSearch, enterpriseSearch, securitySolution, taskManager, @kbn/core-saved-objects-server-internal, @kbn/core-saved-objects-api-server | - |
+| | observability, @kbn/securitysolution-data-table, securitySolution | - |
+| | monitoring | - |
+| | inspector, data, savedObjects, runtimeFields, indexManagement, dataViewEditor, unifiedSearch, embeddable, visualizations, controls, dashboard, licensing, savedObjectsTagging, dataViewFieldEditor, lens, security, triggersActionsUi, cases, observabilityShared, exploratoryView, fleet, telemetry, advancedSettings, maps, banners, reporting, timelines, cloudSecurityPosture, dashboardEnhanced, imageEmbeddable, graph, monitoring, securitySolution, synthetics, uptime, cloudLinks, console, dataViewManagement, eventAnnotationListing, filesManagement, uiActions, visTypeVislib | - |
| | alerting, discover, securitySolution | - |
-| | @kbn/core-saved-objects-api-server-internal, @kbn/core-saved-objects-import-export-server-internal, @kbn/core-saved-objects-server-internal, @kbn/core-saved-objects-api-browser, @kbn/core-saved-objects-browser-internal, fleet, osquery, securitySolution, @kbn/core-saved-objects-browser-mocks, graph, lists, alerting | - |
-| | @kbn/core-saved-objects-api-server-internal, @kbn/core-saved-objects-import-export-server-internal, @kbn/core-saved-objects-server-internal, @kbn/core-saved-objects-api-browser, @kbn/core-saved-objects-browser-internal, fleet, osquery, securitySolution, @kbn/core-saved-objects-browser-mocks, graph, lists, alerting | - |
+| | @kbn/core-saved-objects-api-browser, @kbn/core-saved-objects-browser-internal, @kbn/core-saved-objects-browser-mocks, @kbn/core-saved-objects-api-server-internal, @kbn/core-saved-objects-import-export-server-internal, @kbn/core-saved-objects-server-internal, fleet, graph, lists, osquery, securitySolution, alerting | - |
+| | @kbn/core-saved-objects-api-browser, @kbn/core-saved-objects-browser-internal, @kbn/core-saved-objects-browser-mocks, @kbn/core-saved-objects-api-server-internal, @kbn/core-saved-objects-import-export-server-internal, @kbn/core-saved-objects-server-internal, fleet, graph, lists, osquery, securitySolution, alerting | - |
| | alerting, discover, securitySolution | - |
| | securitySolution | - |
-| | inspector, data, licensing, security, savedObjects, runtimeFields, indexManagement, dataViewEditor, unifiedSearch, embeddable, visualizations, controls, dashboard, savedObjectsTagging, dataViewFieldEditor, lens, triggersActionsUi, cases, observabilityShared, telemetry, advancedSettings, maps, exploratoryView, fleet, observability, banners, reporting, timelines, cloudSecurityPosture, dashboardEnhanced, imageEmbeddable, graph, monitoring, securitySolution, synthetics, uptime, cloudLinks, console, dataViewManagement, eventAnnotationListing, filesManagement, uiActions, visTypeVislib | - |
-| | observability, @kbn/securitysolution-data-table, securitySolution | - |
| | @kbn/securitysolution-data-table, securitySolution | - |
| | securitySolution | - |
| | securitySolution, @kbn/securitysolution-data-table | - |
| | securitySolution, @kbn/securitysolution-data-table | - |
| | securitySolution | - |
| | securitySolution | - |
-| | @kbn/core-saved-objects-api-browser, @kbn/core-saved-objects-browser-internal, @kbn/core, savedObjectsTaggingOss, savedObjectsTagging, securitySolution, lists, upgradeAssistant, savedObjectsManagement, @kbn/core-saved-objects-api-server, @kbn/core-saved-objects-import-export-server-internal, home, canvas, savedObjects, @kbn/core-saved-objects-browser-mocks, @kbn/core-ui-settings-server-internal | - |
-| | @kbn/core-saved-objects-migration-server-internal, actions, dataViews, data, alerting, lens, lists, cases, savedObjectsTagging, securitySolution, savedSearch, canvas, graph, visualizations, maps, dashboard, @kbn/core-test-helpers-so-type-serializer | - |
+| | @kbn/core-saved-objects-api-browser, @kbn/core-saved-objects-browser-internal, @kbn/core-saved-objects-api-server, @kbn/core, home, savedObjectsTagging, canvas, savedObjects, @kbn/core-saved-objects-browser-mocks, @kbn/core-saved-objects-import-export-server-internal, savedObjectsTaggingOss, lists, securitySolution, upgradeAssistant, savedObjectsManagement, @kbn/core-ui-settings-server-internal | - |
+| | @kbn/core-saved-objects-migration-server-internal, actions, dataViews, data, alerting, lens, cases, savedObjectsTagging, savedSearch, canvas, graph, visualizations, lists, maps, securitySolution, dashboard, @kbn/core-test-helpers-so-type-serializer | - |
| | lists, securitySolution, @kbn/securitysolution-io-ts-list-types | - |
| | lists, securitySolution, @kbn/securitysolution-io-ts-list-types | - |
| | lists, securitySolution, @kbn/securitysolution-io-ts-list-types | - |
@@ -58,26 +59,22 @@ tags: ['contributor', 'dev', 'apidocs', 'kibana']
| | securitySolution | - |
| | securitySolution | - |
| | securitySolution | - |
-| | monitoring | - |
-| | dataVisualizer, exploratoryView, fleet, cloudSecurityPosture, discoverEnhanced, osquery, synthetics | - |
+| | exploratoryView, fleet, dataVisualizer, cloudSecurityPosture, discoverEnhanced, osquery, synthetics | - |
| | @kbn/core-plugins-browser-internal, @kbn/core-root-browser-internal, home, savedObjects, unifiedSearch, visualizations, fileUpload, dashboardEnhanced, transform, discover, dataVisualizer | - |
-| | @kbn/core, @kbn/core-lifecycle-browser, @kbn/core-saved-objects-browser-internal, visualizations, exploratoryView, transform, @kbn/core-saved-objects-browser-mocks | - |
+| | @kbn/core-lifecycle-browser, @kbn/core-saved-objects-browser-internal, @kbn/core, visualizations, exploratoryView, transform, @kbn/core-saved-objects-browser-mocks | - |
| | actions, alerting | - |
| | discover | - |
| | data, discover, imageEmbeddable, embeddable | - |
| | @kbn/core-saved-objects-browser-mocks, discover, @kbn/core-saved-objects-browser-internal | - |
| | advancedSettings, discover, @kbn/management-settings-field-definition | - |
-| | @kbn/core-saved-objects-api-server-internal | - |
-| | @kbn/core-saved-objects-api-server-internal | - |
-| | @kbn/core-saved-objects-api-server-internal, canvas, @kbn/core-saved-objects-browser-internal | - |
-| | @kbn/core, kibanaUtils, expressions, data, savedObjectsTaggingOss, embeddable, visualizations, controls, savedObjectsTagging, uiActionsEnhanced, lens, maps, canvas, dashboardEnhanced, globalSearchProviders, @kbn/core-saved-objects-api-browser, savedObjects, savedObjectsManagement, eventAnnotation, graph, dashboard | - |
+| | @kbn/core-saved-objects-api-browser, @kbn/core, savedObjects, savedObjectsManagement, visualizations, savedObjectsTagging, eventAnnotation, lens, graph, dashboard, savedObjectsTaggingOss, kibanaUtils, expressions, data, embeddable, controls, uiActionsEnhanced, maps, canvas, dashboardEnhanced, globalSearchProviders | - |
| | @kbn/core-saved-objects-browser, @kbn/core-saved-objects-browser-internal, @kbn/core, home, savedObjects, visualizations, lens, visTypeTimeseries, @kbn/core-saved-objects-browser-mocks | - |
-| | @kbn/core-saved-objects-browser-internal, savedObjects, @kbn/core-saved-objects-browser-mocks | - |
-| | home, @kbn/core-saved-objects-browser-mocks, @kbn/core-saved-objects-browser-internal | - |
-| | @kbn/core-saved-objects-browser-internal, savedObjects, visualizations, @kbn/core-saved-objects-browser-mocks | - |
+| | @kbn/core-saved-objects-browser-internal, @kbn/core-saved-objects-browser-mocks, savedObjects | - |
+| | @kbn/core-saved-objects-browser-mocks, home, @kbn/core-saved-objects-browser-internal | - |
+| | @kbn/core-saved-objects-browser-internal, @kbn/core-saved-objects-browser-mocks, savedObjects, visualizations | - |
| | @kbn/core-saved-objects-browser-mocks, @kbn/core-saved-objects-browser-internal | - |
-| | savedObjects, @kbn/core-saved-objects-browser-mocks, dashboardEnhanced, @kbn/core-saved-objects-browser-internal | - |
-| | savedObjects, @kbn/core-saved-objects-browser-mocks, dashboardEnhanced, @kbn/core-saved-objects-browser-internal | - |
+| | @kbn/core-saved-objects-browser-mocks, savedObjects, dashboardEnhanced, @kbn/core-saved-objects-browser-internal | - |
+| | @kbn/core-saved-objects-browser-mocks, savedObjects, dashboardEnhanced, @kbn/core-saved-objects-browser-internal | - |
| | @kbn/core-saved-objects-browser-mocks, savedObjects, @kbn/core-saved-objects-browser-internal | - |
| | @kbn/core-saved-objects-browser-mocks, @kbn/core-saved-objects-browser-internal | - |
| | @kbn/core-saved-objects-browser-internal, @kbn/core-saved-objects-browser-mocks, savedObjects | - |
@@ -86,17 +83,20 @@ tags: ['contributor', 'dev', 'apidocs', 'kibana']
| | @kbn/core-saved-objects-browser-internal | - |
| | @kbn/core-saved-objects-browser-internal | - |
| | @kbn/core-saved-objects-browser-internal, @kbn/core, savedObjects, visualizations, graph | - |
+| | @kbn/core-saved-objects-browser-internal, @kbn/core-saved-objects-api-server-internal, canvas | - |
| | @kbn/core-saved-objects-browser-internal, @kbn/core | - |
| | @kbn/core-saved-objects-browser-internal, @kbn/core | - |
| | @kbn/core-saved-objects-browser-internal, @kbn/core | - |
| | @kbn/core-saved-objects-browser-internal, @kbn/core | - |
-| | @kbn/core-saved-objects-browser-internal, @kbn/core, cases, spaces, savedSearch, visualizations, lens, maps, canvas, graph | - |
+| | @kbn/core-saved-objects-browser-internal, @kbn/core, spaces, savedSearch, visualizations, lens, cases, maps, canvas, graph | - |
| | @kbn/core-saved-objects-browser-internal, @kbn/core | - |
| | @kbn/core-saved-objects-browser-internal, @kbn/core | - |
| | @kbn/core-saved-objects-browser-internal, @kbn/core | - |
| | @kbn/core-saved-objects-browser-internal, @kbn/core | - |
| | @kbn/core-saved-objects-browser-internal | - |
| | @kbn/core-root-browser-internal, @kbn/core-saved-objects-browser-mocks | - |
+| | @kbn/core-saved-objects-api-server-internal | - |
+| | @kbn/core-saved-objects-api-server-internal | - |
| | graph, visTypeTimeseries, dataViewManagement, dataViews | - |
| | graph, visTypeTimeseries, dataViewManagement, dataViews | - |
| | graph, visTypeTimeseries, dataViewManagement | - |
@@ -139,13 +139,13 @@ tags: ['contributor', 'dev', 'apidocs', 'kibana']
| | @kbn/core-lifecycle-browser-mocks, @kbn/core, @kbn/core-plugins-browser-internal | - |
| | @kbn/core | - |
| | @kbn/core-plugins-server-internal | - |
-| | security, licenseManagement, aiops, ml, profiling, apm, crossClusterReplication, logstash, painlessLab, searchprofiler, watcher | 8.8.0 |
-| | spaces, security, actions, alerting, ml, osquery, securitySolution, remoteClusters, graph, indexLifecycleManagement, mapsEms, painlessLab, rollup, searchprofiler, snapshotRestore, transform, upgradeAssistant | 8.8.0 |
+| | security, aiops, licenseManagement, ml, profiling, apm, crossClusterReplication, logstash, painlessLab, searchprofiler, watcher | 8.8.0 |
+| | spaces, security, actions, alerting, ml, remoteClusters, graph, indexLifecycleManagement, mapsEms, osquery, securitySolution, painlessLab, rollup, searchprofiler, snapshotRestore, transform, upgradeAssistant | 8.8.0 |
| | apm, fleet, security, securitySolution | 8.8.0 |
| | apm, fleet, security, securitySolution | 8.8.0 |
| | spaces, security, alerting | 8.8.0 |
| | embeddable, presentationUtil, dashboard, lens, discover, graph | 8.8.0 |
-| | @kbn/core-application-browser-internal, management, @kbn/core-application-browser-mocks, fleet, security, kibanaOverview, @kbn/core | 8.8.0 |
+| | @kbn/core-application-browser-internal, @kbn/core-application-browser-mocks, management, fleet, security, kibanaOverview, @kbn/core | 8.8.0 |
| | apm | 8.8.0 |
| | security | 8.8.0 |
| | mapsEms | 8.8.0 |
diff --git a/api_docs/deprecations_by_plugin.mdx b/api_docs/deprecations_by_plugin.mdx
index 70748cc0ec64b..247aebf5885fb 100644
--- a/api_docs/deprecations_by_plugin.mdx
+++ b/api_docs/deprecations_by_plugin.mdx
@@ -7,7 +7,7 @@ id: kibDevDocsDeprecationsByPlugin
slug: /kibana-dev-docs/api-meta/deprecated-api-list-by-plugin
title: Deprecated API usage by plugin
description: A list of deprecated APIs, which plugins are still referencing them, and when they need to be removed by.
-date: 2023-09-28
+date: 2023-09-29
tags: ['contributor', 'dev', 'apidocs', 'kibana']
---
@@ -40,14 +40,14 @@ tags: ['contributor', 'dev', 'apidocs', 'kibana']
| | [index.ts](https://github.com/elastic/kibana/tree/main/src/core/public/index.ts#:~:text=SavedObjectsBulkUpdateOptions) | - |
| | [index.ts](https://github.com/elastic/kibana/tree/main/src/core/public/index.ts#:~:text=SavedObjectsBulkResolveResponse) | - |
| | [index.ts](https://github.com/elastic/kibana/tree/main/src/core/public/index.ts#:~:text=SavedObjectsBulkCreateObject) | - |
-| | [index.ts](https://github.com/elastic/kibana/tree/main/src/core/server/index.ts#:~:text=SavedObjectAttributes), [index.ts](https://github.com/elastic/kibana/tree/main/src/core/types/index.ts#:~:text=SavedObjectAttributes), [index.ts](https://github.com/elastic/kibana/tree/main/src/core/public/index.ts#:~:text=SavedObjectAttributes), [index.ts](https://github.com/elastic/kibana/tree/main/src/core/server/index.ts#:~:text=SavedObjectAttributes) | - |
-| | [index.ts](https://github.com/elastic/kibana/tree/main/src/core/server/index.ts#:~:text=SavedObjectsStart), [index.ts](https://github.com/elastic/kibana/tree/main/src/core/public/index.ts#:~:text=SavedObjectsStart) | - |
+| | [index.ts](https://github.com/elastic/kibana/tree/main/src/core/server/index.ts#:~:text=SavedObjectAttributes), [index.ts](https://github.com/elastic/kibana/tree/main/src/core/public/index.ts#:~:text=SavedObjectAttributes), [index.ts](https://github.com/elastic/kibana/tree/main/src/core/types/index.ts#:~:text=SavedObjectAttributes), [index.ts](https://github.com/elastic/kibana/tree/main/src/core/server/index.ts#:~:text=SavedObjectAttributes) | - |
+| | [index.ts](https://github.com/elastic/kibana/tree/main/src/core/public/index.ts#:~:text=SavedObjectsStart), [index.ts](https://github.com/elastic/kibana/tree/main/src/core/server/index.ts#:~:text=SavedObjectsStart) | - |
| | [mocks.ts](https://github.com/elastic/kibana/tree/main/src/core/public/mocks.ts#:~:text=savedObjectsServiceMock) | - |
| | [mocks.ts](https://github.com/elastic/kibana/tree/main/src/core/public/mocks.ts#:~:text=simpleSavedObjectMock) | - |
-| | [index.ts](https://github.com/elastic/kibana/tree/main/src/core/types/index.ts#:~:text=SavedObject), [index.ts](https://github.com/elastic/kibana/tree/main/src/core/public/index.ts#:~:text=SavedObject) | - |
-| | [index.ts](https://github.com/elastic/kibana/tree/main/src/core/types/index.ts#:~:text=SavedObjectAttributeSingle), [index.ts](https://github.com/elastic/kibana/tree/main/src/core/public/index.ts#:~:text=SavedObjectAttributeSingle) | - |
-| | [index.ts](https://github.com/elastic/kibana/tree/main/src/core/types/index.ts#:~:text=SavedObjectAttribute), [index.ts](https://github.com/elastic/kibana/tree/main/src/core/public/index.ts#:~:text=SavedObjectAttribute) | - |
-| | [index.ts](https://github.com/elastic/kibana/tree/main/src/core/types/index.ts#:~:text=SavedObjectReference), [index.ts](https://github.com/elastic/kibana/tree/main/src/core/public/index.ts#:~:text=SavedObjectReference) | - |
+| | [index.ts](https://github.com/elastic/kibana/tree/main/src/core/public/index.ts#:~:text=SavedObject), [index.ts](https://github.com/elastic/kibana/tree/main/src/core/types/index.ts#:~:text=SavedObject) | - |
+| | [index.ts](https://github.com/elastic/kibana/tree/main/src/core/public/index.ts#:~:text=SavedObjectAttributeSingle), [index.ts](https://github.com/elastic/kibana/tree/main/src/core/types/index.ts#:~:text=SavedObjectAttributeSingle) | - |
+| | [index.ts](https://github.com/elastic/kibana/tree/main/src/core/public/index.ts#:~:text=SavedObjectAttribute), [index.ts](https://github.com/elastic/kibana/tree/main/src/core/types/index.ts#:~:text=SavedObjectAttribute) | - |
+| | [index.ts](https://github.com/elastic/kibana/tree/main/src/core/public/index.ts#:~:text=SavedObjectReference), [index.ts](https://github.com/elastic/kibana/tree/main/src/core/types/index.ts#:~:text=SavedObjectReference) | - |
@@ -560,9 +560,9 @@ tags: ['contributor', 'dev', 'apidocs', 'kibana']
| Deprecated API | Reference location(s) | Remove By |
| ---------------|-----------|-----------|
-| | [get_display_value.ts](https://github.com/elastic/kibana/tree/main/src/plugins/data/public/query/filter_manager/lib/get_display_value.ts#:~:text=title), [inspector_stats.ts](https://github.com/elastic/kibana/tree/main/src/plugins/data/common/search/search_source/inspect/inspector_stats.ts#:~:text=title), [response_writer.ts](https://github.com/elastic/kibana/tree/main/src/plugins/data/common/search/tabify/response_writer.ts#:~:text=title), [painless_error.tsx](https://github.com/elastic/kibana/tree/main/src/plugins/data/public/search/errors/painless_error.tsx#:~:text=title), [field.ts](https://github.com/elastic/kibana/tree/main/src/plugins/data/common/search/aggs/param_types/field.ts#:~:text=title), [agg_config.test.ts](https://github.com/elastic/kibana/tree/main/src/plugins/data/common/search/aggs/agg_config.test.ts#:~:text=title), [_terms_other_bucket_helper.test.ts](https://github.com/elastic/kibana/tree/main/src/plugins/data/common/search/aggs/buckets/_terms_other_bucket_helper.test.ts#:~:text=title), [multi_terms.test.ts](https://github.com/elastic/kibana/tree/main/src/plugins/data/common/search/aggs/buckets/multi_terms.test.ts#:~:text=title), [multi_terms.test.ts](https://github.com/elastic/kibana/tree/main/src/plugins/data/common/search/aggs/buckets/multi_terms.test.ts#:~:text=title), [rare_terms.test.ts](https://github.com/elastic/kibana/tree/main/src/plugins/data/common/search/aggs/buckets/rare_terms.test.ts#:~:text=title)+ 3 more | - |
-| | [get_display_value.ts](https://github.com/elastic/kibana/tree/main/src/plugins/data/public/query/filter_manager/lib/get_display_value.ts#:~:text=title), [inspector_stats.ts](https://github.com/elastic/kibana/tree/main/src/plugins/data/common/search/search_source/inspect/inspector_stats.ts#:~:text=title), [response_writer.ts](https://github.com/elastic/kibana/tree/main/src/plugins/data/common/search/tabify/response_writer.ts#:~:text=title), [painless_error.tsx](https://github.com/elastic/kibana/tree/main/src/plugins/data/public/search/errors/painless_error.tsx#:~:text=title), [field.ts](https://github.com/elastic/kibana/tree/main/src/plugins/data/common/search/aggs/param_types/field.ts#:~:text=title), [agg_config.test.ts](https://github.com/elastic/kibana/tree/main/src/plugins/data/common/search/aggs/agg_config.test.ts#:~:text=title), [_terms_other_bucket_helper.test.ts](https://github.com/elastic/kibana/tree/main/src/plugins/data/common/search/aggs/buckets/_terms_other_bucket_helper.test.ts#:~:text=title), [multi_terms.test.ts](https://github.com/elastic/kibana/tree/main/src/plugins/data/common/search/aggs/buckets/multi_terms.test.ts#:~:text=title), [multi_terms.test.ts](https://github.com/elastic/kibana/tree/main/src/plugins/data/common/search/aggs/buckets/multi_terms.test.ts#:~:text=title), [rare_terms.test.ts](https://github.com/elastic/kibana/tree/main/src/plugins/data/common/search/aggs/buckets/rare_terms.test.ts#:~:text=title)+ 3 more | - |
-| | [get_display_value.ts](https://github.com/elastic/kibana/tree/main/src/plugins/data/public/query/filter_manager/lib/get_display_value.ts#:~:text=title), [inspector_stats.ts](https://github.com/elastic/kibana/tree/main/src/plugins/data/common/search/search_source/inspect/inspector_stats.ts#:~:text=title), [response_writer.ts](https://github.com/elastic/kibana/tree/main/src/plugins/data/common/search/tabify/response_writer.ts#:~:text=title), [painless_error.tsx](https://github.com/elastic/kibana/tree/main/src/plugins/data/public/search/errors/painless_error.tsx#:~:text=title), [field.ts](https://github.com/elastic/kibana/tree/main/src/plugins/data/common/search/aggs/param_types/field.ts#:~:text=title), [agg_config.test.ts](https://github.com/elastic/kibana/tree/main/src/plugins/data/common/search/aggs/agg_config.test.ts#:~:text=title), [_terms_other_bucket_helper.test.ts](https://github.com/elastic/kibana/tree/main/src/plugins/data/common/search/aggs/buckets/_terms_other_bucket_helper.test.ts#:~:text=title), [multi_terms.test.ts](https://github.com/elastic/kibana/tree/main/src/plugins/data/common/search/aggs/buckets/multi_terms.test.ts#:~:text=title), [multi_terms.test.ts](https://github.com/elastic/kibana/tree/main/src/plugins/data/common/search/aggs/buckets/multi_terms.test.ts#:~:text=title), [rare_terms.test.ts](https://github.com/elastic/kibana/tree/main/src/plugins/data/common/search/aggs/buckets/rare_terms.test.ts#:~:text=title)+ 3 more | - |
+| | [inspector_stats.ts](https://github.com/elastic/kibana/tree/main/src/plugins/data/common/search/search_source/inspect/inspector_stats.ts#:~:text=title), [response_writer.ts](https://github.com/elastic/kibana/tree/main/src/plugins/data/common/search/tabify/response_writer.ts#:~:text=title), [field.ts](https://github.com/elastic/kibana/tree/main/src/plugins/data/common/search/aggs/param_types/field.ts#:~:text=title), [get_display_value.ts](https://github.com/elastic/kibana/tree/main/src/plugins/data/public/query/filter_manager/lib/get_display_value.ts#:~:text=title), [painless_error.tsx](https://github.com/elastic/kibana/tree/main/src/plugins/data/public/search/errors/painless_error.tsx#:~:text=title), [agg_config.test.ts](https://github.com/elastic/kibana/tree/main/src/plugins/data/common/search/aggs/agg_config.test.ts#:~:text=title), [_terms_other_bucket_helper.test.ts](https://github.com/elastic/kibana/tree/main/src/plugins/data/common/search/aggs/buckets/_terms_other_bucket_helper.test.ts#:~:text=title), [multi_terms.test.ts](https://github.com/elastic/kibana/tree/main/src/plugins/data/common/search/aggs/buckets/multi_terms.test.ts#:~:text=title), [multi_terms.test.ts](https://github.com/elastic/kibana/tree/main/src/plugins/data/common/search/aggs/buckets/multi_terms.test.ts#:~:text=title), [rare_terms.test.ts](https://github.com/elastic/kibana/tree/main/src/plugins/data/common/search/aggs/buckets/rare_terms.test.ts#:~:text=title)+ 3 more | - |
+| | [inspector_stats.ts](https://github.com/elastic/kibana/tree/main/src/plugins/data/common/search/search_source/inspect/inspector_stats.ts#:~:text=title), [response_writer.ts](https://github.com/elastic/kibana/tree/main/src/plugins/data/common/search/tabify/response_writer.ts#:~:text=title), [field.ts](https://github.com/elastic/kibana/tree/main/src/plugins/data/common/search/aggs/param_types/field.ts#:~:text=title), [get_display_value.ts](https://github.com/elastic/kibana/tree/main/src/plugins/data/public/query/filter_manager/lib/get_display_value.ts#:~:text=title), [painless_error.tsx](https://github.com/elastic/kibana/tree/main/src/plugins/data/public/search/errors/painless_error.tsx#:~:text=title), [agg_config.test.ts](https://github.com/elastic/kibana/tree/main/src/plugins/data/common/search/aggs/agg_config.test.ts#:~:text=title), [_terms_other_bucket_helper.test.ts](https://github.com/elastic/kibana/tree/main/src/plugins/data/common/search/aggs/buckets/_terms_other_bucket_helper.test.ts#:~:text=title), [multi_terms.test.ts](https://github.com/elastic/kibana/tree/main/src/plugins/data/common/search/aggs/buckets/multi_terms.test.ts#:~:text=title), [multi_terms.test.ts](https://github.com/elastic/kibana/tree/main/src/plugins/data/common/search/aggs/buckets/multi_terms.test.ts#:~:text=title), [rare_terms.test.ts](https://github.com/elastic/kibana/tree/main/src/plugins/data/common/search/aggs/buckets/rare_terms.test.ts#:~:text=title)+ 3 more | - |
+| | [inspector_stats.ts](https://github.com/elastic/kibana/tree/main/src/plugins/data/common/search/search_source/inspect/inspector_stats.ts#:~:text=title), [response_writer.ts](https://github.com/elastic/kibana/tree/main/src/plugins/data/common/search/tabify/response_writer.ts#:~:text=title), [field.ts](https://github.com/elastic/kibana/tree/main/src/plugins/data/common/search/aggs/param_types/field.ts#:~:text=title), [get_display_value.ts](https://github.com/elastic/kibana/tree/main/src/plugins/data/public/query/filter_manager/lib/get_display_value.ts#:~:text=title), [painless_error.tsx](https://github.com/elastic/kibana/tree/main/src/plugins/data/public/search/errors/painless_error.tsx#:~:text=title), [agg_config.test.ts](https://github.com/elastic/kibana/tree/main/src/plugins/data/common/search/aggs/agg_config.test.ts#:~:text=title), [_terms_other_bucket_helper.test.ts](https://github.com/elastic/kibana/tree/main/src/plugins/data/common/search/aggs/buckets/_terms_other_bucket_helper.test.ts#:~:text=title), [multi_terms.test.ts](https://github.com/elastic/kibana/tree/main/src/plugins/data/common/search/aggs/buckets/multi_terms.test.ts#:~:text=title), [multi_terms.test.ts](https://github.com/elastic/kibana/tree/main/src/plugins/data/common/search/aggs/buckets/multi_terms.test.ts#:~:text=title), [rare_terms.test.ts](https://github.com/elastic/kibana/tree/main/src/plugins/data/common/search/aggs/buckets/rare_terms.test.ts#:~:text=title)+ 3 more | - |
| | [search_interceptor.ts](https://github.com/elastic/kibana/tree/main/src/plugins/data/public/search/search_interceptor/search_interceptor.ts#:~:text=toMountPoint), [search_interceptor.ts](https://github.com/elastic/kibana/tree/main/src/plugins/data/public/search/search_interceptor/search_interceptor.ts#:~:text=toMountPoint), [search_interceptor.ts](https://github.com/elastic/kibana/tree/main/src/plugins/data/public/search/search_interceptor/search_interceptor.ts#:~:text=toMountPoint), [search_interceptor.ts](https://github.com/elastic/kibana/tree/main/src/plugins/data/public/search/search_interceptor/search_interceptor.ts#:~:text=toMountPoint), [open_incomplete_results_modal_button.tsx](https://github.com/elastic/kibana/tree/main/src/plugins/data/public/incomplete_results_modal/open_incomplete_results_modal_button.tsx#:~:text=toMountPoint), [open_incomplete_results_modal_button.tsx](https://github.com/elastic/kibana/tree/main/src/plugins/data/public/incomplete_results_modal/open_incomplete_results_modal_button.tsx#:~:text=toMountPoint), [handle_warnings.tsx](https://github.com/elastic/kibana/tree/main/src/plugins/data/public/search/fetch/handle_warnings.tsx#:~:text=toMountPoint), [handle_warnings.tsx](https://github.com/elastic/kibana/tree/main/src/plugins/data/public/search/fetch/handle_warnings.tsx#:~:text=toMountPoint), [delete_button.tsx](https://github.com/elastic/kibana/tree/main/src/plugins/data/public/search/session/sessions_mgmt/components/actions/delete_button.tsx#:~:text=toMountPoint), [delete_button.tsx](https://github.com/elastic/kibana/tree/main/src/plugins/data/public/search/session/sessions_mgmt/components/actions/delete_button.tsx#:~:text=toMountPoint)+ 8 more | - |
| | [get_columns.tsx](https://github.com/elastic/kibana/tree/main/src/plugins/data/public/search/session/sessions_mgmt/lib/get_columns.tsx#:~:text=RedirectAppLinks), [get_columns.tsx](https://github.com/elastic/kibana/tree/main/src/plugins/data/public/search/session/sessions_mgmt/lib/get_columns.tsx#:~:text=RedirectAppLinks), [get_columns.tsx](https://github.com/elastic/kibana/tree/main/src/plugins/data/public/search/session/sessions_mgmt/lib/get_columns.tsx#:~:text=RedirectAppLinks), [connected_search_session_indicator.tsx](https://github.com/elastic/kibana/tree/main/src/plugins/data/public/search/session/session_indicator/connected_search_session_indicator/connected_search_session_indicator.tsx#:~:text=RedirectAppLinks), [connected_search_session_indicator.tsx](https://github.com/elastic/kibana/tree/main/src/plugins/data/public/search/session/session_indicator/connected_search_session_indicator/connected_search_session_indicator.tsx#:~:text=RedirectAppLinks), [connected_search_session_indicator.tsx](https://github.com/elastic/kibana/tree/main/src/plugins/data/public/search/session/session_indicator/connected_search_session_indicator/connected_search_session_indicator.tsx#:~:text=RedirectAppLinks) | - |
| | [session_service.ts](https://github.com/elastic/kibana/tree/main/src/plugins/data/server/search/session/session_service.ts#:~:text=authc) | - |
@@ -1082,7 +1082,7 @@ tags: ['contributor', 'dev', 'apidocs', 'kibana']
| | [find_object_by_title.test.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/lens/public/persistence/saved_objects_utils/find_object_by_title.test.ts#:~:text=SimpleSavedObject), [find_object_by_title.test.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/lens/public/persistence/saved_objects_utils/find_object_by_title.test.ts#:~:text=SimpleSavedObject) | - |
| | [types.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/lens/public/types.ts#:~:text=ResolvedSimpleSavedObject), [types.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/lens/public/types.ts#:~:text=ResolvedSimpleSavedObject), [types.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/lens/public/types.ts#:~:text=ResolvedSimpleSavedObject), [types.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/lens/public/types.ts#:~:text=ResolvedSimpleSavedObject) | - |
| | [find_object_by_title.test.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/lens/public/persistence/saved_objects_utils/find_object_by_title.test.ts#:~:text=simpleSavedObjectMock), [find_object_by_title.test.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/lens/public/persistence/saved_objects_utils/find_object_by_title.test.ts#:~:text=simpleSavedObjectMock) | - |
-| | [index.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/lens/common/embeddable_factory/index.ts#:~:text=SavedObjectReference), [index.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/lens/common/embeddable_factory/index.ts#:~:text=SavedObjectReference), [index.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/lens/common/embeddable_factory/index.ts#:~:text=SavedObjectReference), [index.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/lens/common/embeddable_factory/index.ts#:~:text=SavedObjectReference), [index.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/lens/common/embeddable_factory/index.ts#:~:text=SavedObjectReference), [saved_object_store.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/lens/public/persistence/saved_object_store.ts#:~:text=SavedObjectReference), [saved_object_store.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/lens/public/persistence/saved_object_store.ts#:~:text=SavedObjectReference), [saved_object_store.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/lens/public/persistence/saved_object_store.ts#:~:text=SavedObjectReference), [selectors.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/lens/public/state_management/selectors.ts#:~:text=SavedObjectReference), [selectors.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/lens/public/state_management/selectors.ts#:~:text=SavedObjectReference)+ 51 more | - |
+| | [saved_object_store.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/lens/public/persistence/saved_object_store.ts#:~:text=SavedObjectReference), [saved_object_store.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/lens/public/persistence/saved_object_store.ts#:~:text=SavedObjectReference), [saved_object_store.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/lens/public/persistence/saved_object_store.ts#:~:text=SavedObjectReference), [selectors.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/lens/public/state_management/selectors.ts#:~:text=SavedObjectReference), [selectors.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/lens/public/state_management/selectors.ts#:~:text=SavedObjectReference), [selectors.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/lens/public/state_management/selectors.ts#:~:text=SavedObjectReference), [state_helpers.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/lens/public/editor_frame_service/editor_frame/state_helpers.ts#:~:text=SavedObjectReference), [state_helpers.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/lens/public/editor_frame_service/editor_frame/state_helpers.ts#:~:text=SavedObjectReference), [state_helpers.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/lens/public/editor_frame_service/editor_frame/state_helpers.ts#:~:text=SavedObjectReference), [state_helpers.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/lens/public/editor_frame_service/editor_frame/state_helpers.ts#:~:text=SavedObjectReference)+ 51 more | - |
| | [saved_objects.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/lens/server/saved_objects.ts#:~:text=convertToMultiNamespaceTypeVersion) | - |
@@ -1183,10 +1183,10 @@ tags: ['contributor', 'dev', 'apidocs', 'kibana']
| Deprecated API | Reference location(s) | Remove By |
| ---------------|-----------|-----------|
| | [register_ml_alerts.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/ml/public/alerting/register_ml_alerts.ts#:~:text=registerNavigation) | - |
-| | [register_jobs_monitoring_rule_type.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/ml/server/lib/alerts/register_jobs_monitoring_rule_type.ts#:~:text=alertFactory), [register_jobs_monitoring_rule_type.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/ml/server/lib/alerts/register_jobs_monitoring_rule_type.ts#:~:text=alertFactory), [register_anomaly_detection_alert_type.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/ml/server/lib/alerts/register_anomaly_detection_alert_type.ts#:~:text=alertFactory), [register_anomaly_detection_alert_type.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/ml/server/lib/alerts/register_anomaly_detection_alert_type.ts#:~:text=alertFactory) | - |
-| | [configuration_step_details.tsx](https://github.com/elastic/kibana/tree/main/x-pack/plugins/ml/public/application/data_frame_analytics/pages/analytics_creation/components/configuration_step/configuration_step_details.tsx#:~:text=title), [data_loader.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/ml/public/application/datavisualizer/index_based/data_loader/data_loader.ts#:~:text=title), [use_index_data.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/ml/public/application/data_frame_analytics/pages/analytics_creation/hooks/use_index_data.ts#:~:text=title), [use_index_data.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/ml/public/application/data_frame_analytics/pages/analytics_creation/hooks/use_index_data.ts#:~:text=title), [use_index_data.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/ml/public/application/data_frame_analytics/pages/analytics_creation/hooks/use_index_data.ts#:~:text=title), [use_index_data.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/ml/public/application/data_frame_analytics/pages/analytics_creation/hooks/use_index_data.ts#:~:text=title), [configuration_step_form.tsx](https://github.com/elastic/kibana/tree/main/x-pack/plugins/ml/public/application/data_frame_analytics/pages/analytics_creation/components/configuration_step/configuration_step_form.tsx#:~:text=title), [configuration_step_form.tsx](https://github.com/elastic/kibana/tree/main/x-pack/plugins/ml/public/application/data_frame_analytics/pages/analytics_creation/components/configuration_step/configuration_step_form.tsx#:~:text=title), [configuration_step_form.tsx](https://github.com/elastic/kibana/tree/main/x-pack/plugins/ml/public/application/data_frame_analytics/pages/analytics_creation/components/configuration_step/configuration_step_form.tsx#:~:text=title), [page.tsx](https://github.com/elastic/kibana/tree/main/x-pack/plugins/ml/public/application/data_frame_analytics/pages/analytics_creation/page.tsx#:~:text=title)+ 38 more | - |
-| | [configuration_step_details.tsx](https://github.com/elastic/kibana/tree/main/x-pack/plugins/ml/public/application/data_frame_analytics/pages/analytics_creation/components/configuration_step/configuration_step_details.tsx#:~:text=title), [data_loader.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/ml/public/application/datavisualizer/index_based/data_loader/data_loader.ts#:~:text=title), [use_index_data.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/ml/public/application/data_frame_analytics/pages/analytics_creation/hooks/use_index_data.ts#:~:text=title), [use_index_data.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/ml/public/application/data_frame_analytics/pages/analytics_creation/hooks/use_index_data.ts#:~:text=title), [use_index_data.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/ml/public/application/data_frame_analytics/pages/analytics_creation/hooks/use_index_data.ts#:~:text=title), [use_index_data.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/ml/public/application/data_frame_analytics/pages/analytics_creation/hooks/use_index_data.ts#:~:text=title), [configuration_step_form.tsx](https://github.com/elastic/kibana/tree/main/x-pack/plugins/ml/public/application/data_frame_analytics/pages/analytics_creation/components/configuration_step/configuration_step_form.tsx#:~:text=title), [configuration_step_form.tsx](https://github.com/elastic/kibana/tree/main/x-pack/plugins/ml/public/application/data_frame_analytics/pages/analytics_creation/components/configuration_step/configuration_step_form.tsx#:~:text=title), [configuration_step_form.tsx](https://github.com/elastic/kibana/tree/main/x-pack/plugins/ml/public/application/data_frame_analytics/pages/analytics_creation/components/configuration_step/configuration_step_form.tsx#:~:text=title), [page.tsx](https://github.com/elastic/kibana/tree/main/x-pack/plugins/ml/public/application/data_frame_analytics/pages/analytics_creation/page.tsx#:~:text=title)+ 38 more | - |
-| | [configuration_step_details.tsx](https://github.com/elastic/kibana/tree/main/x-pack/plugins/ml/public/application/data_frame_analytics/pages/analytics_creation/components/configuration_step/configuration_step_details.tsx#:~:text=title), [data_loader.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/ml/public/application/datavisualizer/index_based/data_loader/data_loader.ts#:~:text=title), [use_index_data.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/ml/public/application/data_frame_analytics/pages/analytics_creation/hooks/use_index_data.ts#:~:text=title), [use_index_data.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/ml/public/application/data_frame_analytics/pages/analytics_creation/hooks/use_index_data.ts#:~:text=title), [use_index_data.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/ml/public/application/data_frame_analytics/pages/analytics_creation/hooks/use_index_data.ts#:~:text=title), [use_index_data.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/ml/public/application/data_frame_analytics/pages/analytics_creation/hooks/use_index_data.ts#:~:text=title), [configuration_step_form.tsx](https://github.com/elastic/kibana/tree/main/x-pack/plugins/ml/public/application/data_frame_analytics/pages/analytics_creation/components/configuration_step/configuration_step_form.tsx#:~:text=title), [configuration_step_form.tsx](https://github.com/elastic/kibana/tree/main/x-pack/plugins/ml/public/application/data_frame_analytics/pages/analytics_creation/components/configuration_step/configuration_step_form.tsx#:~:text=title), [configuration_step_form.tsx](https://github.com/elastic/kibana/tree/main/x-pack/plugins/ml/public/application/data_frame_analytics/pages/analytics_creation/components/configuration_step/configuration_step_form.tsx#:~:text=title), [page.tsx](https://github.com/elastic/kibana/tree/main/x-pack/plugins/ml/public/application/data_frame_analytics/pages/analytics_creation/page.tsx#:~:text=title)+ 14 more | - |
+| | [register_jobs_monitoring_rule_type.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/ml/server/lib/alerts/register_jobs_monitoring_rule_type.ts#:~:text=alertFactory), [register_jobs_monitoring_rule_type.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/ml/server/lib/alerts/register_jobs_monitoring_rule_type.ts#:~:text=alertFactory) | - |
+| | [index_patterns.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/ml/server/models/data_frame_analytics/index_patterns.ts#:~:text=title), [rollup.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/ml/server/models/job_service/new_job_caps/rollup.ts#:~:text=title), [alerting_service.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/ml/server/lib/alerts/alerting_service.ts#:~:text=title), [data_recognizer.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/ml/server/models/data_recognizer/data_recognizer.ts#:~:text=title), [configuration_step_details.tsx](https://github.com/elastic/kibana/tree/main/x-pack/plugins/ml/public/application/data_frame_analytics/pages/analytics_creation/components/configuration_step/configuration_step_details.tsx#:~:text=title), [data_loader.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/ml/public/application/datavisualizer/index_based/data_loader/data_loader.ts#:~:text=title), [use_index_data.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/ml/public/application/data_frame_analytics/pages/analytics_creation/hooks/use_index_data.ts#:~:text=title), [use_index_data.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/ml/public/application/data_frame_analytics/pages/analytics_creation/hooks/use_index_data.ts#:~:text=title), [use_index_data.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/ml/public/application/data_frame_analytics/pages/analytics_creation/hooks/use_index_data.ts#:~:text=title), [use_index_data.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/ml/public/application/data_frame_analytics/pages/analytics_creation/hooks/use_index_data.ts#:~:text=title)+ 38 more | - |
+| | [index_patterns.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/ml/server/models/data_frame_analytics/index_patterns.ts#:~:text=title), [rollup.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/ml/server/models/job_service/new_job_caps/rollup.ts#:~:text=title), [alerting_service.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/ml/server/lib/alerts/alerting_service.ts#:~:text=title), [data_recognizer.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/ml/server/models/data_recognizer/data_recognizer.ts#:~:text=title), [configuration_step_details.tsx](https://github.com/elastic/kibana/tree/main/x-pack/plugins/ml/public/application/data_frame_analytics/pages/analytics_creation/components/configuration_step/configuration_step_details.tsx#:~:text=title), [data_loader.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/ml/public/application/datavisualizer/index_based/data_loader/data_loader.ts#:~:text=title), [use_index_data.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/ml/public/application/data_frame_analytics/pages/analytics_creation/hooks/use_index_data.ts#:~:text=title), [use_index_data.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/ml/public/application/data_frame_analytics/pages/analytics_creation/hooks/use_index_data.ts#:~:text=title), [use_index_data.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/ml/public/application/data_frame_analytics/pages/analytics_creation/hooks/use_index_data.ts#:~:text=title), [use_index_data.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/ml/public/application/data_frame_analytics/pages/analytics_creation/hooks/use_index_data.ts#:~:text=title)+ 38 more | - |
+| | [index_patterns.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/ml/server/models/data_frame_analytics/index_patterns.ts#:~:text=title), [rollup.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/ml/server/models/job_service/new_job_caps/rollup.ts#:~:text=title), [alerting_service.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/ml/server/lib/alerts/alerting_service.ts#:~:text=title), [data_recognizer.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/ml/server/models/data_recognizer/data_recognizer.ts#:~:text=title), [configuration_step_details.tsx](https://github.com/elastic/kibana/tree/main/x-pack/plugins/ml/public/application/data_frame_analytics/pages/analytics_creation/components/configuration_step/configuration_step_details.tsx#:~:text=title), [data_loader.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/ml/public/application/datavisualizer/index_based/data_loader/data_loader.ts#:~:text=title), [use_index_data.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/ml/public/application/data_frame_analytics/pages/analytics_creation/hooks/use_index_data.ts#:~:text=title), [use_index_data.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/ml/public/application/data_frame_analytics/pages/analytics_creation/hooks/use_index_data.ts#:~:text=title), [use_index_data.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/ml/public/application/data_frame_analytics/pages/analytics_creation/hooks/use_index_data.ts#:~:text=title), [use_index_data.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/ml/public/application/data_frame_analytics/pages/analytics_creation/hooks/use_index_data.ts#:~:text=title)+ 14 more | - |
| | [jobs_list_page.tsx](https://github.com/elastic/kibana/tree/main/x-pack/plugins/ml/public/application/management/jobs_list/components/jobs_list_page/jobs_list_page.tsx#:~:text=RedirectAppLinks), [jobs_list_page.tsx](https://github.com/elastic/kibana/tree/main/x-pack/plugins/ml/public/application/management/jobs_list/components/jobs_list_page/jobs_list_page.tsx#:~:text=RedirectAppLinks), [jobs_list_page.tsx](https://github.com/elastic/kibana/tree/main/x-pack/plugins/ml/public/application/management/jobs_list/components/jobs_list_page/jobs_list_page.tsx#:~:text=RedirectAppLinks) | - |
| | [anomaly_charts_embeddable.tsx](https://github.com/elastic/kibana/tree/main/x-pack/plugins/ml/public/embeddables/anomaly_charts/anomaly_charts_embeddable.tsx#:~:text=KibanaThemeProvider), [anomaly_charts_embeddable.tsx](https://github.com/elastic/kibana/tree/main/x-pack/plugins/ml/public/embeddables/anomaly_charts/anomaly_charts_embeddable.tsx#:~:text=KibanaThemeProvider), [anomaly_charts_embeddable.tsx](https://github.com/elastic/kibana/tree/main/x-pack/plugins/ml/public/embeddables/anomaly_charts/anomaly_charts_embeddable.tsx#:~:text=KibanaThemeProvider), [anomaly_swimlane_embeddable.tsx](https://github.com/elastic/kibana/tree/main/x-pack/plugins/ml/public/embeddables/anomaly_swimlane/anomaly_swimlane_embeddable.tsx#:~:text=KibanaThemeProvider), [anomaly_swimlane_embeddable.tsx](https://github.com/elastic/kibana/tree/main/x-pack/plugins/ml/public/embeddables/anomaly_swimlane/anomaly_swimlane_embeddable.tsx#:~:text=KibanaThemeProvider), [anomaly_swimlane_embeddable.tsx](https://github.com/elastic/kibana/tree/main/x-pack/plugins/ml/public/embeddables/anomaly_swimlane/anomaly_swimlane_embeddable.tsx#:~:text=KibanaThemeProvider), [app.tsx](https://github.com/elastic/kibana/tree/main/x-pack/plugins/ml/public/application/app.tsx#:~:text=KibanaThemeProvider), [app.tsx](https://github.com/elastic/kibana/tree/main/x-pack/plugins/ml/public/application/app.tsx#:~:text=KibanaThemeProvider), [app.tsx](https://github.com/elastic/kibana/tree/main/x-pack/plugins/ml/public/application/app.tsx#:~:text=KibanaThemeProvider), [jobs_list_page.tsx](https://github.com/elastic/kibana/tree/main/x-pack/plugins/ml/public/application/management/jobs_list/components/jobs_list_page/jobs_list_page.tsx#:~:text=KibanaThemeProvider)+ 2 more | - |
| | [plugin.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/ml/public/plugin.ts#:~:text=license%24) | 8.8.0 |
@@ -1233,7 +1233,6 @@ tags: ['contributor', 'dev', 'apidocs', 'kibana']
| | [use_metrics_explorer_data.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/observability/public/components/custom_threshold/hooks/use_metrics_explorer_data.ts#:~:text=title), [use_metrics_explorer_data.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/observability/public/components/custom_threshold/hooks/use_metrics_explorer_data.ts#:~:text=title), [use_metrics_explorer_data.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/observability/public/components/custom_threshold/hooks/use_metrics_explorer_data.ts#:~:text=title), [use_metrics_explorer_data.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/observability/public/components/custom_threshold/hooks/use_metrics_explorer_data.ts#:~:text=title), [custom_threshold_rule_expression.tsx](https://github.com/elastic/kibana/tree/main/x-pack/plugins/observability/public/components/custom_threshold/custom_threshold_rule_expression.tsx#:~:text=title), [alert_details_app_section.tsx](https://github.com/elastic/kibana/tree/main/x-pack/plugins/observability/public/components/custom_threshold/components/alert_details_app_section.tsx#:~:text=title), [use_metrics_explorer_data.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/observability/public/components/custom_threshold/hooks/use_metrics_explorer_data.ts#:~:text=title), [use_metrics_explorer_data.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/observability/public/components/custom_threshold/hooks/use_metrics_explorer_data.ts#:~:text=title), [use_metrics_explorer_data.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/observability/public/components/custom_threshold/hooks/use_metrics_explorer_data.ts#:~:text=title), [use_metrics_explorer_data.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/observability/public/components/custom_threshold/hooks/use_metrics_explorer_data.ts#:~:text=title)+ 2 more | - |
| | [use_metrics_explorer_data.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/observability/public/components/custom_threshold/hooks/use_metrics_explorer_data.ts#:~:text=title), [use_metrics_explorer_data.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/observability/public/components/custom_threshold/hooks/use_metrics_explorer_data.ts#:~:text=title), [use_metrics_explorer_data.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/observability/public/components/custom_threshold/hooks/use_metrics_explorer_data.ts#:~:text=title), [use_metrics_explorer_data.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/observability/public/components/custom_threshold/hooks/use_metrics_explorer_data.ts#:~:text=title), [custom_threshold_rule_expression.tsx](https://github.com/elastic/kibana/tree/main/x-pack/plugins/observability/public/components/custom_threshold/custom_threshold_rule_expression.tsx#:~:text=title), [alert_details_app_section.tsx](https://github.com/elastic/kibana/tree/main/x-pack/plugins/observability/public/components/custom_threshold/components/alert_details_app_section.tsx#:~:text=title), [use_metrics_explorer_data.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/observability/public/components/custom_threshold/hooks/use_metrics_explorer_data.ts#:~:text=title), [use_metrics_explorer_data.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/observability/public/components/custom_threshold/hooks/use_metrics_explorer_data.ts#:~:text=title), [use_metrics_explorer_data.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/observability/public/components/custom_threshold/hooks/use_metrics_explorer_data.ts#:~:text=title), [use_metrics_explorer_data.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/observability/public/components/custom_threshold/hooks/use_metrics_explorer_data.ts#:~:text=title)+ 2 more | - |
| | [use_metrics_explorer_data.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/observability/public/components/custom_threshold/hooks/use_metrics_explorer_data.ts#:~:text=title), [use_metrics_explorer_data.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/observability/public/components/custom_threshold/hooks/use_metrics_explorer_data.ts#:~:text=title), [use_metrics_explorer_data.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/observability/public/components/custom_threshold/hooks/use_metrics_explorer_data.ts#:~:text=title), [use_metrics_explorer_data.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/observability/public/components/custom_threshold/hooks/use_metrics_explorer_data.ts#:~:text=title), [custom_threshold_rule_expression.tsx](https://github.com/elastic/kibana/tree/main/x-pack/plugins/observability/public/components/custom_threshold/custom_threshold_rule_expression.tsx#:~:text=title), [alert_details_app_section.tsx](https://github.com/elastic/kibana/tree/main/x-pack/plugins/observability/public/components/custom_threshold/components/alert_details_app_section.tsx#:~:text=title) | - |
-| | [header_menu_portal.tsx](https://github.com/elastic/kibana/tree/main/x-pack/plugins/observability/public/pages/overview/components/header_menu/header_menu_portal.tsx#:~:text=toMountPoint), [header_menu_portal.tsx](https://github.com/elastic/kibana/tree/main/x-pack/plugins/observability/public/pages/overview/components/header_menu/header_menu_portal.tsx#:~:text=toMountPoint) | - |
| | [index.tsx](https://github.com/elastic/kibana/tree/main/x-pack/plugins/observability/public/application/index.tsx#:~:text=RedirectAppLinks), [index.tsx](https://github.com/elastic/kibana/tree/main/x-pack/plugins/observability/public/application/index.tsx#:~:text=RedirectAppLinks), [index.tsx](https://github.com/elastic/kibana/tree/main/x-pack/plugins/observability/public/application/index.tsx#:~:text=RedirectAppLinks) | - |
| | [render_cell_value.tsx](https://github.com/elastic/kibana/tree/main/x-pack/plugins/observability/public/components/alerts_table/render_cell_value.tsx#:~:text=DeprecatedCellValueElementProps), [render_cell_value.tsx](https://github.com/elastic/kibana/tree/main/x-pack/plugins/observability/public/components/alerts_table/render_cell_value.tsx#:~:text=DeprecatedCellValueElementProps) | - |
@@ -1386,8 +1385,8 @@ tags: ['contributor', 'dev', 'apidocs', 'kibana']
| | [open_modal.tsx](https://github.com/elastic/kibana/tree/main/x-pack/plugins/saved_objects_tagging/public/components/edition_modal/open_modal.tsx#:~:text=toMountPoint), [open_modal.tsx](https://github.com/elastic/kibana/tree/main/x-pack/plugins/saved_objects_tagging/public/components/edition_modal/open_modal.tsx#:~:text=toMountPoint), [open_modal.tsx](https://github.com/elastic/kibana/tree/main/x-pack/plugins/saved_objects_tagging/public/components/edition_modal/open_modal.tsx#:~:text=toMountPoint), [open_assign_flyout.tsx](https://github.com/elastic/kibana/tree/main/x-pack/plugins/saved_objects_tagging/public/components/assign_flyout/open_assign_flyout.tsx#:~:text=toMountPoint), [open_assign_flyout.tsx](https://github.com/elastic/kibana/tree/main/x-pack/plugins/saved_objects_tagging/public/components/assign_flyout/open_assign_flyout.tsx#:~:text=toMountPoint) | - |
| | [mount_section.tsx](https://github.com/elastic/kibana/tree/main/x-pack/plugins/saved_objects_tagging/public/management/mount_section.tsx#:~:text=KibanaThemeProvider), [mount_section.tsx](https://github.com/elastic/kibana/tree/main/x-pack/plugins/saved_objects_tagging/public/management/mount_section.tsx#:~:text=KibanaThemeProvider), [mount_section.tsx](https://github.com/elastic/kibana/tree/main/x-pack/plugins/saved_objects_tagging/public/management/mount_section.tsx#:~:text=KibanaThemeProvider) | - |
| | [request_handler_context.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/saved_objects_tagging/server/request_handler_context.ts#:~:text=authz) | - |
-| | [types.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/saved_objects_tagging/common/types.ts#:~:text=SavedObject), [types.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/saved_objects_tagging/common/types.ts#:~:text=SavedObject), [utils.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/saved_objects_tagging/public/utils.ts#:~:text=SavedObject), [utils.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/saved_objects_tagging/public/utils.ts#:~:text=SavedObject), [utils.test.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/saved_objects_tagging/public/utils.test.ts#:~:text=SavedObject), [utils.test.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/saved_objects_tagging/public/utils.test.ts#:~:text=SavedObject), [utils.test.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/saved_objects_tagging/public/utils.test.ts#:~:text=SavedObject), [index.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/saved_objects_tagging/common/test_utils/index.ts#:~:text=SavedObject), [index.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/saved_objects_tagging/common/test_utils/index.ts#:~:text=SavedObject), [index.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/saved_objects_tagging/common/test_utils/index.ts#:~:text=SavedObject)+ 3 more | - |
-| | [references.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/saved_objects_tagging/common/references.ts#:~:text=SavedObjectReference), [references.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/saved_objects_tagging/common/references.ts#:~:text=SavedObjectReference), [references.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/saved_objects_tagging/common/references.ts#:~:text=SavedObjectReference), [references.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/saved_objects_tagging/common/references.ts#:~:text=SavedObjectReference), [references.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/saved_objects_tagging/common/references.ts#:~:text=SavedObjectReference), [references.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/saved_objects_tagging/common/references.ts#:~:text=SavedObjectReference), [utils.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/saved_objects_tagging/public/utils.ts#:~:text=SavedObjectReference), [utils.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/saved_objects_tagging/public/utils.ts#:~:text=SavedObjectReference), [utils.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/saved_objects_tagging/public/utils.ts#:~:text=SavedObjectReference), [utils.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/saved_objects_tagging/public/utils.ts#:~:text=SavedObjectReference)+ 11 more | - |
+| | [get_table_column_definition.tsx](https://github.com/elastic/kibana/tree/main/x-pack/plugins/saved_objects_tagging/public/ui_api/get_table_column_definition.tsx#:~:text=SavedObject), [get_table_column_definition.tsx](https://github.com/elastic/kibana/tree/main/x-pack/plugins/saved_objects_tagging/public/ui_api/get_table_column_definition.tsx#:~:text=SavedObject), [get_table_column_definition.tsx](https://github.com/elastic/kibana/tree/main/x-pack/plugins/saved_objects_tagging/public/ui_api/get_table_column_definition.tsx#:~:text=SavedObject), [types.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/saved_objects_tagging/common/types.ts#:~:text=SavedObject), [types.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/saved_objects_tagging/common/types.ts#:~:text=SavedObject), [utils.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/saved_objects_tagging/public/utils.ts#:~:text=SavedObject), [utils.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/saved_objects_tagging/public/utils.ts#:~:text=SavedObject), [utils.test.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/saved_objects_tagging/public/utils.test.ts#:~:text=SavedObject), [utils.test.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/saved_objects_tagging/public/utils.test.ts#:~:text=SavedObject), [utils.test.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/saved_objects_tagging/public/utils.test.ts#:~:text=SavedObject)+ 3 more | - |
+| | [get_table_column_definition.tsx](https://github.com/elastic/kibana/tree/main/x-pack/plugins/saved_objects_tagging/public/ui_api/get_table_column_definition.tsx#:~:text=SavedObjectReference), [get_table_column_definition.tsx](https://github.com/elastic/kibana/tree/main/x-pack/plugins/saved_objects_tagging/public/ui_api/get_table_column_definition.tsx#:~:text=SavedObjectReference), [references.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/saved_objects_tagging/common/references.ts#:~:text=SavedObjectReference), [references.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/saved_objects_tagging/common/references.ts#:~:text=SavedObjectReference), [references.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/saved_objects_tagging/common/references.ts#:~:text=SavedObjectReference), [references.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/saved_objects_tagging/common/references.ts#:~:text=SavedObjectReference), [references.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/saved_objects_tagging/common/references.ts#:~:text=SavedObjectReference), [references.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/saved_objects_tagging/common/references.ts#:~:text=SavedObjectReference), [utils.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/saved_objects_tagging/public/utils.ts#:~:text=SavedObjectReference), [utils.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/saved_objects_tagging/public/utils.ts#:~:text=SavedObjectReference)+ 11 more | - |
| | [tag.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/saved_objects_tagging/server/saved_objects/tag.ts#:~:text=convertToMultiNamespaceTypeVersion) | - |
@@ -1398,7 +1397,7 @@ tags: ['contributor', 'dev', 'apidocs', 'kibana']
| ---------------|-----------|-----------|
| | [api.ts](https://github.com/elastic/kibana/tree/main/src/plugins/saved_objects_tagging_oss/public/api.ts#:~:text=SavedObject), [types.ts](https://github.com/elastic/kibana/tree/main/src/plugins/saved_objects_tagging_oss/public/decorator/types.ts#:~:text=SavedObject), [types.ts](https://github.com/elastic/kibana/tree/main/src/plugins/saved_objects_tagging_oss/public/decorator/types.ts#:~:text=SavedObject), [api.ts](https://github.com/elastic/kibana/tree/main/src/plugins/saved_objects_tagging_oss/public/api.ts#:~:text=SavedObject), [api.ts](https://github.com/elastic/kibana/tree/main/src/plugins/saved_objects_tagging_oss/public/api.ts#:~:text=SavedObject) | 8.8.0 |
| | [api.ts](https://github.com/elastic/kibana/tree/main/src/plugins/saved_objects_tagging_oss/public/api.ts#:~:text=SavedObject), [api.ts](https://github.com/elastic/kibana/tree/main/src/plugins/saved_objects_tagging_oss/public/api.ts#:~:text=SavedObject), [api.ts](https://github.com/elastic/kibana/tree/main/src/plugins/saved_objects_tagging_oss/public/api.ts#:~:text=SavedObject) | - |
-| | [api.ts](https://github.com/elastic/kibana/tree/main/src/plugins/saved_objects_tagging_oss/public/api.ts#:~:text=SavedObjectReference), [api.ts](https://github.com/elastic/kibana/tree/main/src/plugins/saved_objects_tagging_oss/public/api.ts#:~:text=SavedObjectReference), [api.ts](https://github.com/elastic/kibana/tree/main/src/plugins/saved_objects_tagging_oss/public/api.ts#:~:text=SavedObjectReference), [api.ts](https://github.com/elastic/kibana/tree/main/src/plugins/saved_objects_tagging_oss/public/api.ts#:~:text=SavedObjectReference), [extract_tag_references.test.ts](https://github.com/elastic/kibana/tree/main/src/plugins/saved_objects_tagging_oss/public/decorator/extract_tag_references.test.ts#:~:text=SavedObjectReference), [extract_tag_references.test.ts](https://github.com/elastic/kibana/tree/main/src/plugins/saved_objects_tagging_oss/public/decorator/extract_tag_references.test.ts#:~:text=SavedObjectReference), [extract_tag_references.test.ts](https://github.com/elastic/kibana/tree/main/src/plugins/saved_objects_tagging_oss/public/decorator/extract_tag_references.test.ts#:~:text=SavedObjectReference), [extract_tag_references.test.ts](https://github.com/elastic/kibana/tree/main/src/plugins/saved_objects_tagging_oss/public/decorator/extract_tag_references.test.ts#:~:text=SavedObjectReference), [extract_tag_references.test.ts](https://github.com/elastic/kibana/tree/main/src/plugins/saved_objects_tagging_oss/public/decorator/extract_tag_references.test.ts#:~:text=SavedObjectReference), [extract_tag_references.test.ts](https://github.com/elastic/kibana/tree/main/src/plugins/saved_objects_tagging_oss/public/decorator/extract_tag_references.test.ts#:~:text=SavedObjectReference)+ 2 more | - |
+| | [extract_tag_references.test.ts](https://github.com/elastic/kibana/tree/main/src/plugins/saved_objects_tagging_oss/public/decorator/extract_tag_references.test.ts#:~:text=SavedObjectReference), [extract_tag_references.test.ts](https://github.com/elastic/kibana/tree/main/src/plugins/saved_objects_tagging_oss/public/decorator/extract_tag_references.test.ts#:~:text=SavedObjectReference), [extract_tag_references.test.ts](https://github.com/elastic/kibana/tree/main/src/plugins/saved_objects_tagging_oss/public/decorator/extract_tag_references.test.ts#:~:text=SavedObjectReference), [extract_tag_references.test.ts](https://github.com/elastic/kibana/tree/main/src/plugins/saved_objects_tagging_oss/public/decorator/extract_tag_references.test.ts#:~:text=SavedObjectReference), [extract_tag_references.test.ts](https://github.com/elastic/kibana/tree/main/src/plugins/saved_objects_tagging_oss/public/decorator/extract_tag_references.test.ts#:~:text=SavedObjectReference), [extract_tag_references.test.ts](https://github.com/elastic/kibana/tree/main/src/plugins/saved_objects_tagging_oss/public/decorator/extract_tag_references.test.ts#:~:text=SavedObjectReference), [inject_tag_references.test.ts](https://github.com/elastic/kibana/tree/main/src/plugins/saved_objects_tagging_oss/public/decorator/inject_tag_references.test.ts#:~:text=SavedObjectReference), [inject_tag_references.test.ts](https://github.com/elastic/kibana/tree/main/src/plugins/saved_objects_tagging_oss/public/decorator/inject_tag_references.test.ts#:~:text=SavedObjectReference), [api.ts](https://github.com/elastic/kibana/tree/main/src/plugins/saved_objects_tagging_oss/public/api.ts#:~:text=SavedObjectReference), [api.ts](https://github.com/elastic/kibana/tree/main/src/plugins/saved_objects_tagging_oss/public/api.ts#:~:text=SavedObjectReference)+ 2 more | - |
@@ -1796,7 +1795,7 @@ migrates to using the Kibana Privilege model: https://github.com/elastic/kibana/
| | [services.ts](https://github.com/elastic/kibana/tree/main/src/plugins/visualizations/public/services.ts#:~:text=SavedObjectsStart), [services.ts](https://github.com/elastic/kibana/tree/main/src/plugins/visualizations/public/services.ts#:~:text=SavedObjectsStart) | - |
| | [saved_visualization_references.ts](https://github.com/elastic/kibana/tree/main/src/plugins/visualizations/public/utils/saved_visualization_references/saved_visualization_references.ts#:~:text=SavedObjectAttribute), [saved_visualization_references.ts](https://github.com/elastic/kibana/tree/main/src/plugins/visualizations/public/utils/saved_visualization_references/saved_visualization_references.ts#:~:text=SavedObjectAttribute) | - |
| | [saved_visualize_utils.ts](https://github.com/elastic/kibana/tree/main/src/plugins/visualizations/public/utils/saved_visualize_utils.ts#:~:text=SavedObjectAttributes), [saved_visualize_utils.ts](https://github.com/elastic/kibana/tree/main/src/plugins/visualizations/public/utils/saved_visualize_utils.ts#:~:text=SavedObjectAttributes), [visualize_embeddable.tsx](https://github.com/elastic/kibana/tree/main/src/plugins/visualizations/public/embeddable/visualize_embeddable.tsx#:~:text=SavedObjectAttributes), [visualize_embeddable.tsx](https://github.com/elastic/kibana/tree/main/src/plugins/visualizations/public/embeddable/visualize_embeddable.tsx#:~:text=SavedObjectAttributes), [visualize_embeddable_factory.tsx](https://github.com/elastic/kibana/tree/main/src/plugins/visualizations/public/embeddable/visualize_embeddable_factory.tsx#:~:text=SavedObjectAttributes), [visualize_embeddable_factory.tsx](https://github.com/elastic/kibana/tree/main/src/plugins/visualizations/public/embeddable/visualize_embeddable_factory.tsx#:~:text=SavedObjectAttributes) | - |
-| | [controls_references.ts](https://github.com/elastic/kibana/tree/main/src/plugins/visualizations/public/utils/saved_visualization_references/controls_references.ts#:~:text=SavedObjectReference), [controls_references.ts](https://github.com/elastic/kibana/tree/main/src/plugins/visualizations/public/utils/saved_visualization_references/controls_references.ts#:~:text=SavedObjectReference), [controls_references.ts](https://github.com/elastic/kibana/tree/main/src/plugins/visualizations/public/utils/saved_visualization_references/controls_references.ts#:~:text=SavedObjectReference), [timeseries_references.ts](https://github.com/elastic/kibana/tree/main/src/plugins/visualizations/public/utils/saved_visualization_references/timeseries_references.ts#:~:text=SavedObjectReference), [timeseries_references.ts](https://github.com/elastic/kibana/tree/main/src/plugins/visualizations/public/utils/saved_visualization_references/timeseries_references.ts#:~:text=SavedObjectReference), [timeseries_references.ts](https://github.com/elastic/kibana/tree/main/src/plugins/visualizations/public/utils/saved_visualization_references/timeseries_references.ts#:~:text=SavedObjectReference), [saved_visualization_references.ts](https://github.com/elastic/kibana/tree/main/src/plugins/visualizations/public/utils/saved_visualization_references/saved_visualization_references.ts#:~:text=SavedObjectReference), [saved_visualization_references.ts](https://github.com/elastic/kibana/tree/main/src/plugins/visualizations/public/utils/saved_visualization_references/saved_visualization_references.ts#:~:text=SavedObjectReference), [saved_visualization_references.ts](https://github.com/elastic/kibana/tree/main/src/plugins/visualizations/public/utils/saved_visualization_references/saved_visualization_references.ts#:~:text=SavedObjectReference), [saved_visualize_utils.ts](https://github.com/elastic/kibana/tree/main/src/plugins/visualizations/public/utils/saved_visualize_utils.ts#:~:text=SavedObjectReference)+ 10 more | - |
+| | [saved_visualization_references.ts](https://github.com/elastic/kibana/tree/main/src/plugins/visualizations/public/utils/saved_visualization_references/saved_visualization_references.ts#:~:text=SavedObjectReference), [saved_visualization_references.ts](https://github.com/elastic/kibana/tree/main/src/plugins/visualizations/public/utils/saved_visualization_references/saved_visualization_references.ts#:~:text=SavedObjectReference), [saved_visualization_references.ts](https://github.com/elastic/kibana/tree/main/src/plugins/visualizations/public/utils/saved_visualization_references/saved_visualization_references.ts#:~:text=SavedObjectReference), [saved_visualize_utils.ts](https://github.com/elastic/kibana/tree/main/src/plugins/visualizations/public/utils/saved_visualize_utils.ts#:~:text=SavedObjectReference), [saved_visualize_utils.ts](https://github.com/elastic/kibana/tree/main/src/plugins/visualizations/public/utils/saved_visualize_utils.ts#:~:text=SavedObjectReference), [saved_visualize_utils.ts](https://github.com/elastic/kibana/tree/main/src/plugins/visualizations/public/utils/saved_visualize_utils.ts#:~:text=SavedObjectReference), [saved_visualize_utils.ts](https://github.com/elastic/kibana/tree/main/src/plugins/visualizations/public/utils/saved_visualize_utils.ts#:~:text=SavedObjectReference), [saved_visualize_utils.ts](https://github.com/elastic/kibana/tree/main/src/plugins/visualizations/public/utils/saved_visualize_utils.ts#:~:text=SavedObjectReference), [saved_visualize_utils.ts](https://github.com/elastic/kibana/tree/main/src/plugins/visualizations/public/utils/saved_visualize_utils.ts#:~:text=SavedObjectReference), [visualize_embeddable_factory.tsx](https://github.com/elastic/kibana/tree/main/src/plugins/visualizations/public/embeddable/visualize_embeddable_factory.tsx#:~:text=SavedObjectReference)+ 10 more | - |
| | [visualization.ts](https://github.com/elastic/kibana/tree/main/src/plugins/visualizations/server/saved_objects/visualization.ts#:~:text=convertToMultiNamespaceTypeVersion) | - |
diff --git a/api_docs/deprecations_by_team.mdx b/api_docs/deprecations_by_team.mdx
index d054cf4f50421..365da0975aedb 100644
--- a/api_docs/deprecations_by_team.mdx
+++ b/api_docs/deprecations_by_team.mdx
@@ -7,7 +7,7 @@ id: kibDevDocsDeprecationsDueByTeam
slug: /kibana-dev-docs/api-meta/deprecations-due-by-team
title: Deprecated APIs due to be removed, by team
description: Lists the teams that are referencing deprecated APIs with a remove by date.
-date: 2023-09-28
+date: 2023-09-29
tags: ['contributor', 'dev', 'apidocs', 'kibana']
---
diff --git a/api_docs/dev_tools.mdx b/api_docs/dev_tools.mdx
index 681d6ea6ee0f8..6421ce1e3794d 100644
--- a/api_docs/dev_tools.mdx
+++ b/api_docs/dev_tools.mdx
@@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/devTools
title: "devTools"
image: https://source.unsplash.com/400x175/?github
description: API docs for the devTools plugin
-date: 2023-09-28
+date: 2023-09-29
tags: ['contributor', 'dev', 'apidocs', 'kibana', 'devTools']
---
import devToolsObj from './dev_tools.devdocs.json';
diff --git a/api_docs/discover.devdocs.json b/api_docs/discover.devdocs.json
index 953ad5b563cf6..f9574171a342d 100644
--- a/api_docs/discover.devdocs.json
+++ b/api_docs/discover.devdocs.json
@@ -567,6 +567,22 @@
"deprecated": false,
"trackAdoption": false,
"children": [
+ {
+ "parentPluginId": "discover",
+ "id": "def-public.DiscoverStateContainer.globalState",
+ "type": "Object",
+ "tags": [],
+ "label": "globalState",
+ "description": [
+ "\nGlobal State, the _g part of the URL"
+ ],
+ "signature": [
+ "DiscoverGlobalStateContainer"
+ ],
+ "path": "src/plugins/discover/public/application/main/services/discover_state.ts",
+ "deprecated": false,
+ "trackAdoption": false
+ },
{
"parentPluginId": "discover",
"id": "def-public.DiscoverStateContainer.appState",
@@ -2000,14 +2016,6 @@
"deprecated": true,
"trackAdoption": false,
"references": [
- {
- "plugin": "dataVisualizer",
- "path": "x-pack/plugins/data_visualizer/public/application/common/components/results_links/results_links.tsx"
- },
- {
- "plugin": "dataVisualizer",
- "path": "x-pack/plugins/data_visualizer/public/application/index_data_visualizer/components/actions_panel/actions_panel.tsx"
- },
{
"plugin": "exploratoryView",
"path": "x-pack/plugins/exploratory_view/public/components/shared/exploratory_view/hooks/use_discover_link.tsx"
@@ -2016,6 +2024,14 @@
"plugin": "fleet",
"path": "x-pack/plugins/fleet/public/applications/fleet/sections/agent_policy/create_package_policy_page/multi_page_layout/hooks/use_get_logs_discover_link.tsx"
},
+ {
+ "plugin": "dataVisualizer",
+ "path": "x-pack/plugins/data_visualizer/public/application/common/components/results_links/results_links.tsx"
+ },
+ {
+ "plugin": "dataVisualizer",
+ "path": "x-pack/plugins/data_visualizer/public/application/index_data_visualizer/components/actions_panel/actions_panel.tsx"
+ },
{
"plugin": "cloudSecurityPosture",
"path": "x-pack/plugins/cloud_security_posture/public/pages/configurations/findings_flyout/overview_tab.tsx"
diff --git a/api_docs/discover.mdx b/api_docs/discover.mdx
index 7e4613c8b526e..153155617895f 100644
--- a/api_docs/discover.mdx
+++ b/api_docs/discover.mdx
@@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/discover
title: "discover"
image: https://source.unsplash.com/400x175/?github
description: API docs for the discover plugin
-date: 2023-09-28
+date: 2023-09-29
tags: ['contributor', 'dev', 'apidocs', 'kibana', 'discover']
---
import discoverObj from './discover.devdocs.json';
@@ -21,7 +21,7 @@ Contact [@elastic/kibana-data-discovery](https://github.com/orgs/elastic/teams/k
| Public API count | Any count | Items lacking comments | Missing exports |
|-------------------|-----------|------------------------|-----------------|
-| 116 | 0 | 75 | 17 |
+| 117 | 0 | 75 | 18 |
## Client
diff --git a/api_docs/discover_enhanced.mdx b/api_docs/discover_enhanced.mdx
index 2662254790013..4d8065a31a4ed 100644
--- a/api_docs/discover_enhanced.mdx
+++ b/api_docs/discover_enhanced.mdx
@@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/discoverEnhanced
title: "discoverEnhanced"
image: https://source.unsplash.com/400x175/?github
description: API docs for the discoverEnhanced plugin
-date: 2023-09-28
+date: 2023-09-29
tags: ['contributor', 'dev', 'apidocs', 'kibana', 'discoverEnhanced']
---
import discoverEnhancedObj from './discover_enhanced.devdocs.json';
diff --git a/api_docs/ecs_data_quality_dashboard.mdx b/api_docs/ecs_data_quality_dashboard.mdx
index 2952cedf21aac..f53a9080e6eb6 100644
--- a/api_docs/ecs_data_quality_dashboard.mdx
+++ b/api_docs/ecs_data_quality_dashboard.mdx
@@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/ecsDataQualityDashboard
title: "ecsDataQualityDashboard"
image: https://source.unsplash.com/400x175/?github
description: API docs for the ecsDataQualityDashboard plugin
-date: 2023-09-28
+date: 2023-09-29
tags: ['contributor', 'dev', 'apidocs', 'kibana', 'ecsDataQualityDashboard']
---
import ecsDataQualityDashboardObj from './ecs_data_quality_dashboard.devdocs.json';
diff --git a/api_docs/elastic_assistant.mdx b/api_docs/elastic_assistant.mdx
index b44b2760277af..bbecc0e86e012 100644
--- a/api_docs/elastic_assistant.mdx
+++ b/api_docs/elastic_assistant.mdx
@@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/elasticAssistant
title: "elasticAssistant"
image: https://source.unsplash.com/400x175/?github
description: API docs for the elasticAssistant plugin
-date: 2023-09-28
+date: 2023-09-29
tags: ['contributor', 'dev', 'apidocs', 'kibana', 'elasticAssistant']
---
import elasticAssistantObj from './elastic_assistant.devdocs.json';
diff --git a/api_docs/embeddable.mdx b/api_docs/embeddable.mdx
index 389b472c14882..0c898c8a44361 100644
--- a/api_docs/embeddable.mdx
+++ b/api_docs/embeddable.mdx
@@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/embeddable
title: "embeddable"
image: https://source.unsplash.com/400x175/?github
description: API docs for the embeddable plugin
-date: 2023-09-28
+date: 2023-09-29
tags: ['contributor', 'dev', 'apidocs', 'kibana', 'embeddable']
---
import embeddableObj from './embeddable.devdocs.json';
diff --git a/api_docs/embeddable_enhanced.mdx b/api_docs/embeddable_enhanced.mdx
index 802133f6f3c4d..04b3bcc44120f 100644
--- a/api_docs/embeddable_enhanced.mdx
+++ b/api_docs/embeddable_enhanced.mdx
@@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/embeddableEnhanced
title: "embeddableEnhanced"
image: https://source.unsplash.com/400x175/?github
description: API docs for the embeddableEnhanced plugin
-date: 2023-09-28
+date: 2023-09-29
tags: ['contributor', 'dev', 'apidocs', 'kibana', 'embeddableEnhanced']
---
import embeddableEnhancedObj from './embeddable_enhanced.devdocs.json';
diff --git a/api_docs/encrypted_saved_objects.mdx b/api_docs/encrypted_saved_objects.mdx
index 1d63bf970b425..17a1a19e3f746 100644
--- a/api_docs/encrypted_saved_objects.mdx
+++ b/api_docs/encrypted_saved_objects.mdx
@@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/encryptedSavedObjects
title: "encryptedSavedObjects"
image: https://source.unsplash.com/400x175/?github
description: API docs for the encryptedSavedObjects plugin
-date: 2023-09-28
+date: 2023-09-29
tags: ['contributor', 'dev', 'apidocs', 'kibana', 'encryptedSavedObjects']
---
import encryptedSavedObjectsObj from './encrypted_saved_objects.devdocs.json';
diff --git a/api_docs/enterprise_search.mdx b/api_docs/enterprise_search.mdx
index e591dad53c18e..6c9106768cfa3 100644
--- a/api_docs/enterprise_search.mdx
+++ b/api_docs/enterprise_search.mdx
@@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/enterpriseSearch
title: "enterpriseSearch"
image: https://source.unsplash.com/400x175/?github
description: API docs for the enterpriseSearch plugin
-date: 2023-09-28
+date: 2023-09-29
tags: ['contributor', 'dev', 'apidocs', 'kibana', 'enterpriseSearch']
---
import enterpriseSearchObj from './enterprise_search.devdocs.json';
diff --git a/api_docs/es_ui_shared.mdx b/api_docs/es_ui_shared.mdx
index 96da6af418e4a..2ea7d1aa2cb99 100644
--- a/api_docs/es_ui_shared.mdx
+++ b/api_docs/es_ui_shared.mdx
@@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/esUiShared
title: "esUiShared"
image: https://source.unsplash.com/400x175/?github
description: API docs for the esUiShared plugin
-date: 2023-09-28
+date: 2023-09-29
tags: ['contributor', 'dev', 'apidocs', 'kibana', 'esUiShared']
---
import esUiSharedObj from './es_ui_shared.devdocs.json';
diff --git a/api_docs/event_annotation.mdx b/api_docs/event_annotation.mdx
index dc4606d5d2d4f..ba3a8c7c66d0f 100644
--- a/api_docs/event_annotation.mdx
+++ b/api_docs/event_annotation.mdx
@@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/eventAnnotation
title: "eventAnnotation"
image: https://source.unsplash.com/400x175/?github
description: API docs for the eventAnnotation plugin
-date: 2023-09-28
+date: 2023-09-29
tags: ['contributor', 'dev', 'apidocs', 'kibana', 'eventAnnotation']
---
import eventAnnotationObj from './event_annotation.devdocs.json';
diff --git a/api_docs/event_annotation_listing.mdx b/api_docs/event_annotation_listing.mdx
index 0707c1b1383a7..e5c5001cafeeb 100644
--- a/api_docs/event_annotation_listing.mdx
+++ b/api_docs/event_annotation_listing.mdx
@@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/eventAnnotationListing
title: "eventAnnotationListing"
image: https://source.unsplash.com/400x175/?github
description: API docs for the eventAnnotationListing plugin
-date: 2023-09-28
+date: 2023-09-29
tags: ['contributor', 'dev', 'apidocs', 'kibana', 'eventAnnotationListing']
---
import eventAnnotationListingObj from './event_annotation_listing.devdocs.json';
diff --git a/api_docs/event_log.mdx b/api_docs/event_log.mdx
index e2af544c6e6b5..6f2f1da578d8a 100644
--- a/api_docs/event_log.mdx
+++ b/api_docs/event_log.mdx
@@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/eventLog
title: "eventLog"
image: https://source.unsplash.com/400x175/?github
description: API docs for the eventLog plugin
-date: 2023-09-28
+date: 2023-09-29
tags: ['contributor', 'dev', 'apidocs', 'kibana', 'eventLog']
---
import eventLogObj from './event_log.devdocs.json';
diff --git a/api_docs/exploratory_view.mdx b/api_docs/exploratory_view.mdx
index 2ae6be49ddd0f..97546b9bc8e85 100644
--- a/api_docs/exploratory_view.mdx
+++ b/api_docs/exploratory_view.mdx
@@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/exploratoryView
title: "exploratoryView"
image: https://source.unsplash.com/400x175/?github
description: API docs for the exploratoryView plugin
-date: 2023-09-28
+date: 2023-09-29
tags: ['contributor', 'dev', 'apidocs', 'kibana', 'exploratoryView']
---
import exploratoryViewObj from './exploratory_view.devdocs.json';
diff --git a/api_docs/expression_error.mdx b/api_docs/expression_error.mdx
index 1bcc90f528d1b..b4b96a336ceb5 100644
--- a/api_docs/expression_error.mdx
+++ b/api_docs/expression_error.mdx
@@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/expressionError
title: "expressionError"
image: https://source.unsplash.com/400x175/?github
description: API docs for the expressionError plugin
-date: 2023-09-28
+date: 2023-09-29
tags: ['contributor', 'dev', 'apidocs', 'kibana', 'expressionError']
---
import expressionErrorObj from './expression_error.devdocs.json';
diff --git a/api_docs/expression_gauge.mdx b/api_docs/expression_gauge.mdx
index 2ce1a615ca238..1508f1c2d2f69 100644
--- a/api_docs/expression_gauge.mdx
+++ b/api_docs/expression_gauge.mdx
@@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/expressionGauge
title: "expressionGauge"
image: https://source.unsplash.com/400x175/?github
description: API docs for the expressionGauge plugin
-date: 2023-09-28
+date: 2023-09-29
tags: ['contributor', 'dev', 'apidocs', 'kibana', 'expressionGauge']
---
import expressionGaugeObj from './expression_gauge.devdocs.json';
diff --git a/api_docs/expression_heatmap.mdx b/api_docs/expression_heatmap.mdx
index df39e25be4c53..1ef4516602d25 100644
--- a/api_docs/expression_heatmap.mdx
+++ b/api_docs/expression_heatmap.mdx
@@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/expressionHeatmap
title: "expressionHeatmap"
image: https://source.unsplash.com/400x175/?github
description: API docs for the expressionHeatmap plugin
-date: 2023-09-28
+date: 2023-09-29
tags: ['contributor', 'dev', 'apidocs', 'kibana', 'expressionHeatmap']
---
import expressionHeatmapObj from './expression_heatmap.devdocs.json';
diff --git a/api_docs/expression_image.mdx b/api_docs/expression_image.mdx
index 75d74beedbbee..299659157d7ae 100644
--- a/api_docs/expression_image.mdx
+++ b/api_docs/expression_image.mdx
@@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/expressionImage
title: "expressionImage"
image: https://source.unsplash.com/400x175/?github
description: API docs for the expressionImage plugin
-date: 2023-09-28
+date: 2023-09-29
tags: ['contributor', 'dev', 'apidocs', 'kibana', 'expressionImage']
---
import expressionImageObj from './expression_image.devdocs.json';
diff --git a/api_docs/expression_legacy_metric_vis.mdx b/api_docs/expression_legacy_metric_vis.mdx
index b723258dfddb6..af92b8d8b414c 100644
--- a/api_docs/expression_legacy_metric_vis.mdx
+++ b/api_docs/expression_legacy_metric_vis.mdx
@@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/expressionLegacyMetricVis
title: "expressionLegacyMetricVis"
image: https://source.unsplash.com/400x175/?github
description: API docs for the expressionLegacyMetricVis plugin
-date: 2023-09-28
+date: 2023-09-29
tags: ['contributor', 'dev', 'apidocs', 'kibana', 'expressionLegacyMetricVis']
---
import expressionLegacyMetricVisObj from './expression_legacy_metric_vis.devdocs.json';
diff --git a/api_docs/expression_metric.mdx b/api_docs/expression_metric.mdx
index 68a4290d60a09..0b3b39bba61f7 100644
--- a/api_docs/expression_metric.mdx
+++ b/api_docs/expression_metric.mdx
@@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/expressionMetric
title: "expressionMetric"
image: https://source.unsplash.com/400x175/?github
description: API docs for the expressionMetric plugin
-date: 2023-09-28
+date: 2023-09-29
tags: ['contributor', 'dev', 'apidocs', 'kibana', 'expressionMetric']
---
import expressionMetricObj from './expression_metric.devdocs.json';
diff --git a/api_docs/expression_metric_vis.mdx b/api_docs/expression_metric_vis.mdx
index a2b32a9605615..333184d384f26 100644
--- a/api_docs/expression_metric_vis.mdx
+++ b/api_docs/expression_metric_vis.mdx
@@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/expressionMetricVis
title: "expressionMetricVis"
image: https://source.unsplash.com/400x175/?github
description: API docs for the expressionMetricVis plugin
-date: 2023-09-28
+date: 2023-09-29
tags: ['contributor', 'dev', 'apidocs', 'kibana', 'expressionMetricVis']
---
import expressionMetricVisObj from './expression_metric_vis.devdocs.json';
diff --git a/api_docs/expression_partition_vis.mdx b/api_docs/expression_partition_vis.mdx
index 782c09bf5dfa0..064e380109faa 100644
--- a/api_docs/expression_partition_vis.mdx
+++ b/api_docs/expression_partition_vis.mdx
@@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/expressionPartitionVis
title: "expressionPartitionVis"
image: https://source.unsplash.com/400x175/?github
description: API docs for the expressionPartitionVis plugin
-date: 2023-09-28
+date: 2023-09-29
tags: ['contributor', 'dev', 'apidocs', 'kibana', 'expressionPartitionVis']
---
import expressionPartitionVisObj from './expression_partition_vis.devdocs.json';
diff --git a/api_docs/expression_repeat_image.mdx b/api_docs/expression_repeat_image.mdx
index 8a8abcb0986f5..250e7b9ce2aa3 100644
--- a/api_docs/expression_repeat_image.mdx
+++ b/api_docs/expression_repeat_image.mdx
@@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/expressionRepeatImage
title: "expressionRepeatImage"
image: https://source.unsplash.com/400x175/?github
description: API docs for the expressionRepeatImage plugin
-date: 2023-09-28
+date: 2023-09-29
tags: ['contributor', 'dev', 'apidocs', 'kibana', 'expressionRepeatImage']
---
import expressionRepeatImageObj from './expression_repeat_image.devdocs.json';
diff --git a/api_docs/expression_reveal_image.mdx b/api_docs/expression_reveal_image.mdx
index 885a5bc817153..5a3f681a18a29 100644
--- a/api_docs/expression_reveal_image.mdx
+++ b/api_docs/expression_reveal_image.mdx
@@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/expressionRevealImage
title: "expressionRevealImage"
image: https://source.unsplash.com/400x175/?github
description: API docs for the expressionRevealImage plugin
-date: 2023-09-28
+date: 2023-09-29
tags: ['contributor', 'dev', 'apidocs', 'kibana', 'expressionRevealImage']
---
import expressionRevealImageObj from './expression_reveal_image.devdocs.json';
diff --git a/api_docs/expression_shape.mdx b/api_docs/expression_shape.mdx
index 333ac75323a6d..1197694f13f92 100644
--- a/api_docs/expression_shape.mdx
+++ b/api_docs/expression_shape.mdx
@@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/expressionShape
title: "expressionShape"
image: https://source.unsplash.com/400x175/?github
description: API docs for the expressionShape plugin
-date: 2023-09-28
+date: 2023-09-29
tags: ['contributor', 'dev', 'apidocs', 'kibana', 'expressionShape']
---
import expressionShapeObj from './expression_shape.devdocs.json';
diff --git a/api_docs/expression_tagcloud.mdx b/api_docs/expression_tagcloud.mdx
index 40ae51a93fefd..e74ea70f70b2d 100644
--- a/api_docs/expression_tagcloud.mdx
+++ b/api_docs/expression_tagcloud.mdx
@@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/expressionTagcloud
title: "expressionTagcloud"
image: https://source.unsplash.com/400x175/?github
description: API docs for the expressionTagcloud plugin
-date: 2023-09-28
+date: 2023-09-29
tags: ['contributor', 'dev', 'apidocs', 'kibana', 'expressionTagcloud']
---
import expressionTagcloudObj from './expression_tagcloud.devdocs.json';
diff --git a/api_docs/expression_x_y.devdocs.json b/api_docs/expression_x_y.devdocs.json
index 02acfe81488e7..145e5309cfeac 100644
--- a/api_docs/expression_x_y.devdocs.json
+++ b/api_docs/expression_x_y.devdocs.json
@@ -811,6 +811,20 @@
"deprecated": false,
"trackAdoption": false
},
+ {
+ "parentPluginId": "expressionXY",
+ "id": "def-common.DataLayerArgs.colorMapping",
+ "type": "string",
+ "tags": [],
+ "label": "colorMapping",
+ "description": [],
+ "signature": [
+ "string | undefined"
+ ],
+ "path": "src/plugins/chart_expressions/expression_xy/common/types/expression_functions.ts",
+ "deprecated": false,
+ "trackAdoption": false
+ },
{
"parentPluginId": "expressionXY",
"id": "def-common.DataLayerArgs.decorations",
diff --git a/api_docs/expression_x_y.mdx b/api_docs/expression_x_y.mdx
index 6e295133add2b..a2ff7356c2995 100644
--- a/api_docs/expression_x_y.mdx
+++ b/api_docs/expression_x_y.mdx
@@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/expressionXY
title: "expressionXY"
image: https://source.unsplash.com/400x175/?github
description: API docs for the expressionXY plugin
-date: 2023-09-28
+date: 2023-09-29
tags: ['contributor', 'dev', 'apidocs', 'kibana', 'expressionXY']
---
import expressionXYObj from './expression_x_y.devdocs.json';
@@ -21,7 +21,7 @@ Contact [@elastic/kibana-visualizations](https://github.com/orgs/elastic/teams/k
| Public API count | Any count | Items lacking comments | Missing exports |
|-------------------|-----------|------------------------|-----------------|
-| 175 | 0 | 165 | 13 |
+| 176 | 0 | 166 | 13 |
## Client
diff --git a/api_docs/expressions.mdx b/api_docs/expressions.mdx
index 7c1f8bc7e457a..e54c8ba17baca 100644
--- a/api_docs/expressions.mdx
+++ b/api_docs/expressions.mdx
@@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/expressions
title: "expressions"
image: https://source.unsplash.com/400x175/?github
description: API docs for the expressions plugin
-date: 2023-09-28
+date: 2023-09-29
tags: ['contributor', 'dev', 'apidocs', 'kibana', 'expressions']
---
import expressionsObj from './expressions.devdocs.json';
diff --git a/api_docs/features.mdx b/api_docs/features.mdx
index 5d59732350fe7..de92b5328057b 100644
--- a/api_docs/features.mdx
+++ b/api_docs/features.mdx
@@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/features
title: "features"
image: https://source.unsplash.com/400x175/?github
description: API docs for the features plugin
-date: 2023-09-28
+date: 2023-09-29
tags: ['contributor', 'dev', 'apidocs', 'kibana', 'features']
---
import featuresObj from './features.devdocs.json';
diff --git a/api_docs/field_formats.mdx b/api_docs/field_formats.mdx
index 4e9a554d0015e..753a55c915ec6 100644
--- a/api_docs/field_formats.mdx
+++ b/api_docs/field_formats.mdx
@@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/fieldFormats
title: "fieldFormats"
image: https://source.unsplash.com/400x175/?github
description: API docs for the fieldFormats plugin
-date: 2023-09-28
+date: 2023-09-29
tags: ['contributor', 'dev', 'apidocs', 'kibana', 'fieldFormats']
---
import fieldFormatsObj from './field_formats.devdocs.json';
diff --git a/api_docs/file_upload.mdx b/api_docs/file_upload.mdx
index be3cfb4b97deb..d493a2c994f22 100644
--- a/api_docs/file_upload.mdx
+++ b/api_docs/file_upload.mdx
@@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/fileUpload
title: "fileUpload"
image: https://source.unsplash.com/400x175/?github
description: API docs for the fileUpload plugin
-date: 2023-09-28
+date: 2023-09-29
tags: ['contributor', 'dev', 'apidocs', 'kibana', 'fileUpload']
---
import fileUploadObj from './file_upload.devdocs.json';
diff --git a/api_docs/files.mdx b/api_docs/files.mdx
index 5086e4beec0e0..9c242accac5b7 100644
--- a/api_docs/files.mdx
+++ b/api_docs/files.mdx
@@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/files
title: "files"
image: https://source.unsplash.com/400x175/?github
description: API docs for the files plugin
-date: 2023-09-28
+date: 2023-09-29
tags: ['contributor', 'dev', 'apidocs', 'kibana', 'files']
---
import filesObj from './files.devdocs.json';
diff --git a/api_docs/files_management.mdx b/api_docs/files_management.mdx
index 8f52135ba4dd6..c4f75fe970c6f 100644
--- a/api_docs/files_management.mdx
+++ b/api_docs/files_management.mdx
@@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/filesManagement
title: "filesManagement"
image: https://source.unsplash.com/400x175/?github
description: API docs for the filesManagement plugin
-date: 2023-09-28
+date: 2023-09-29
tags: ['contributor', 'dev', 'apidocs', 'kibana', 'filesManagement']
---
import filesManagementObj from './files_management.devdocs.json';
diff --git a/api_docs/fleet.mdx b/api_docs/fleet.mdx
index 6cf756020fa68..fe23f8f927613 100644
--- a/api_docs/fleet.mdx
+++ b/api_docs/fleet.mdx
@@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/fleet
title: "fleet"
image: https://source.unsplash.com/400x175/?github
description: API docs for the fleet plugin
-date: 2023-09-28
+date: 2023-09-29
tags: ['contributor', 'dev', 'apidocs', 'kibana', 'fleet']
---
import fleetObj from './fleet.devdocs.json';
diff --git a/api_docs/global_search.mdx b/api_docs/global_search.mdx
index 456dac06309b8..e77e6ebdad68d 100644
--- a/api_docs/global_search.mdx
+++ b/api_docs/global_search.mdx
@@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/globalSearch
title: "globalSearch"
image: https://source.unsplash.com/400x175/?github
description: API docs for the globalSearch plugin
-date: 2023-09-28
+date: 2023-09-29
tags: ['contributor', 'dev', 'apidocs', 'kibana', 'globalSearch']
---
import globalSearchObj from './global_search.devdocs.json';
diff --git a/api_docs/guided_onboarding.mdx b/api_docs/guided_onboarding.mdx
index 8bfce4cd57e0e..88455fec675f1 100644
--- a/api_docs/guided_onboarding.mdx
+++ b/api_docs/guided_onboarding.mdx
@@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/guidedOnboarding
title: "guidedOnboarding"
image: https://source.unsplash.com/400x175/?github
description: API docs for the guidedOnboarding plugin
-date: 2023-09-28
+date: 2023-09-29
tags: ['contributor', 'dev', 'apidocs', 'kibana', 'guidedOnboarding']
---
import guidedOnboardingObj from './guided_onboarding.devdocs.json';
diff --git a/api_docs/home.mdx b/api_docs/home.mdx
index e67d44b43c7b4..030987ebb5d80 100644
--- a/api_docs/home.mdx
+++ b/api_docs/home.mdx
@@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/home
title: "home"
image: https://source.unsplash.com/400x175/?github
description: API docs for the home plugin
-date: 2023-09-28
+date: 2023-09-29
tags: ['contributor', 'dev', 'apidocs', 'kibana', 'home']
---
import homeObj from './home.devdocs.json';
diff --git a/api_docs/image_embeddable.mdx b/api_docs/image_embeddable.mdx
index 42ba88f74ce76..b869e4488ac5a 100644
--- a/api_docs/image_embeddable.mdx
+++ b/api_docs/image_embeddable.mdx
@@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/imageEmbeddable
title: "imageEmbeddable"
image: https://source.unsplash.com/400x175/?github
description: API docs for the imageEmbeddable plugin
-date: 2023-09-28
+date: 2023-09-29
tags: ['contributor', 'dev', 'apidocs', 'kibana', 'imageEmbeddable']
---
import imageEmbeddableObj from './image_embeddable.devdocs.json';
diff --git a/api_docs/index_lifecycle_management.mdx b/api_docs/index_lifecycle_management.mdx
index bd719fbceab66..39c6694dc76d2 100644
--- a/api_docs/index_lifecycle_management.mdx
+++ b/api_docs/index_lifecycle_management.mdx
@@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/indexLifecycleManagement
title: "indexLifecycleManagement"
image: https://source.unsplash.com/400x175/?github
description: API docs for the indexLifecycleManagement plugin
-date: 2023-09-28
+date: 2023-09-29
tags: ['contributor', 'dev', 'apidocs', 'kibana', 'indexLifecycleManagement']
---
import indexLifecycleManagementObj from './index_lifecycle_management.devdocs.json';
diff --git a/api_docs/index_management.mdx b/api_docs/index_management.mdx
index a481bc52815a3..a5f4a339c0de1 100644
--- a/api_docs/index_management.mdx
+++ b/api_docs/index_management.mdx
@@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/indexManagement
title: "indexManagement"
image: https://source.unsplash.com/400x175/?github
description: API docs for the indexManagement plugin
-date: 2023-09-28
+date: 2023-09-29
tags: ['contributor', 'dev', 'apidocs', 'kibana', 'indexManagement']
---
import indexManagementObj from './index_management.devdocs.json';
diff --git a/api_docs/infra.mdx b/api_docs/infra.mdx
index 5bfc662f9e4b7..701d20f072c9e 100644
--- a/api_docs/infra.mdx
+++ b/api_docs/infra.mdx
@@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/infra
title: "infra"
image: https://source.unsplash.com/400x175/?github
description: API docs for the infra plugin
-date: 2023-09-28
+date: 2023-09-29
tags: ['contributor', 'dev', 'apidocs', 'kibana', 'infra']
---
import infraObj from './infra.devdocs.json';
diff --git a/api_docs/inspector.mdx b/api_docs/inspector.mdx
index e111316a051c0..595daca8277db 100644
--- a/api_docs/inspector.mdx
+++ b/api_docs/inspector.mdx
@@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/inspector
title: "inspector"
image: https://source.unsplash.com/400x175/?github
description: API docs for the inspector plugin
-date: 2023-09-28
+date: 2023-09-29
tags: ['contributor', 'dev', 'apidocs', 'kibana', 'inspector']
---
import inspectorObj from './inspector.devdocs.json';
diff --git a/api_docs/interactive_setup.mdx b/api_docs/interactive_setup.mdx
index cc1e3742faa20..b7268bb72763b 100644
--- a/api_docs/interactive_setup.mdx
+++ b/api_docs/interactive_setup.mdx
@@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/interactiveSetup
title: "interactiveSetup"
image: https://source.unsplash.com/400x175/?github
description: API docs for the interactiveSetup plugin
-date: 2023-09-28
+date: 2023-09-29
tags: ['contributor', 'dev', 'apidocs', 'kibana', 'interactiveSetup']
---
import interactiveSetupObj from './interactive_setup.devdocs.json';
diff --git a/api_docs/kbn_ace.mdx b/api_docs/kbn_ace.mdx
index 077667c0faf96..1a213d4913d90 100644
--- a/api_docs/kbn_ace.mdx
+++ b/api_docs/kbn_ace.mdx
@@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-ace
title: "@kbn/ace"
image: https://source.unsplash.com/400x175/?github
description: API docs for the @kbn/ace plugin
-date: 2023-09-28
+date: 2023-09-29
tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/ace']
---
import kbnAceObj from './kbn_ace.devdocs.json';
diff --git a/api_docs/kbn_aiops_components.mdx b/api_docs/kbn_aiops_components.mdx
index 5c69c8b12cbbe..6970009ba694c 100644
--- a/api_docs/kbn_aiops_components.mdx
+++ b/api_docs/kbn_aiops_components.mdx
@@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-aiops-components
title: "@kbn/aiops-components"
image: https://source.unsplash.com/400x175/?github
description: API docs for the @kbn/aiops-components plugin
-date: 2023-09-28
+date: 2023-09-29
tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/aiops-components']
---
import kbnAiopsComponentsObj from './kbn_aiops_components.devdocs.json';
diff --git a/api_docs/kbn_aiops_utils.mdx b/api_docs/kbn_aiops_utils.mdx
index c757fd7c1582a..a02ac3ad0c2b8 100644
--- a/api_docs/kbn_aiops_utils.mdx
+++ b/api_docs/kbn_aiops_utils.mdx
@@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-aiops-utils
title: "@kbn/aiops-utils"
image: https://source.unsplash.com/400x175/?github
description: API docs for the @kbn/aiops-utils plugin
-date: 2023-09-28
+date: 2023-09-29
tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/aiops-utils']
---
import kbnAiopsUtilsObj from './kbn_aiops_utils.devdocs.json';
diff --git a/api_docs/kbn_alerting_api_integration_helpers.devdocs.json b/api_docs/kbn_alerting_api_integration_helpers.devdocs.json
index 8f4c6849b5061..7eb38635c563c 100644
--- a/api_docs/kbn_alerting_api_integration_helpers.devdocs.json
+++ b/api_docs/kbn_alerting_api_integration_helpers.devdocs.json
@@ -111,6 +111,55 @@
"children": [],
"returnComment": []
},
+ {
+ "parentPluginId": "@kbn/alerting-api-integration-helpers",
+ "id": "def-common.ESTestIndexTool.indexDoc",
+ "type": "Function",
+ "tags": [],
+ "label": "indexDoc",
+ "description": [],
+ "signature": [
+ "(source: string, reference?: string | undefined) => Promise<",
+ "WriteResponseBase",
+ ">"
+ ],
+ "path": "x-pack/test/alerting_api_integration/packages/helpers/es_test_index_tool.ts",
+ "deprecated": false,
+ "trackAdoption": false,
+ "children": [
+ {
+ "parentPluginId": "@kbn/alerting-api-integration-helpers",
+ "id": "def-common.ESTestIndexTool.indexDoc.$1",
+ "type": "string",
+ "tags": [],
+ "label": "source",
+ "description": [],
+ "signature": [
+ "string"
+ ],
+ "path": "x-pack/test/alerting_api_integration/packages/helpers/es_test_index_tool.ts",
+ "deprecated": false,
+ "trackAdoption": false,
+ "isRequired": true
+ },
+ {
+ "parentPluginId": "@kbn/alerting-api-integration-helpers",
+ "id": "def-common.ESTestIndexTool.indexDoc.$2",
+ "type": "string",
+ "tags": [],
+ "label": "reference",
+ "description": [],
+ "signature": [
+ "string | undefined"
+ ],
+ "path": "x-pack/test/alerting_api_integration/packages/helpers/es_test_index_tool.ts",
+ "deprecated": false,
+ "trackAdoption": false,
+ "isRequired": false
+ }
+ ],
+ "returnComment": []
+ },
{
"parentPluginId": "@kbn/alerting-api-integration-helpers",
"id": "def-common.ESTestIndexTool.destroy",
diff --git a/api_docs/kbn_alerting_api_integration_helpers.mdx b/api_docs/kbn_alerting_api_integration_helpers.mdx
index a397098b06097..362e451ad21de 100644
--- a/api_docs/kbn_alerting_api_integration_helpers.mdx
+++ b/api_docs/kbn_alerting_api_integration_helpers.mdx
@@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-alerting-api-integration-helpers
title: "@kbn/alerting-api-integration-helpers"
image: https://source.unsplash.com/400x175/?github
description: API docs for the @kbn/alerting-api-integration-helpers plugin
-date: 2023-09-28
+date: 2023-09-29
tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/alerting-api-integration-helpers']
---
import kbnAlertingApiIntegrationHelpersObj from './kbn_alerting_api_integration_helpers.devdocs.json';
@@ -21,7 +21,7 @@ Contact [@elastic/response-ops](https://github.com/orgs/elastic/teams/response-o
| Public API count | Any count | Items lacking comments | Missing exports |
|-------------------|-----------|------------------------|-----------------|
-| 24 | 3 | 24 | 0 |
+| 27 | 3 | 27 | 0 |
## Common
diff --git a/api_docs/kbn_alerting_state_types.mdx b/api_docs/kbn_alerting_state_types.mdx
index a524f5f57697f..f6f03c1b9a9c7 100644
--- a/api_docs/kbn_alerting_state_types.mdx
+++ b/api_docs/kbn_alerting_state_types.mdx
@@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-alerting-state-types
title: "@kbn/alerting-state-types"
image: https://source.unsplash.com/400x175/?github
description: API docs for the @kbn/alerting-state-types plugin
-date: 2023-09-28
+date: 2023-09-29
tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/alerting-state-types']
---
import kbnAlertingStateTypesObj from './kbn_alerting_state_types.devdocs.json';
diff --git a/api_docs/kbn_alerts_as_data_utils.devdocs.json b/api_docs/kbn_alerts_as_data_utils.devdocs.json
index 2d2e9c678ef98..3fdca19e4c044 100644
--- a/api_docs/kbn_alerts_as_data_utils.devdocs.json
+++ b/api_docs/kbn_alerts_as_data_utils.devdocs.json
@@ -118,7 +118,7 @@
"id": "def-common.FieldMap.Unnamed",
"type": "IndexSignature",
"tags": [],
- "label": "[key: string]: { type: string; required: boolean; array?: boolean | undefined; doc_values?: boolean | undefined; enabled?: boolean | undefined; format?: string | undefined; ignore_above?: number | undefined; ... 4 more ...; dynamic?: boolean | ... 1 more ... | undefined; }",
+ "label": "[key: string]: { type: string; required: boolean; array?: boolean | undefined; doc_values?: boolean | undefined; enabled?: boolean | undefined; format?: string | undefined; ignore_above?: number | undefined; ... 5 more ...; properties?: Record<...> | undefined; }",
"description": [],
"signature": [
"[key: string]: { type: string; required: boolean; array?: boolean | undefined; doc_values?: boolean | undefined; enabled?: boolean | undefined; format?: string | undefined; ignore_above?: number | undefined; multi_fields?: ",
@@ -129,7 +129,7 @@
"section": "def-common.MultiField",
"text": "MultiField"
},
- "[] | undefined; index?: boolean | undefined; path?: string | undefined; scaling_factor?: number | undefined; dynamic?: boolean | \"strict\" | undefined; }"
+ "[] | undefined; index?: boolean | undefined; path?: string | undefined; scaling_factor?: number | undefined; dynamic?: boolean | \"strict\" | undefined; properties?: Record | undefined; }"
],
"path": "packages/kbn-alerts-as-data-utils/src/field_maps/types.ts",
"deprecated": false,
@@ -196,7 +196,7 @@
"label": "AADAlert",
"description": [],
"signature": [
- "({ '@timestamp': string; kibana: { alert: { instance: { id: string; }; rule: { category: string; consumer: string; name: string; producer: string; revision: string | number; rule_type_id: string; uuid: string; }; status: string; uuid: string; }; space_ids: string[]; }; } & { event?: { action?: string | undefined; kind?: string | undefined; } | undefined; kibana?: { alert?: { action_group?: string | undefined; case_ids?: string[] | undefined; duration?: { us?: string | number | undefined; } | undefined; end?: string | undefined; flapping?: boolean | undefined; flapping_history?: boolean[] | undefined; last_detected?: string | undefined; maintenance_window_ids?: string[] | undefined; reason?: string | undefined; rule?: { execution?: { uuid?: string | undefined; } | undefined; parameters?: unknown; tags?: string[] | undefined; } | undefined; start?: string | undefined; time_range?: { gte?: string | undefined; lte?: string | undefined; } | undefined; url?: string | undefined; workflow_status?: string | undefined; workflow_tags?: string[] | undefined; } | undefined; version?: string | undefined; } | undefined; tags?: string[] | undefined; }) | ({} & { agent?: { name?: string | undefined; } | undefined; error?: { grouping_key?: string | undefined; grouping_name?: string | undefined; } | undefined; kibana?: { alert?: { evaluation?: { threshold?: string | number | undefined; value?: string | number | undefined; values?: (string | number)[] | undefined; } | undefined; } | undefined; } | undefined; processor?: { event?: string | undefined; } | undefined; service?: { environment?: string | undefined; language?: { name?: string | undefined; } | undefined; name?: string | undefined; } | undefined; transaction?: { name?: string | undefined; type?: string | undefined; } | undefined; } & { '@timestamp': string; kibana: { alert: { instance: { id: string; }; rule: { category: string; consumer: string; name: string; producer: string; revision: string | number; rule_type_id: string; uuid: string; }; status: string; uuid: string; }; space_ids: string[]; }; } & { event?: { action?: string | undefined; kind?: string | undefined; } | undefined; kibana?: { alert?: { action_group?: string | undefined; case_ids?: string[] | undefined; duration?: { us?: string | number | undefined; } | undefined; end?: string | undefined; flapping?: boolean | undefined; flapping_history?: boolean[] | undefined; last_detected?: string | undefined; maintenance_window_ids?: string[] | undefined; reason?: string | undefined; rule?: { execution?: { uuid?: string | undefined; } | undefined; parameters?: unknown; tags?: string[] | undefined; } | undefined; start?: string | undefined; time_range?: { gte?: string | undefined; lte?: string | undefined; } | undefined; url?: string | undefined; workflow_status?: string | undefined; workflow_tags?: string[] | undefined; } | undefined; version?: string | undefined; } | undefined; tags?: string[] | undefined; } & {} & { ecs?: { version?: string | undefined; } | undefined; kibana?: { alert?: { risk_score?: number | undefined; rule?: { author?: string | undefined; created_at?: string | undefined; created_by?: string | undefined; description?: string | undefined; enabled?: string | undefined; from?: string | undefined; interval?: string | undefined; license?: string | undefined; note?: string | undefined; references?: string[] | undefined; rule_id?: string | undefined; rule_name_override?: string | undefined; to?: string | undefined; type?: string | undefined; updated_at?: string | undefined; updated_by?: string | undefined; version?: string | undefined; } | undefined; severity?: string | undefined; suppression?: { docs_count?: string | number | undefined; end?: string | undefined; start?: string | undefined; terms?: { field?: string[] | undefined; value?: string[] | undefined; } | undefined; } | undefined; system_status?: string | undefined; workflow_reason?: string | undefined; workflow_user?: string | undefined; } | undefined; } | undefined; }) | ({} & { kibana?: { alert?: { evaluation?: { threshold?: string | number | undefined; value?: string | number | undefined; values?: (string | number)[] | undefined; } | undefined; } | undefined; } | undefined; } & { '@timestamp': string; kibana: { alert: { instance: { id: string; }; rule: { category: string; consumer: string; name: string; producer: string; revision: string | number; rule_type_id: string; uuid: string; }; status: string; uuid: string; }; space_ids: string[]; }; } & { event?: { action?: string | undefined; kind?: string | undefined; } | undefined; kibana?: { alert?: { action_group?: string | undefined; case_ids?: string[] | undefined; duration?: { us?: string | number | undefined; } | undefined; end?: string | undefined; flapping?: boolean | undefined; flapping_history?: boolean[] | undefined; last_detected?: string | undefined; maintenance_window_ids?: string[] | undefined; reason?: string | undefined; rule?: { execution?: { uuid?: string | undefined; } | undefined; parameters?: unknown; tags?: string[] | undefined; } | undefined; start?: string | undefined; time_range?: { gte?: string | undefined; lte?: string | undefined; } | undefined; url?: string | undefined; workflow_status?: string | undefined; workflow_tags?: string[] | undefined; } | undefined; version?: string | undefined; } | undefined; tags?: string[] | undefined; } & { '@timestamp': string; ecs: { version: string; }; } & { agent?: { build?: { original?: string | undefined; } | undefined; ephemeral_id?: string | undefined; id?: string | undefined; name?: string | undefined; type?: string | undefined; version?: string | undefined; } | undefined; client?: { address?: string | undefined; as?: { number?: string | number | undefined; organization?: { name?: string | undefined; } | undefined; } | undefined; bytes?: string | number | undefined; domain?: string | undefined; geo?: { city_name?: string | undefined; continent_code?: string | undefined; continent_name?: string | undefined; country_iso_code?: string | undefined; country_name?: string | undefined; location?: string | { type: string; coordinates: number[]; } | { lat: number; lon: number; } | { location: number[]; } | { location: string; } | undefined; name?: string | undefined; postal_code?: string | undefined; region_iso_code?: string | undefined; region_name?: string | undefined; timezone?: string | undefined; } | undefined; ip?: string | undefined; mac?: string | undefined; nat?: { ip?: string | undefined; port?: string | number | undefined; } | undefined; packets?: string | number | undefined; port?: string | number | undefined; registered_domain?: string | undefined; subdomain?: string | undefined; top_level_domain?: string | undefined; user?: { domain?: string | undefined; email?: string | undefined; full_name?: string | undefined; group?: { domain?: string | undefined; id?: string | undefined; name?: string | undefined; } | undefined; hash?: string | undefined; id?: string | undefined; name?: string | undefined; roles?: string[] | undefined; } | undefined; } | undefined; cloud?: { account?: { id?: string | undefined; name?: string | undefined; } | undefined; availability_zone?: string | undefined; instance?: { id?: string | undefined; name?: string | undefined; } | undefined; machine?: { type?: string | undefined; } | undefined; origin?: { account?: { id?: string | undefined; name?: string | undefined; } | undefined; availability_zone?: string | undefined; instance?: { id?: string | undefined; name?: string | undefined; } | undefined; machine?: { type?: string | undefined; } | undefined; project?: { id?: string | undefined; name?: string | undefined; } | undefined; provider?: string | undefined; region?: string | undefined; service?: { name?: string | undefined; } | undefined; } | undefined; project?: { id?: string | undefined; name?: string | undefined; } | undefined; provider?: string | undefined; region?: string | undefined; service?: { name?: string | undefined; } | undefined; target?: { account?: { id?: string | undefined; name?: string | undefined; } | undefined; availability_zone?: string | undefined; instance?: { id?: string | undefined; name?: string | undefined; } | undefined; machine?: { type?: string | undefined; } | undefined; project?: { id?: string | undefined; name?: string | undefined; } | undefined; provider?: string | undefined; region?: string | undefined; service?: { name?: string | undefined; } | undefined; } | undefined; } | undefined; container?: { cpu?: { usage?: string | number | undefined; } | undefined; disk?: { read?: { bytes?: string | number | undefined; } | undefined; write?: { bytes?: string | number | undefined; } | undefined; } | undefined; id?: string | undefined; image?: { hash?: { all?: string[] | undefined; } | undefined; name?: string | undefined; tag?: string[] | undefined; } | undefined; memory?: { usage?: string | number | undefined; } | undefined; name?: string | undefined; network?: { egress?: { bytes?: string | number | undefined; } | undefined; ingress?: { bytes?: string | number | undefined; } | undefined; } | undefined; runtime?: string | undefined; } | undefined; destination?: { address?: string | undefined; as?: { number?: string | number | undefined; organization?: { name?: string | undefined; } | undefined; } | undefined; bytes?: string | number | undefined; domain?: string | undefined; geo?: { city_name?: string | undefined; continent_code?: string | undefined; continent_name?: string | undefined; country_iso_code?: string | undefined; country_name?: string | undefined; location?: string | { type: string; coordinates: number[]; } | { lat: number; lon: number; } | { location: number[]; } | { location: string; } | undefined; name?: string | undefined; postal_code?: string | undefined; region_iso_code?: string | undefined; region_name?: string | undefined; timezone?: string | undefined; } | undefined; ip?: string | undefined; mac?: string | undefined; nat?: { ip?: string | undefined; port?: string | number | undefined; } | undefined; packets?: string | number | undefined; port?: string | number | undefined; registered_domain?: string | undefined; subdomain?: string | undefined; top_level_domain?: string | undefined; user?: { domain?: string | undefined; email?: string | undefined; full_name?: string | undefined; group?: { domain?: string | undefined; id?: string | undefined; name?: string | undefined; } | undefined; hash?: string | undefined; id?: string | undefined; name?: string | undefined; roles?: string[] | undefined; } | undefined; } | undefined; device?: { id?: string | undefined; manufacturer?: string | undefined; model?: { identifier?: string | undefined; name?: string | undefined; } | undefined; } | undefined; dll?: { code_signature?: { digest_algorithm?: string | undefined; exists?: boolean | undefined; signing_id?: string | undefined; status?: string | undefined; subject_name?: string | undefined; team_id?: string | undefined; timestamp?: string | undefined; trusted?: boolean | undefined; valid?: boolean | undefined; } | undefined; hash?: { md5?: string | undefined; sha1?: string | undefined; sha256?: string | undefined; sha384?: string | undefined; sha512?: string | undefined; ssdeep?: string | undefined; tlsh?: string | undefined; } | undefined; name?: string | undefined; path?: string | undefined; pe?: { architecture?: string | undefined; company?: string | undefined; description?: string | undefined; file_version?: string | undefined; imphash?: string | undefined; original_file_name?: string | undefined; pehash?: string | undefined; product?: string | undefined; } | undefined; } | undefined; dns?: { answers?: { class?: string | undefined; data?: string | undefined; name?: string | undefined; ttl?: string | number | undefined; type?: string | undefined; }[] | undefined; header_flags?: string[] | undefined; id?: string | undefined; op_code?: string | undefined; question?: { class?: string | undefined; name?: string | undefined; registered_domain?: string | undefined; subdomain?: string | undefined; top_level_domain?: string | undefined; type?: string | undefined; } | undefined; resolved_ip?: string[] | undefined; response_code?: string | undefined; type?: string | undefined; } | undefined; email?: { attachments?: { file?: { extension?: string | undefined; hash?: { md5?: string | undefined; sha1?: string | undefined; sha256?: string | undefined; sha384?: string | undefined; sha512?: string | undefined; ssdeep?: string | undefined; tlsh?: string | undefined; } | undefined; mime_type?: string | undefined; name?: string | undefined; size?: string | number | undefined; } | undefined; }[] | undefined; bcc?: { address?: string[] | undefined; } | undefined; cc?: { address?: string[] | undefined; } | undefined; content_type?: string | undefined; delivery_timestamp?: string | undefined; direction?: string | undefined; from?: { address?: string[] | undefined; } | undefined; local_id?: string | undefined; message_id?: string | undefined; origination_timestamp?: string | undefined; reply_to?: { address?: string[] | undefined; } | undefined; sender?: { address?: string | undefined; } | undefined; subject?: string | undefined; to?: { address?: string[] | undefined; } | undefined; x_mailer?: string | undefined; } | undefined; error?: { code?: string | undefined; id?: string | undefined; message?: string | undefined; stack_trace?: string | undefined; type?: string | undefined; } | undefined; event?: { action?: string | undefined; agent_id_status?: string | undefined; category?: string[] | undefined; code?: string | undefined; created?: string | undefined; dataset?: string | undefined; duration?: string | number | undefined; end?: string | undefined; hash?: string | undefined; id?: string | undefined; ingested?: string | undefined; kind?: string | undefined; module?: string | undefined; original?: string | undefined; outcome?: string | undefined; provider?: string | undefined; reason?: string | undefined; reference?: string | undefined; risk_score?: number | undefined; risk_score_norm?: number | undefined; sequence?: string | number | undefined; severity?: string | number | undefined; start?: string | undefined; timezone?: string | undefined; type?: string[] | undefined; url?: string | undefined; } | undefined; faas?: { coldstart?: boolean | undefined; execution?: string | undefined; id?: string | undefined; name?: string | undefined; version?: string | undefined; } | undefined; file?: { accessed?: string | undefined; attributes?: string[] | undefined; code_signature?: { digest_algorithm?: string | undefined; exists?: boolean | undefined; signing_id?: string | undefined; status?: string | undefined; subject_name?: string | undefined; team_id?: string | undefined; timestamp?: string | undefined; trusted?: boolean | undefined; valid?: boolean | undefined; } | undefined; created?: string | undefined; ctime?: string | undefined; device?: string | undefined; directory?: string | undefined; drive_letter?: string | undefined; elf?: { architecture?: string | undefined; byte_order?: string | undefined; cpu_type?: string | undefined; creation_date?: string | undefined; exports?: unknown[] | undefined; header?: { abi_version?: string | undefined; class?: string | undefined; data?: string | undefined; entrypoint?: string | number | undefined; object_version?: string | undefined; os_abi?: string | undefined; type?: string | undefined; version?: string | undefined; } | undefined; imports?: unknown[] | undefined; sections?: { chi2?: string | number | undefined; entropy?: string | number | undefined; flags?: string | undefined; name?: string | undefined; physical_offset?: string | undefined; physical_size?: string | number | undefined; type?: string | undefined; virtual_address?: string | number | undefined; virtual_size?: string | number | undefined; }[] | undefined; segments?: { sections?: string | undefined; type?: string | undefined; }[] | undefined; shared_libraries?: string[] | undefined; telfhash?: string | undefined; } | undefined; extension?: string | undefined; fork_name?: string | undefined; gid?: string | undefined; group?: string | undefined; hash?: { md5?: string | undefined; sha1?: string | undefined; sha256?: string | undefined; sha384?: string | undefined; sha512?: string | undefined; ssdeep?: string | undefined; tlsh?: string | undefined; } | undefined; inode?: string | undefined; mime_type?: string | undefined; mode?: string | undefined; mtime?: string | undefined; name?: string | undefined; owner?: string | undefined; path?: string | undefined; pe?: { architecture?: string | undefined; company?: string | undefined; description?: string | undefined; file_version?: string | undefined; imphash?: string | undefined; original_file_name?: string | undefined; pehash?: string | undefined; product?: string | undefined; } | undefined; size?: string | number | undefined; target_path?: string | undefined; type?: string | undefined; uid?: string | undefined; x509?: { alternative_names?: string[] | undefined; issuer?: { common_name?: string[] | undefined; country?: string[] | undefined; distinguished_name?: string | undefined; locality?: string[] | undefined; organization?: string[] | undefined; organizational_unit?: string[] | undefined; state_or_province?: string[] | undefined; } | undefined; not_after?: string | undefined; not_before?: string | undefined; public_key_algorithm?: string | undefined; public_key_curve?: string | undefined; public_key_exponent?: string | number | undefined; public_key_size?: string | number | undefined; serial_number?: string | undefined; signature_algorithm?: string | undefined; subject?: { common_name?: string[] | undefined; country?: string[] | undefined; distinguished_name?: string | undefined; locality?: string[] | undefined; organization?: string[] | undefined; organizational_unit?: string[] | undefined; state_or_province?: string[] | undefined; } | undefined; version_number?: string | undefined; } | undefined; } | undefined; group?: { domain?: string | undefined; id?: string | undefined; name?: string | undefined; } | undefined; host?: { architecture?: string | undefined; boot?: { id?: string | undefined; } | undefined; cpu?: { usage?: string | number | undefined; } | undefined; disk?: { read?: { bytes?: string | number | undefined; } | undefined; write?: { bytes?: string | number | undefined; } | undefined; } | undefined; domain?: string | undefined; geo?: { city_name?: string | undefined; continent_code?: string | undefined; continent_name?: string | undefined; country_iso_code?: string | undefined; country_name?: string | undefined; location?: string | { type: string; coordinates: number[]; } | { lat: number; lon: number; } | { location: number[]; } | { location: string; } | undefined; name?: string | undefined; postal_code?: string | undefined; region_iso_code?: string | undefined; region_name?: string | undefined; timezone?: string | undefined; } | undefined; hostname?: string | undefined; id?: string | undefined; ip?: string[] | undefined; mac?: string[] | undefined; name?: string | undefined; network?: { egress?: { bytes?: string | number | undefined; packets?: string | number | undefined; } | undefined; ingress?: { bytes?: string | number | undefined; packets?: string | number | undefined; } | undefined; } | undefined; os?: { family?: string | undefined; full?: string | undefined; kernel?: string | undefined; name?: string | undefined; platform?: string | undefined; type?: string | undefined; version?: string | undefined; } | undefined; pid_ns_ino?: string | undefined; risk?: { calculated_level?: string | undefined; calculated_score?: number | undefined; calculated_score_norm?: number | undefined; static_level?: string | undefined; static_score?: number | undefined; static_score_norm?: number | undefined; } | undefined; type?: string | undefined; uptime?: string | number | undefined; } | undefined; http?: { request?: { body?: { bytes?: string | number | undefined; content?: string | undefined; } | undefined; bytes?: string | number | undefined; id?: string | undefined; method?: string | undefined; mime_type?: string | undefined; referrer?: string | undefined; } | undefined; response?: { body?: { bytes?: string | number | undefined; content?: string | undefined; } | undefined; bytes?: string | number | undefined; mime_type?: string | undefined; status_code?: string | number | undefined; } | undefined; version?: string | undefined; } | undefined; log?: { file?: { path?: string | undefined; } | undefined; level?: string | undefined; logger?: string | undefined; origin?: { file?: { line?: string | number | undefined; name?: string | undefined; } | undefined; function?: string | undefined; } | undefined; } | undefined; message?: string | undefined; network?: { application?: string | undefined; bytes?: string | number | undefined; community_id?: string | undefined; direction?: string | undefined; forwarded_ip?: string | undefined; iana_number?: string | undefined; name?: string | undefined; packets?: string | number | undefined; protocol?: string | undefined; transport?: string | undefined; type?: string | undefined; vlan?: { id?: string | undefined; name?: string | undefined; } | undefined; } | undefined; observer?: { geo?: { city_name?: string | undefined; continent_code?: string | undefined; continent_name?: string | undefined; country_iso_code?: string | undefined; country_name?: string | undefined; location?: string | { type: string; coordinates: number[]; } | { lat: number; lon: number; } | { location: number[]; } | { location: string; } | undefined; name?: string | undefined; postal_code?: string | undefined; region_iso_code?: string | undefined; region_name?: string | undefined; timezone?: string | undefined; } | undefined; hostname?: string | undefined; ip?: string[] | undefined; mac?: string[] | undefined; name?: string | undefined; os?: { family?: string | undefined; full?: string | undefined; kernel?: string | undefined; name?: string | undefined; platform?: string | undefined; type?: string | undefined; version?: string | undefined; } | undefined; product?: string | undefined; serial_number?: string | undefined; type?: string | undefined; vendor?: string | undefined; version?: string | undefined; } | undefined; orchestrator?: { api_version?: string | undefined; cluster?: { id?: string | undefined; name?: string | undefined; url?: string | undefined; version?: string | undefined; } | undefined; namespace?: string | undefined; organization?: string | undefined; resource?: { id?: string | undefined; ip?: string[] | undefined; name?: string | undefined; parent?: { type?: string | undefined; } | undefined; type?: string | undefined; } | undefined; type?: string | undefined; } | undefined; organization?: { id?: string | undefined; name?: string | undefined; } | undefined; package?: { architecture?: string | undefined; build_version?: string | undefined; checksum?: string | undefined; description?: string | undefined; install_scope?: string | undefined; installed?: string | undefined; license?: string | undefined; name?: string | undefined; path?: string | undefined; reference?: string | undefined; size?: string | number | undefined; type?: string | undefined; version?: string | undefined; } | undefined; process?: { args?: string[] | undefined; args_count?: string | number | undefined; code_signature?: { digest_algorithm?: string | undefined; exists?: boolean | undefined; signing_id?: string | undefined; status?: string | undefined; subject_name?: string | undefined; team_id?: string | undefined; timestamp?: string | undefined; trusted?: boolean | undefined; valid?: boolean | undefined; } | undefined; command_line?: string | undefined; elf?: { architecture?: string | undefined; byte_order?: string | undefined; cpu_type?: string | undefined; creation_date?: string | undefined; exports?: unknown[] | undefined; header?: { abi_version?: string | undefined; class?: string | undefined; data?: string | undefined; entrypoint?: string | number | undefined; object_version?: string | undefined; os_abi?: string | undefined; type?: string | undefined; version?: string | undefined; } | undefined; imports?: unknown[] | undefined; sections?: { chi2?: string | number | undefined; entropy?: string | number | undefined; flags?: string | undefined; name?: string | undefined; physical_offset?: string | undefined; physical_size?: string | number | undefined; type?: string | undefined; virtual_address?: string | number | undefined; virtual_size?: string | number | undefined; }[] | undefined; segments?: { sections?: string | undefined; type?: string | undefined; }[] | undefined; shared_libraries?: string[] | undefined; telfhash?: string | undefined; } | undefined; end?: string | undefined; entity_id?: string | undefined; entry_leader?: { args?: string[] | undefined; args_count?: string | number | undefined; attested_groups?: { name?: string | undefined; } | undefined; attested_user?: { id?: string | undefined; name?: string | undefined; } | undefined; command_line?: string | undefined; entity_id?: string | undefined; entry_meta?: { source?: { ip?: string | undefined; } | undefined; type?: string | undefined; } | undefined; executable?: string | undefined; group?: { id?: string | undefined; name?: string | undefined; } | undefined; interactive?: boolean | undefined; name?: string | undefined; parent?: { entity_id?: string | undefined; pid?: string | number | undefined; session_leader?: { entity_id?: string | undefined; pid?: string | number | undefined; start?: string | undefined; } | undefined; start?: string | undefined; } | undefined; pid?: string | number | undefined; real_group?: { id?: string | undefined; name?: string | undefined; } | undefined; real_user?: { id?: string | undefined; name?: string | undefined; } | undefined; same_as_process?: boolean | undefined; saved_group?: { id?: string | undefined; name?: string | undefined; } | undefined; saved_user?: { id?: string | undefined; name?: string | undefined; } | undefined; start?: string | undefined; supplemental_groups?: { id?: string | undefined; name?: string | undefined; } | undefined; user?: { id?: string | undefined; name?: string | undefined; } | undefined; working_directory?: string | undefined; } | undefined; env_vars?: string[] | undefined; executable?: string | undefined; exit_code?: string | number | undefined; group_leader?: { args?: string[] | undefined; args_count?: string | number | undefined; command_line?: string | undefined; entity_id?: string | undefined; executable?: string | undefined; group?: { id?: string | undefined; name?: string | undefined; } | undefined; interactive?: boolean | undefined; name?: string | undefined; pid?: string | number | undefined; real_group?: { id?: string | undefined; name?: string | undefined; } | undefined; real_user?: { id?: string | undefined; name?: string | undefined; } | undefined; same_as_process?: boolean | undefined; saved_group?: { id?: string | undefined; name?: string | undefined; } | undefined; saved_user?: { id?: string | undefined; name?: string | undefined; } | undefined; start?: string | undefined; supplemental_groups?: { id?: string | undefined; name?: string | undefined; } | undefined; user?: { id?: string | undefined; name?: string | undefined; } | undefined; working_directory?: string | undefined; } | undefined; hash?: { md5?: string | undefined; sha1?: string | undefined; sha256?: string | undefined; sha384?: string | undefined; sha512?: string | undefined; ssdeep?: string | undefined; tlsh?: string | undefined; } | undefined; interactive?: boolean | undefined; name?: string | undefined; parent?: { args?: string[] | undefined; args_count?: string | number | undefined; code_signature?: { digest_algorithm?: string | undefined; exists?: boolean | undefined; signing_id?: string | undefined; status?: string | undefined; subject_name?: string | undefined; team_id?: string | undefined; timestamp?: string | undefined; trusted?: boolean | undefined; valid?: boolean | undefined; } | undefined; command_line?: string | undefined; elf?: { architecture?: string | undefined; byte_order?: string | undefined; cpu_type?: string | undefined; creation_date?: string | undefined; exports?: unknown[] | undefined; header?: { abi_version?: string | undefined; class?: string | undefined; data?: string | undefined; entrypoint?: string | number | undefined; object_version?: string | undefined; os_abi?: string | undefined; type?: string | undefined; version?: string | undefined; } | undefined; imports?: unknown[] | undefined; sections?: { chi2?: string | number | undefined; entropy?: string | number | undefined; flags?: string | undefined; name?: string | undefined; physical_offset?: string | undefined; physical_size?: string | number | undefined; type?: string | undefined; virtual_address?: string | number | undefined; virtual_size?: string | number | undefined; }[] | undefined; segments?: { sections?: string | undefined; type?: string | undefined; }[] | undefined; shared_libraries?: string[] | undefined; telfhash?: string | undefined; } | undefined; end?: string | undefined; entity_id?: string | undefined; executable?: string | undefined; exit_code?: string | number | undefined; group?: { id?: string | undefined; name?: string | undefined; } | undefined; group_leader?: { entity_id?: string | undefined; pid?: string | number | undefined; start?: string | undefined; } | undefined; hash?: { md5?: string | undefined; sha1?: string | undefined; sha256?: string | undefined; sha384?: string | undefined; sha512?: string | undefined; ssdeep?: string | undefined; tlsh?: string | undefined; } | undefined; interactive?: boolean | undefined; name?: string | undefined; pe?: { architecture?: string | undefined; company?: string | undefined; description?: string | undefined; file_version?: string | undefined; imphash?: string | undefined; original_file_name?: string | undefined; pehash?: string | undefined; product?: string | undefined; } | undefined; pgid?: string | number | undefined; pid?: string | number | undefined; real_group?: { id?: string | undefined; name?: string | undefined; } | undefined; real_user?: { id?: string | undefined; name?: string | undefined; } | undefined; saved_group?: { id?: string | undefined; name?: string | undefined; } | undefined; saved_user?: { id?: string | undefined; name?: string | undefined; } | undefined; start?: string | undefined; supplemental_groups?: { id?: string | undefined; name?: string | undefined; } | undefined; thread?: { id?: string | number | undefined; name?: string | undefined; } | undefined; title?: string | undefined; uptime?: string | number | undefined; user?: { id?: string | undefined; name?: string | undefined; } | undefined; working_directory?: string | undefined; } | undefined; pe?: { architecture?: string | undefined; company?: string | undefined; description?: string | undefined; file_version?: string | undefined; imphash?: string | undefined; original_file_name?: string | undefined; pehash?: string | undefined; product?: string | undefined; } | undefined; pgid?: string | number | undefined; pid?: string | number | undefined; previous?: { args?: string[] | undefined; args_count?: string | number | undefined; executable?: string | undefined; } | undefined; real_group?: { id?: string | undefined; name?: string | undefined; } | undefined; real_user?: { id?: string | undefined; name?: string | undefined; } | undefined; saved_group?: { id?: string | undefined; name?: string | undefined; } | undefined; saved_user?: { id?: string | undefined; name?: string | undefined; } | undefined; session_leader?: { args?: string[] | undefined; args_count?: string | number | undefined; command_line?: string | undefined; entity_id?: string | undefined; executable?: string | undefined; group?: { id?: string | undefined; name?: string | undefined; } | undefined; interactive?: boolean | undefined; name?: string | undefined; parent?: { entity_id?: string | undefined; pid?: string | number | undefined; session_leader?: { entity_id?: string | undefined; pid?: string | number | undefined; start?: string | undefined; } | undefined; start?: string | undefined; } | undefined; pid?: string | number | undefined; real_group?: { id?: string | undefined; name?: string | undefined; } | undefined; real_user?: { id?: string | undefined; name?: string | undefined; } | undefined; same_as_process?: boolean | undefined; saved_group?: { id?: string | undefined; name?: string | undefined; } | undefined; saved_user?: { id?: string | undefined; name?: string | undefined; } | undefined; start?: string | undefined; supplemental_groups?: { id?: string | undefined; name?: string | undefined; } | undefined; user?: { id?: string | undefined; name?: string | undefined; } | undefined; working_directory?: string | undefined; } | undefined; start?: string | undefined; supplemental_groups?: { id?: string | undefined; name?: string | undefined; } | undefined; thread?: { id?: string | number | undefined; name?: string | undefined; } | undefined; title?: string | undefined; uptime?: string | number | undefined; user?: { id?: string | undefined; name?: string | undefined; } | undefined; working_directory?: string | undefined; } | undefined; registry?: { data?: { bytes?: string | undefined; strings?: string[] | undefined; type?: string | undefined; } | undefined; hive?: string | undefined; key?: string | undefined; path?: string | undefined; value?: string | undefined; } | undefined; related?: { hash?: string[] | undefined; hosts?: string[] | undefined; ip?: string[] | undefined; user?: string[] | undefined; } | undefined; rule?: { author?: string[] | undefined; category?: string | undefined; description?: string | undefined; id?: string | undefined; license?: string | undefined; name?: string | undefined; reference?: string | undefined; ruleset?: string | undefined; uuid?: string | undefined; version?: string | undefined; } | undefined; server?: { address?: string | undefined; as?: { number?: string | number | undefined; organization?: { name?: string | undefined; } | undefined; } | undefined; bytes?: string | number | undefined; domain?: string | undefined; geo?: { city_name?: string | undefined; continent_code?: string | undefined; continent_name?: string | undefined; country_iso_code?: string | undefined; country_name?: string | undefined; location?: string | { type: string; coordinates: number[]; } | { lat: number; lon: number; } | { location: number[]; } | { location: string; } | undefined; name?: string | undefined; postal_code?: string | undefined; region_iso_code?: string | undefined; region_name?: string | undefined; timezone?: string | undefined; } | undefined; ip?: string | undefined; mac?: string | undefined; nat?: { ip?: string | undefined; port?: string | number | undefined; } | undefined; packets?: string | number | undefined; port?: string | number | undefined; registered_domain?: string | undefined; subdomain?: string | undefined; top_level_domain?: string | undefined; user?: { domain?: string | undefined; email?: string | undefined; full_name?: string | undefined; group?: { domain?: string | undefined; id?: string | undefined; name?: string | undefined; } | undefined; hash?: string | undefined; id?: string | undefined; name?: string | undefined; roles?: string[] | undefined; } | undefined; } | undefined; service?: { address?: string | undefined; environment?: string | undefined; ephemeral_id?: string | undefined; id?: string | undefined; name?: string | undefined; node?: { name?: string | undefined; role?: string | undefined; roles?: string[] | undefined; } | undefined; origin?: { address?: string | undefined; environment?: string | undefined; ephemeral_id?: string | undefined; id?: string | undefined; name?: string | undefined; node?: { name?: string | undefined; role?: string | undefined; roles?: string[] | undefined; } | undefined; state?: string | undefined; type?: string | undefined; version?: string | undefined; } | undefined; state?: string | undefined; target?: { address?: string | undefined; environment?: string | undefined; ephemeral_id?: string | undefined; id?: string | undefined; name?: string | undefined; node?: { name?: string | undefined; role?: string | undefined; roles?: string[] | undefined; } | undefined; state?: string | undefined; type?: string | undefined; version?: string | undefined; } | undefined; type?: string | undefined; version?: string | undefined; } | undefined; source?: { address?: string | undefined; as?: { number?: string | number | undefined; organization?: { name?: string | undefined; } | undefined; } | undefined; bytes?: string | number | undefined; domain?: string | undefined; geo?: { city_name?: string | undefined; continent_code?: string | undefined; continent_name?: string | undefined; country_iso_code?: string | undefined; country_name?: string | undefined; location?: string | { type: string; coordinates: number[]; } | { lat: number; lon: number; } | { location: number[]; } | { location: string; } | undefined; name?: string | undefined; postal_code?: string | undefined; region_iso_code?: string | undefined; region_name?: string | undefined; timezone?: string | undefined; } | undefined; ip?: string | undefined; mac?: string | undefined; nat?: { ip?: string | undefined; port?: string | number | undefined; } | undefined; packets?: string | number | undefined; port?: string | number | undefined; registered_domain?: string | undefined; subdomain?: string | undefined; top_level_domain?: string | undefined; user?: { domain?: string | undefined; email?: string | undefined; full_name?: string | undefined; group?: { domain?: string | undefined; id?: string | undefined; name?: string | undefined; } | undefined; hash?: string | undefined; id?: string | undefined; name?: string | undefined; roles?: string[] | undefined; } | undefined; } | undefined; span?: { id?: string | undefined; } | undefined; tags?: string[] | undefined; threat?: { enrichments?: { matched?: { atomic?: string | undefined; field?: string | undefined; id?: string | undefined; index?: string | undefined; occurred?: string | undefined; type?: string | undefined; } | undefined; }[] | undefined; feed?: { dashboard_id?: string | undefined; description?: string | undefined; name?: string | undefined; reference?: string | undefined; } | undefined; framework?: string | undefined; group?: { alias?: string[] | undefined; id?: string | undefined; name?: string | undefined; reference?: string | undefined; } | undefined; indicator?: { as?: { number?: string | number | undefined; organization?: { name?: string | undefined; } | undefined; } | undefined; confidence?: string | undefined; description?: string | undefined; email?: { address?: string | undefined; } | undefined; file?: { accessed?: string | undefined; attributes?: string[] | undefined; code_signature?: { digest_algorithm?: string | undefined; exists?: boolean | undefined; signing_id?: string | undefined; status?: string | undefined; subject_name?: string | undefined; team_id?: string | undefined; timestamp?: string | undefined; trusted?: boolean | undefined; valid?: boolean | undefined; } | undefined; created?: string | undefined; ctime?: string | undefined; device?: string | undefined; directory?: string | undefined; drive_letter?: string | undefined; elf?: { architecture?: string | undefined; byte_order?: string | undefined; cpu_type?: string | undefined; creation_date?: string | undefined; exports?: unknown[] | undefined; header?: { abi_version?: string | undefined; class?: string | undefined; data?: string | undefined; entrypoint?: string | number | undefined; object_version?: string | undefined; os_abi?: string | undefined; type?: string | undefined; version?: string | undefined; } | undefined; imports?: unknown[] | undefined; sections?: { chi2?: string | number | undefined; entropy?: string | number | undefined; flags?: string | undefined; name?: string | undefined; physical_offset?: string | undefined; physical_size?: string | number | undefined; type?: string | undefined; virtual_address?: string | number | undefined; virtual_size?: string | number | undefined; }[] | undefined; segments?: { sections?: string | undefined; type?: string | undefined; }[] | undefined; shared_libraries?: string[] | undefined; telfhash?: string | undefined; } | undefined; extension?: string | undefined; fork_name?: string | undefined; gid?: string | undefined; group?: string | undefined; hash?: { md5?: string | undefined; sha1?: string | undefined; sha256?: string | undefined; sha384?: string | undefined; sha512?: string | undefined; ssdeep?: string | undefined; tlsh?: string | undefined; } | undefined; inode?: string | undefined; mime_type?: string | undefined; mode?: string | undefined; mtime?: string | undefined; name?: string | undefined; owner?: string | undefined; path?: string | undefined; pe?: { architecture?: string | undefined; company?: string | undefined; description?: string | undefined; file_version?: string | undefined; imphash?: string | undefined; original_file_name?: string | undefined; pehash?: string | undefined; product?: string | undefined; } | undefined; size?: string | number | undefined; target_path?: string | undefined; type?: string | undefined; uid?: string | undefined; x509?: { alternative_names?: string[] | undefined; issuer?: { common_name?: string[] | undefined; country?: string[] | undefined; distinguished_name?: string | undefined; locality?: string[] | undefined; organization?: string[] | undefined; organizational_unit?: string[] | undefined; state_or_province?: string[] | undefined; } | undefined; not_after?: string | undefined; not_before?: string | undefined; public_key_algorithm?: string | undefined; public_key_curve?: string | undefined; public_key_exponent?: string | number | undefined; public_key_size?: string | number | undefined; serial_number?: string | undefined; signature_algorithm?: string | undefined; subject?: { common_name?: string[] | undefined; country?: string[] | undefined; distinguished_name?: string | undefined; locality?: string[] | undefined; organization?: string[] | undefined; organizational_unit?: string[] | undefined; state_or_province?: string[] | undefined; } | undefined; version_number?: string | undefined; } | undefined; } | undefined; first_seen?: string | undefined; geo?: { city_name?: string | undefined; continent_code?: string | undefined; continent_name?: string | undefined; country_iso_code?: string | undefined; country_name?: string | undefined; location?: string | { type: string; coordinates: number[]; } | { lat: number; lon: number; } | { location: number[]; } | { location: string; } | undefined; name?: string | undefined; postal_code?: string | undefined; region_iso_code?: string | undefined; region_name?: string | undefined; timezone?: string | undefined; } | undefined; ip?: string | undefined; last_seen?: string | undefined; marking?: { tlp?: string | undefined; tlp_version?: string | undefined; } | undefined; modified_at?: string | undefined; port?: string | number | undefined; provider?: string | undefined; reference?: string | undefined; registry?: { data?: { bytes?: string | undefined; strings?: string[] | undefined; type?: string | undefined; } | undefined; hive?: string | undefined; key?: string | undefined; path?: string | undefined; value?: string | undefined; } | undefined; scanner_stats?: string | number | undefined; sightings?: string | number | undefined; type?: string | undefined; url?: { domain?: string | undefined; extension?: string | undefined; fragment?: string | undefined; full?: string | undefined; original?: string | undefined; password?: string | undefined; path?: string | undefined; port?: string | number | undefined; query?: string | undefined; registered_domain?: string | undefined; scheme?: string | undefined; subdomain?: string | undefined; top_level_domain?: string | undefined; username?: string | undefined; } | undefined; x509?: { alternative_names?: string[] | undefined; issuer?: { common_name?: string[] | undefined; country?: string[] | undefined; distinguished_name?: string | undefined; locality?: string[] | undefined; organization?: string[] | undefined; organizational_unit?: string[] | undefined; state_or_province?: string[] | undefined; } | undefined; not_after?: string | undefined; not_before?: string | undefined; public_key_algorithm?: string | undefined; public_key_curve?: string | undefined; public_key_exponent?: string | number | undefined; public_key_size?: string | number | undefined; serial_number?: string | undefined; signature_algorithm?: string | undefined; subject?: { common_name?: string[] | undefined; country?: string[] | undefined; distinguished_name?: string | undefined; locality?: string[] | undefined; organization?: string[] | undefined; organizational_unit?: string[] | undefined; state_or_province?: string[] | undefined; } | undefined; version_number?: string | undefined; } | undefined; } | undefined; software?: { alias?: string[] | undefined; id?: string | undefined; name?: string | undefined; platforms?: string[] | undefined; reference?: string | undefined; type?: string | undefined; } | undefined; tactic?: { id?: string[] | undefined; name?: string[] | undefined; reference?: string[] | undefined; } | undefined; technique?: { id?: string[] | undefined; name?: string[] | undefined; reference?: string[] | undefined; subtechnique?: { id?: string[] | undefined; name?: string[] | undefined; reference?: string[] | undefined; } | undefined; } | undefined; } | undefined; tls?: { cipher?: string | undefined; client?: { certificate?: string | undefined; certificate_chain?: string[] | undefined; hash?: { md5?: string | undefined; sha1?: string | undefined; sha256?: string | undefined; } | undefined; issuer?: string | undefined; ja3?: string | undefined; not_after?: string | undefined; not_before?: string | undefined; server_name?: string | undefined; subject?: string | undefined; supported_ciphers?: string[] | undefined; x509?: { alternative_names?: string[] | undefined; issuer?: { common_name?: string[] | undefined; country?: string[] | undefined; distinguished_name?: string | undefined; locality?: string[] | undefined; organization?: string[] | undefined; organizational_unit?: string[] | undefined; state_or_province?: string[] | undefined; } | undefined; not_after?: string | undefined; not_before?: string | undefined; public_key_algorithm?: string | undefined; public_key_curve?: string | undefined; public_key_exponent?: string | number | undefined; public_key_size?: string | number | undefined; serial_number?: string | undefined; signature_algorithm?: string | undefined; subject?: { common_name?: string[] | undefined; country?: string[] | undefined; distinguished_name?: string | undefined; locality?: string[] | undefined; organization?: string[] | undefined; organizational_unit?: string[] | undefined; state_or_province?: string[] | undefined; } | undefined; version_number?: string | undefined; } | undefined; } | undefined; curve?: string | undefined; established?: boolean | undefined; next_protocol?: string | undefined; resumed?: boolean | undefined; server?: { certificate?: string | undefined; certificate_chain?: string[] | undefined; hash?: { md5?: string | undefined; sha1?: string | undefined; sha256?: string | undefined; } | undefined; issuer?: string | undefined; ja3s?: string | undefined; not_after?: string | undefined; not_before?: string | undefined; subject?: string | undefined; x509?: { alternative_names?: string[] | undefined; issuer?: { common_name?: string[] | undefined; country?: string[] | undefined; distinguished_name?: string | undefined; locality?: string[] | undefined; organization?: string[] | undefined; organizational_unit?: string[] | undefined; state_or_province?: string[] | undefined; } | undefined; not_after?: string | undefined; not_before?: string | undefined; public_key_algorithm?: string | undefined; public_key_curve?: string | undefined; public_key_exponent?: string | number | undefined; public_key_size?: string | number | undefined; serial_number?: string | undefined; signature_algorithm?: string | undefined; subject?: { common_name?: string[] | undefined; country?: string[] | undefined; distinguished_name?: string | undefined; locality?: string[] | undefined; organization?: string[] | undefined; organizational_unit?: string[] | undefined; state_or_province?: string[] | undefined; } | undefined; version_number?: string | undefined; } | undefined; } | undefined; version?: string | undefined; version_protocol?: string | undefined; } | undefined; trace?: { id?: string | undefined; } | undefined; transaction?: { id?: string | undefined; } | undefined; url?: { domain?: string | undefined; extension?: string | undefined; fragment?: string | undefined; full?: string | undefined; original?: string | undefined; password?: string | undefined; path?: string | undefined; port?: string | number | undefined; query?: string | undefined; registered_domain?: string | undefined; scheme?: string | undefined; subdomain?: string | undefined; top_level_domain?: string | undefined; username?: string | undefined; } | undefined; user?: { changes?: { domain?: string | undefined; email?: string | undefined; full_name?: string | undefined; group?: { domain?: string | undefined; id?: string | undefined; name?: string | undefined; } | undefined; hash?: string | undefined; id?: string | undefined; name?: string | undefined; roles?: string[] | undefined; } | undefined; domain?: string | undefined; effective?: { domain?: string | undefined; email?: string | undefined; full_name?: string | undefined; group?: { domain?: string | undefined; id?: string | undefined; name?: string | undefined; } | undefined; hash?: string | undefined; id?: string | undefined; name?: string | undefined; roles?: string[] | undefined; } | undefined; email?: string | undefined; full_name?: string | undefined; group?: { domain?: string | undefined; id?: string | undefined; name?: string | undefined; } | undefined; hash?: string | undefined; id?: string | undefined; name?: string | undefined; risk?: { calculated_level?: string | undefined; calculated_score?: number | undefined; calculated_score_norm?: number | undefined; static_level?: string | undefined; static_score?: number | undefined; static_score_norm?: number | undefined; } | undefined; roles?: string[] | undefined; target?: { domain?: string | undefined; email?: string | undefined; full_name?: string | undefined; group?: { domain?: string | undefined; id?: string | undefined; name?: string | undefined; } | undefined; hash?: string | undefined; id?: string | undefined; name?: string | undefined; roles?: string[] | undefined; } | undefined; } | undefined; user_agent?: { device?: { name?: string | undefined; } | undefined; name?: string | undefined; original?: string | undefined; os?: { family?: string | undefined; full?: string | undefined; kernel?: string | undefined; name?: string | undefined; platform?: string | undefined; type?: string | undefined; version?: string | undefined; } | undefined; version?: string | undefined; } | undefined; vulnerability?: { category?: string[] | undefined; classification?: string | undefined; description?: string | undefined; enumeration?: string | undefined; id?: string | undefined; reference?: string | undefined; report_id?: string | undefined; scanner?: { vendor?: string | undefined; } | undefined; score?: { base?: number | undefined; environmental?: number | undefined; temporal?: number | undefined; version?: string | undefined; } | undefined; severity?: string | undefined; } | undefined; } & {} & { ecs?: { version?: string | undefined; } | undefined; kibana?: { alert?: { risk_score?: number | undefined; rule?: { author?: string | undefined; created_at?: string | undefined; created_by?: string | undefined; description?: string | undefined; enabled?: string | undefined; from?: string | undefined; interval?: string | undefined; license?: string | undefined; note?: string | undefined; references?: string[] | undefined; rule_id?: string | undefined; rule_name_override?: string | undefined; to?: string | undefined; type?: string | undefined; updated_at?: string | undefined; updated_by?: string | undefined; version?: string | undefined; } | undefined; severity?: string | undefined; suppression?: { docs_count?: string | number | undefined; end?: string | undefined; start?: string | undefined; terms?: { field?: string[] | undefined; value?: string[] | undefined; } | undefined; } | undefined; system_status?: string | undefined; workflow_reason?: string | undefined; workflow_user?: string | undefined; } | undefined; } | undefined; }) | ({} & { kibana?: { alert?: { evaluation?: { threshold?: string | number | undefined; value?: string | number | undefined; values?: (string | number)[] | undefined; } | undefined; } | undefined; } | undefined; } & { '@timestamp': string; kibana: { alert: { instance: { id: string; }; rule: { category: string; consumer: string; name: string; producer: string; revision: string | number; rule_type_id: string; uuid: string; }; status: string; uuid: string; }; space_ids: string[]; }; } & { event?: { action?: string | undefined; kind?: string | undefined; } | undefined; kibana?: { alert?: { action_group?: string | undefined; case_ids?: string[] | undefined; duration?: { us?: string | number | undefined; } | undefined; end?: string | undefined; flapping?: boolean | undefined; flapping_history?: boolean[] | undefined; last_detected?: string | undefined; maintenance_window_ids?: string[] | undefined; reason?: string | undefined; rule?: { execution?: { uuid?: string | undefined; } | undefined; parameters?: unknown; tags?: string[] | undefined; } | undefined; start?: string | undefined; time_range?: { gte?: string | undefined; lte?: string | undefined; } | undefined; url?: string | undefined; workflow_status?: string | undefined; workflow_tags?: string[] | undefined; } | undefined; version?: string | undefined; } | undefined; tags?: string[] | undefined; } & { '@timestamp': string; ecs: { version: string; }; } & { agent?: { build?: { original?: string | undefined; } | undefined; ephemeral_id?: string | undefined; id?: string | undefined; name?: string | undefined; type?: string | undefined; version?: string | undefined; } | undefined; client?: { address?: string | undefined; as?: { number?: string | number | undefined; organization?: { name?: string | undefined; } | undefined; } | undefined; bytes?: string | number | undefined; domain?: string | undefined; geo?: { city_name?: string | undefined; continent_code?: string | undefined; continent_name?: string | undefined; country_iso_code?: string | undefined; country_name?: string | undefined; location?: string | { type: string; coordinates: number[]; } | { lat: number; lon: number; } | { location: number[]; } | { location: string; } | undefined; name?: string | undefined; postal_code?: string | undefined; region_iso_code?: string | undefined; region_name?: string | undefined; timezone?: string | undefined; } | undefined; ip?: string | undefined; mac?: string | undefined; nat?: { ip?: string | undefined; port?: string | number | undefined; } | undefined; packets?: string | number | undefined; port?: string | number | undefined; registered_domain?: string | undefined; subdomain?: string | undefined; top_level_domain?: string | undefined; user?: { domain?: string | undefined; email?: string | undefined; full_name?: string | undefined; group?: { domain?: string | undefined; id?: string | undefined; name?: string | undefined; } | undefined; hash?: string | undefined; id?: string | undefined; name?: string | undefined; roles?: string[] | undefined; } | undefined; } | undefined; cloud?: { account?: { id?: string | undefined; name?: string | undefined; } | undefined; availability_zone?: string | undefined; instance?: { id?: string | undefined; name?: string | undefined; } | undefined; machine?: { type?: string | undefined; } | undefined; origin?: { account?: { id?: string | undefined; name?: string | undefined; } | undefined; availability_zone?: string | undefined; instance?: { id?: string | undefined; name?: string | undefined; } | undefined; machine?: { type?: string | undefined; } | undefined; project?: { id?: string | undefined; name?: string | undefined; } | undefined; provider?: string | undefined; region?: string | undefined; service?: { name?: string | undefined; } | undefined; } | undefined; project?: { id?: string | undefined; name?: string | undefined; } | undefined; provider?: string | undefined; region?: string | undefined; service?: { name?: string | undefined; } | undefined; target?: { account?: { id?: string | undefined; name?: string | undefined; } | undefined; availability_zone?: string | undefined; instance?: { id?: string | undefined; name?: string | undefined; } | undefined; machine?: { type?: string | undefined; } | undefined; project?: { id?: string | undefined; name?: string | undefined; } | undefined; provider?: string | undefined; region?: string | undefined; service?: { name?: string | undefined; } | undefined; } | undefined; } | undefined; container?: { cpu?: { usage?: string | number | undefined; } | undefined; disk?: { read?: { bytes?: string | number | undefined; } | undefined; write?: { bytes?: string | number | undefined; } | undefined; } | undefined; id?: string | undefined; image?: { hash?: { all?: string[] | undefined; } | undefined; name?: string | undefined; tag?: string[] | undefined; } | undefined; memory?: { usage?: string | number | undefined; } | undefined; name?: string | undefined; network?: { egress?: { bytes?: string | number | undefined; } | undefined; ingress?: { bytes?: string | number | undefined; } | undefined; } | undefined; runtime?: string | undefined; } | undefined; destination?: { address?: string | undefined; as?: { number?: string | number | undefined; organization?: { name?: string | undefined; } | undefined; } | undefined; bytes?: string | number | undefined; domain?: string | undefined; geo?: { city_name?: string | undefined; continent_code?: string | undefined; continent_name?: string | undefined; country_iso_code?: string | undefined; country_name?: string | undefined; location?: string | { type: string; coordinates: number[]; } | { lat: number; lon: number; } | { location: number[]; } | { location: string; } | undefined; name?: string | undefined; postal_code?: string | undefined; region_iso_code?: string | undefined; region_name?: string | undefined; timezone?: string | undefined; } | undefined; ip?: string | undefined; mac?: string | undefined; nat?: { ip?: string | undefined; port?: string | number | undefined; } | undefined; packets?: string | number | undefined; port?: string | number | undefined; registered_domain?: string | undefined; subdomain?: string | undefined; top_level_domain?: string | undefined; user?: { domain?: string | undefined; email?: string | undefined; full_name?: string | undefined; group?: { domain?: string | undefined; id?: string | undefined; name?: string | undefined; } | undefined; hash?: string | undefined; id?: string | undefined; name?: string | undefined; roles?: string[] | undefined; } | undefined; } | undefined; device?: { id?: string | undefined; manufacturer?: string | undefined; model?: { identifier?: string | undefined; name?: string | undefined; } | undefined; } | undefined; dll?: { code_signature?: { digest_algorithm?: string | undefined; exists?: boolean | undefined; signing_id?: string | undefined; status?: string | undefined; subject_name?: string | undefined; team_id?: string | undefined; timestamp?: string | undefined; trusted?: boolean | undefined; valid?: boolean | undefined; } | undefined; hash?: { md5?: string | undefined; sha1?: string | undefined; sha256?: string | undefined; sha384?: string | undefined; sha512?: string | undefined; ssdeep?: string | undefined; tlsh?: string | undefined; } | undefined; name?: string | undefined; path?: string | undefined; pe?: { architecture?: string | undefined; company?: string | undefined; description?: string | undefined; file_version?: string | undefined; imphash?: string | undefined; original_file_name?: string | undefined; pehash?: string | undefined; product?: string | undefined; } | undefined; } | undefined; dns?: { answers?: { class?: string | undefined; data?: string | undefined; name?: string | undefined; ttl?: string | number | undefined; type?: string | undefined; }[] | undefined; header_flags?: string[] | undefined; id?: string | undefined; op_code?: string | undefined; question?: { class?: string | undefined; name?: string | undefined; registered_domain?: string | undefined; subdomain?: string | undefined; top_level_domain?: string | undefined; type?: string | undefined; } | undefined; resolved_ip?: string[] | undefined; response_code?: string | undefined; type?: string | undefined; } | undefined; email?: { attachments?: { file?: { extension?: string | undefined; hash?: { md5?: string | undefined; sha1?: string | undefined; sha256?: string | undefined; sha384?: string | undefined; sha512?: string | undefined; ssdeep?: string | undefined; tlsh?: string | undefined; } | undefined; mime_type?: string | undefined; name?: string | undefined; size?: string | number | undefined; } | undefined; }[] | undefined; bcc?: { address?: string[] | undefined; } | undefined; cc?: { address?: string[] | undefined; } | undefined; content_type?: string | undefined; delivery_timestamp?: string | undefined; direction?: string | undefined; from?: { address?: string[] | undefined; } | undefined; local_id?: string | undefined; message_id?: string | undefined; origination_timestamp?: string | undefined; reply_to?: { address?: string[] | undefined; } | undefined; sender?: { address?: string | undefined; } | undefined; subject?: string | undefined; to?: { address?: string[] | undefined; } | undefined; x_mailer?: string | undefined; } | undefined; error?: { code?: string | undefined; id?: string | undefined; message?: string | undefined; stack_trace?: string | undefined; type?: string | undefined; } | undefined; event?: { action?: string | undefined; agent_id_status?: string | undefined; category?: string[] | undefined; code?: string | undefined; created?: string | undefined; dataset?: string | undefined; duration?: string | number | undefined; end?: string | undefined; hash?: string | undefined; id?: string | undefined; ingested?: string | undefined; kind?: string | undefined; module?: string | undefined; original?: string | undefined; outcome?: string | undefined; provider?: string | undefined; reason?: string | undefined; reference?: string | undefined; risk_score?: number | undefined; risk_score_norm?: number | undefined; sequence?: string | number | undefined; severity?: string | number | undefined; start?: string | undefined; timezone?: string | undefined; type?: string[] | undefined; url?: string | undefined; } | undefined; faas?: { coldstart?: boolean | undefined; execution?: string | undefined; id?: string | undefined; name?: string | undefined; version?: string | undefined; } | undefined; file?: { accessed?: string | undefined; attributes?: string[] | undefined; code_signature?: { digest_algorithm?: string | undefined; exists?: boolean | undefined; signing_id?: string | undefined; status?: string | undefined; subject_name?: string | undefined; team_id?: string | undefined; timestamp?: string | undefined; trusted?: boolean | undefined; valid?: boolean | undefined; } | undefined; created?: string | undefined; ctime?: string | undefined; device?: string | undefined; directory?: string | undefined; drive_letter?: string | undefined; elf?: { architecture?: string | undefined; byte_order?: string | undefined; cpu_type?: string | undefined; creation_date?: string | undefined; exports?: unknown[] | undefined; header?: { abi_version?: string | undefined; class?: string | undefined; data?: string | undefined; entrypoint?: string | number | undefined; object_version?: string | undefined; os_abi?: string | undefined; type?: string | undefined; version?: string | undefined; } | undefined; imports?: unknown[] | undefined; sections?: { chi2?: string | number | undefined; entropy?: string | number | undefined; flags?: string | undefined; name?: string | undefined; physical_offset?: string | undefined; physical_size?: string | number | undefined; type?: string | undefined; virtual_address?: string | number | undefined; virtual_size?: string | number | undefined; }[] | undefined; segments?: { sections?: string | undefined; type?: string | undefined; }[] | undefined; shared_libraries?: string[] | undefined; telfhash?: string | undefined; } | undefined; extension?: string | undefined; fork_name?: string | undefined; gid?: string | undefined; group?: string | undefined; hash?: { md5?: string | undefined; sha1?: string | undefined; sha256?: string | undefined; sha384?: string | undefined; sha512?: string | undefined; ssdeep?: string | undefined; tlsh?: string | undefined; } | undefined; inode?: string | undefined; mime_type?: string | undefined; mode?: string | undefined; mtime?: string | undefined; name?: string | undefined; owner?: string | undefined; path?: string | undefined; pe?: { architecture?: string | undefined; company?: string | undefined; description?: string | undefined; file_version?: string | undefined; imphash?: string | undefined; original_file_name?: string | undefined; pehash?: string | undefined; product?: string | undefined; } | undefined; size?: string | number | undefined; target_path?: string | undefined; type?: string | undefined; uid?: string | undefined; x509?: { alternative_names?: string[] | undefined; issuer?: { common_name?: string[] | undefined; country?: string[] | undefined; distinguished_name?: string | undefined; locality?: string[] | undefined; organization?: string[] | undefined; organizational_unit?: string[] | undefined; state_or_province?: string[] | undefined; } | undefined; not_after?: string | undefined; not_before?: string | undefined; public_key_algorithm?: string | undefined; public_key_curve?: string | undefined; public_key_exponent?: string | number | undefined; public_key_size?: string | number | undefined; serial_number?: string | undefined; signature_algorithm?: string | undefined; subject?: { common_name?: string[] | undefined; country?: string[] | undefined; distinguished_name?: string | undefined; locality?: string[] | undefined; organization?: string[] | undefined; organizational_unit?: string[] | undefined; state_or_province?: string[] | undefined; } | undefined; version_number?: string | undefined; } | undefined; } | undefined; group?: { domain?: string | undefined; id?: string | undefined; name?: string | undefined; } | undefined; host?: { architecture?: string | undefined; boot?: { id?: string | undefined; } | undefined; cpu?: { usage?: string | number | undefined; } | undefined; disk?: { read?: { bytes?: string | number | undefined; } | undefined; write?: { bytes?: string | number | undefined; } | undefined; } | undefined; domain?: string | undefined; geo?: { city_name?: string | undefined; continent_code?: string | undefined; continent_name?: string | undefined; country_iso_code?: string | undefined; country_name?: string | undefined; location?: string | { type: string; coordinates: number[]; } | { lat: number; lon: number; } | { location: number[]; } | { location: string; } | undefined; name?: string | undefined; postal_code?: string | undefined; region_iso_code?: string | undefined; region_name?: string | undefined; timezone?: string | undefined; } | undefined; hostname?: string | undefined; id?: string | undefined; ip?: string[] | undefined; mac?: string[] | undefined; name?: string | undefined; network?: { egress?: { bytes?: string | number | undefined; packets?: string | number | undefined; } | undefined; ingress?: { bytes?: string | number | undefined; packets?: string | number | undefined; } | undefined; } | undefined; os?: { family?: string | undefined; full?: string | undefined; kernel?: string | undefined; name?: string | undefined; platform?: string | undefined; type?: string | undefined; version?: string | undefined; } | undefined; pid_ns_ino?: string | undefined; risk?: { calculated_level?: string | undefined; calculated_score?: number | undefined; calculated_score_norm?: number | undefined; static_level?: string | undefined; static_score?: number | undefined; static_score_norm?: number | undefined; } | undefined; type?: string | undefined; uptime?: string | number | undefined; } | undefined; http?: { request?: { body?: { bytes?: string | number | undefined; content?: string | undefined; } | undefined; bytes?: string | number | undefined; id?: string | undefined; method?: string | undefined; mime_type?: string | undefined; referrer?: string | undefined; } | undefined; response?: { body?: { bytes?: string | number | undefined; content?: string | undefined; } | undefined; bytes?: string | number | undefined; mime_type?: string | undefined; status_code?: string | number | undefined; } | undefined; version?: string | undefined; } | undefined; log?: { file?: { path?: string | undefined; } | undefined; level?: string | undefined; logger?: string | undefined; origin?: { file?: { line?: string | number | undefined; name?: string | undefined; } | undefined; function?: string | undefined; } | undefined; } | undefined; message?: string | undefined; network?: { application?: string | undefined; bytes?: string | number | undefined; community_id?: string | undefined; direction?: string | undefined; forwarded_ip?: string | undefined; iana_number?: string | undefined; name?: string | undefined; packets?: string | number | undefined; protocol?: string | undefined; transport?: string | undefined; type?: string | undefined; vlan?: { id?: string | undefined; name?: string | undefined; } | undefined; } | undefined; observer?: { geo?: { city_name?: string | undefined; continent_code?: string | undefined; continent_name?: string | undefined; country_iso_code?: string | undefined; country_name?: string | undefined; location?: string | { type: string; coordinates: number[]; } | { lat: number; lon: number; } | { location: number[]; } | { location: string; } | undefined; name?: string | undefined; postal_code?: string | undefined; region_iso_code?: string | undefined; region_name?: string | undefined; timezone?: string | undefined; } | undefined; hostname?: string | undefined; ip?: string[] | undefined; mac?: string[] | undefined; name?: string | undefined; os?: { family?: string | undefined; full?: string | undefined; kernel?: string | undefined; name?: string | undefined; platform?: string | undefined; type?: string | undefined; version?: string | undefined; } | undefined; product?: string | undefined; serial_number?: string | undefined; type?: string | undefined; vendor?: string | undefined; version?: string | undefined; } | undefined; orchestrator?: { api_version?: string | undefined; cluster?: { id?: string | undefined; name?: string | undefined; url?: string | undefined; version?: string | undefined; } | undefined; namespace?: string | undefined; organization?: string | undefined; resource?: { id?: string | undefined; ip?: string[] | undefined; name?: string | undefined; parent?: { type?: string | undefined; } | undefined; type?: string | undefined; } | undefined; type?: string | undefined; } | undefined; organization?: { id?: string | undefined; name?: string | undefined; } | undefined; package?: { architecture?: string | undefined; build_version?: string | undefined; checksum?: string | undefined; description?: string | undefined; install_scope?: string | undefined; installed?: string | undefined; license?: string | undefined; name?: string | undefined; path?: string | undefined; reference?: string | undefined; size?: string | number | undefined; type?: string | undefined; version?: string | undefined; } | undefined; process?: { args?: string[] | undefined; args_count?: string | number | undefined; code_signature?: { digest_algorithm?: string | undefined; exists?: boolean | undefined; signing_id?: string | undefined; status?: string | undefined; subject_name?: string | undefined; team_id?: string | undefined; timestamp?: string | undefined; trusted?: boolean | undefined; valid?: boolean | undefined; } | undefined; command_line?: string | undefined; elf?: { architecture?: string | undefined; byte_order?: string | undefined; cpu_type?: string | undefined; creation_date?: string | undefined; exports?: unknown[] | undefined; header?: { abi_version?: string | undefined; class?: string | undefined; data?: string | undefined; entrypoint?: string | number | undefined; object_version?: string | undefined; os_abi?: string | undefined; type?: string | undefined; version?: string | undefined; } | undefined; imports?: unknown[] | undefined; sections?: { chi2?: string | number | undefined; entropy?: string | number | undefined; flags?: string | undefined; name?: string | undefined; physical_offset?: string | undefined; physical_size?: string | number | undefined; type?: string | undefined; virtual_address?: string | number | undefined; virtual_size?: string | number | undefined; }[] | undefined; segments?: { sections?: string | undefined; type?: string | undefined; }[] | undefined; shared_libraries?: string[] | undefined; telfhash?: string | undefined; } | undefined; end?: string | undefined; entity_id?: string | undefined; entry_leader?: { args?: string[] | undefined; args_count?: string | number | undefined; attested_groups?: { name?: string | undefined; } | undefined; attested_user?: { id?: string | undefined; name?: string | undefined; } | undefined; command_line?: string | undefined; entity_id?: string | undefined; entry_meta?: { source?: { ip?: string | undefined; } | undefined; type?: string | undefined; } | undefined; executable?: string | undefined; group?: { id?: string | undefined; name?: string | undefined; } | undefined; interactive?: boolean | undefined; name?: string | undefined; parent?: { entity_id?: string | undefined; pid?: string | number | undefined; session_leader?: { entity_id?: string | undefined; pid?: string | number | undefined; start?: string | undefined; } | undefined; start?: string | undefined; } | undefined; pid?: string | number | undefined; real_group?: { id?: string | undefined; name?: string | undefined; } | undefined; real_user?: { id?: string | undefined; name?: string | undefined; } | undefined; same_as_process?: boolean | undefined; saved_group?: { id?: string | undefined; name?: string | undefined; } | undefined; saved_user?: { id?: string | undefined; name?: string | undefined; } | undefined; start?: string | undefined; supplemental_groups?: { id?: string | undefined; name?: string | undefined; } | undefined; user?: { id?: string | undefined; name?: string | undefined; } | undefined; working_directory?: string | undefined; } | undefined; env_vars?: string[] | undefined; executable?: string | undefined; exit_code?: string | number | undefined; group_leader?: { args?: string[] | undefined; args_count?: string | number | undefined; command_line?: string | undefined; entity_id?: string | undefined; executable?: string | undefined; group?: { id?: string | undefined; name?: string | undefined; } | undefined; interactive?: boolean | undefined; name?: string | undefined; pid?: string | number | undefined; real_group?: { id?: string | undefined; name?: string | undefined; } | undefined; real_user?: { id?: string | undefined; name?: string | undefined; } | undefined; same_as_process?: boolean | undefined; saved_group?: { id?: string | undefined; name?: string | undefined; } | undefined; saved_user?: { id?: string | undefined; name?: string | undefined; } | undefined; start?: string | undefined; supplemental_groups?: { id?: string | undefined; name?: string | undefined; } | undefined; user?: { id?: string | undefined; name?: string | undefined; } | undefined; working_directory?: string | undefined; } | undefined; hash?: { md5?: string | undefined; sha1?: string | undefined; sha256?: string | undefined; sha384?: string | undefined; sha512?: string | undefined; ssdeep?: string | undefined; tlsh?: string | undefined; } | undefined; interactive?: boolean | undefined; name?: string | undefined; parent?: { args?: string[] | undefined; args_count?: string | number | undefined; code_signature?: { digest_algorithm?: string | undefined; exists?: boolean | undefined; signing_id?: string | undefined; status?: string | undefined; subject_name?: string | undefined; team_id?: string | undefined; timestamp?: string | undefined; trusted?: boolean | undefined; valid?: boolean | undefined; } | undefined; command_line?: string | undefined; elf?: { architecture?: string | undefined; byte_order?: string | undefined; cpu_type?: string | undefined; creation_date?: string | undefined; exports?: unknown[] | undefined; header?: { abi_version?: string | undefined; class?: string | undefined; data?: string | undefined; entrypoint?: string | number | undefined; object_version?: string | undefined; os_abi?: string | undefined; type?: string | undefined; version?: string | undefined; } | undefined; imports?: unknown[] | undefined; sections?: { chi2?: string | number | undefined; entropy?: string | number | undefined; flags?: string | undefined; name?: string | undefined; physical_offset?: string | undefined; physical_size?: string | number | undefined; type?: string | undefined; virtual_address?: string | number | undefined; virtual_size?: string | number | undefined; }[] | undefined; segments?: { sections?: string | undefined; type?: string | undefined; }[] | undefined; shared_libraries?: string[] | undefined; telfhash?: string | undefined; } | undefined; end?: string | undefined; entity_id?: string | undefined; executable?: string | undefined; exit_code?: string | number | undefined; group?: { id?: string | undefined; name?: string | undefined; } | undefined; group_leader?: { entity_id?: string | undefined; pid?: string | number | undefined; start?: string | undefined; } | undefined; hash?: { md5?: string | undefined; sha1?: string | undefined; sha256?: string | undefined; sha384?: string | undefined; sha512?: string | undefined; ssdeep?: string | undefined; tlsh?: string | undefined; } | undefined; interactive?: boolean | undefined; name?: string | undefined; pe?: { architecture?: string | undefined; company?: string | undefined; description?: string | undefined; file_version?: string | undefined; imphash?: string | undefined; original_file_name?: string | undefined; pehash?: string | undefined; product?: string | undefined; } | undefined; pgid?: string | number | undefined; pid?: string | number | undefined; real_group?: { id?: string | undefined; name?: string | undefined; } | undefined; real_user?: { id?: string | undefined; name?: string | undefined; } | undefined; saved_group?: { id?: string | undefined; name?: string | undefined; } | undefined; saved_user?: { id?: string | undefined; name?: string | undefined; } | undefined; start?: string | undefined; supplemental_groups?: { id?: string | undefined; name?: string | undefined; } | undefined; thread?: { id?: string | number | undefined; name?: string | undefined; } | undefined; title?: string | undefined; uptime?: string | number | undefined; user?: { id?: string | undefined; name?: string | undefined; } | undefined; working_directory?: string | undefined; } | undefined; pe?: { architecture?: string | undefined; company?: string | undefined; description?: string | undefined; file_version?: string | undefined; imphash?: string | undefined; original_file_name?: string | undefined; pehash?: string | undefined; product?: string | undefined; } | undefined; pgid?: string | number | undefined; pid?: string | number | undefined; previous?: { args?: string[] | undefined; args_count?: string | number | undefined; executable?: string | undefined; } | undefined; real_group?: { id?: string | undefined; name?: string | undefined; } | undefined; real_user?: { id?: string | undefined; name?: string | undefined; } | undefined; saved_group?: { id?: string | undefined; name?: string | undefined; } | undefined; saved_user?: { id?: string | undefined; name?: string | undefined; } | undefined; session_leader?: { args?: string[] | undefined; args_count?: string | number | undefined; command_line?: string | undefined; entity_id?: string | undefined; executable?: string | undefined; group?: { id?: string | undefined; name?: string | undefined; } | undefined; interactive?: boolean | undefined; name?: string | undefined; parent?: { entity_id?: string | undefined; pid?: string | number | undefined; session_leader?: { entity_id?: string | undefined; pid?: string | number | undefined; start?: string | undefined; } | undefined; start?: string | undefined; } | undefined; pid?: string | number | undefined; real_group?: { id?: string | undefined; name?: string | undefined; } | undefined; real_user?: { id?: string | undefined; name?: string | undefined; } | undefined; same_as_process?: boolean | undefined; saved_group?: { id?: string | undefined; name?: string | undefined; } | undefined; saved_user?: { id?: string | undefined; name?: string | undefined; } | undefined; start?: string | undefined; supplemental_groups?: { id?: string | undefined; name?: string | undefined; } | undefined; user?: { id?: string | undefined; name?: string | undefined; } | undefined; working_directory?: string | undefined; } | undefined; start?: string | undefined; supplemental_groups?: { id?: string | undefined; name?: string | undefined; } | undefined; thread?: { id?: string | number | undefined; name?: string | undefined; } | undefined; title?: string | undefined; uptime?: string | number | undefined; user?: { id?: string | undefined; name?: string | undefined; } | undefined; working_directory?: string | undefined; } | undefined; registry?: { data?: { bytes?: string | undefined; strings?: string[] | undefined; type?: string | undefined; } | undefined; hive?: string | undefined; key?: string | undefined; path?: string | undefined; value?: string | undefined; } | undefined; related?: { hash?: string[] | undefined; hosts?: string[] | undefined; ip?: string[] | undefined; user?: string[] | undefined; } | undefined; rule?: { author?: string[] | undefined; category?: string | undefined; description?: string | undefined; id?: string | undefined; license?: string | undefined; name?: string | undefined; reference?: string | undefined; ruleset?: string | undefined; uuid?: string | undefined; version?: string | undefined; } | undefined; server?: { address?: string | undefined; as?: { number?: string | number | undefined; organization?: { name?: string | undefined; } | undefined; } | undefined; bytes?: string | number | undefined; domain?: string | undefined; geo?: { city_name?: string | undefined; continent_code?: string | undefined; continent_name?: string | undefined; country_iso_code?: string | undefined; country_name?: string | undefined; location?: string | { type: string; coordinates: number[]; } | { lat: number; lon: number; } | { location: number[]; } | { location: string; } | undefined; name?: string | undefined; postal_code?: string | undefined; region_iso_code?: string | undefined; region_name?: string | undefined; timezone?: string | undefined; } | undefined; ip?: string | undefined; mac?: string | undefined; nat?: { ip?: string | undefined; port?: string | number | undefined; } | undefined; packets?: string | number | undefined; port?: string | number | undefined; registered_domain?: string | undefined; subdomain?: string | undefined; top_level_domain?: string | undefined; user?: { domain?: string | undefined; email?: string | undefined; full_name?: string | undefined; group?: { domain?: string | undefined; id?: string | undefined; name?: string | undefined; } | undefined; hash?: string | undefined; id?: string | undefined; name?: string | undefined; roles?: string[] | undefined; } | undefined; } | undefined; service?: { address?: string | undefined; environment?: string | undefined; ephemeral_id?: string | undefined; id?: string | undefined; name?: string | undefined; node?: { name?: string | undefined; role?: string | undefined; roles?: string[] | undefined; } | undefined; origin?: { address?: string | undefined; environment?: string | undefined; ephemeral_id?: string | undefined; id?: string | undefined; name?: string | undefined; node?: { name?: string | undefined; role?: string | undefined; roles?: string[] | undefined; } | undefined; state?: string | undefined; type?: string | undefined; version?: string | undefined; } | undefined; state?: string | undefined; target?: { address?: string | undefined; environment?: string | undefined; ephemeral_id?: string | undefined; id?: string | undefined; name?: string | undefined; node?: { name?: string | undefined; role?: string | undefined; roles?: string[] | undefined; } | undefined; state?: string | undefined; type?: string | undefined; version?: string | undefined; } | undefined; type?: string | undefined; version?: string | undefined; } | undefined; source?: { address?: string | undefined; as?: { number?: string | number | undefined; organization?: { name?: string | undefined; } | undefined; } | undefined; bytes?: string | number | undefined; domain?: string | undefined; geo?: { city_name?: string | undefined; continent_code?: string | undefined; continent_name?: string | undefined; country_iso_code?: string | undefined; country_name?: string | undefined; location?: string | { type: string; coordinates: number[]; } | { lat: number; lon: number; } | { location: number[]; } | { location: string; } | undefined; name?: string | undefined; postal_code?: string | undefined; region_iso_code?: string | undefined; region_name?: string | undefined; timezone?: string | undefined; } | undefined; ip?: string | undefined; mac?: string | undefined; nat?: { ip?: string | undefined; port?: string | number | undefined; } | undefined; packets?: string | number | undefined; port?: string | number | undefined; registered_domain?: string | undefined; subdomain?: string | undefined; top_level_domain?: string | undefined; user?: { domain?: string | undefined; email?: string | undefined; full_name?: string | undefined; group?: { domain?: string | undefined; id?: string | undefined; name?: string | undefined; } | undefined; hash?: string | undefined; id?: string | undefined; name?: string | undefined; roles?: string[] | undefined; } | undefined; } | undefined; span?: { id?: string | undefined; } | undefined; tags?: string[] | undefined; threat?: { enrichments?: { matched?: { atomic?: string | undefined; field?: string | undefined; id?: string | undefined; index?: string | undefined; occurred?: string | undefined; type?: string | undefined; } | undefined; }[] | undefined; feed?: { dashboard_id?: string | undefined; description?: string | undefined; name?: string | undefined; reference?: string | undefined; } | undefined; framework?: string | undefined; group?: { alias?: string[] | undefined; id?: string | undefined; name?: string | undefined; reference?: string | undefined; } | undefined; indicator?: { as?: { number?: string | number | undefined; organization?: { name?: string | undefined; } | undefined; } | undefined; confidence?: string | undefined; description?: string | undefined; email?: { address?: string | undefined; } | undefined; file?: { accessed?: string | undefined; attributes?: string[] | undefined; code_signature?: { digest_algorithm?: string | undefined; exists?: boolean | undefined; signing_id?: string | undefined; status?: string | undefined; subject_name?: string | undefined; team_id?: string | undefined; timestamp?: string | undefined; trusted?: boolean | undefined; valid?: boolean | undefined; } | undefined; created?: string | undefined; ctime?: string | undefined; device?: string | undefined; directory?: string | undefined; drive_letter?: string | undefined; elf?: { architecture?: string | undefined; byte_order?: string | undefined; cpu_type?: string | undefined; creation_date?: string | undefined; exports?: unknown[] | undefined; header?: { abi_version?: string | undefined; class?: string | undefined; data?: string | undefined; entrypoint?: string | number | undefined; object_version?: string | undefined; os_abi?: string | undefined; type?: string | undefined; version?: string | undefined; } | undefined; imports?: unknown[] | undefined; sections?: { chi2?: string | number | undefined; entropy?: string | number | undefined; flags?: string | undefined; name?: string | undefined; physical_offset?: string | undefined; physical_size?: string | number | undefined; type?: string | undefined; virtual_address?: string | number | undefined; virtual_size?: string | number | undefined; }[] | undefined; segments?: { sections?: string | undefined; type?: string | undefined; }[] | undefined; shared_libraries?: string[] | undefined; telfhash?: string | undefined; } | undefined; extension?: string | undefined; fork_name?: string | undefined; gid?: string | undefined; group?: string | undefined; hash?: { md5?: string | undefined; sha1?: string | undefined; sha256?: string | undefined; sha384?: string | undefined; sha512?: string | undefined; ssdeep?: string | undefined; tlsh?: string | undefined; } | undefined; inode?: string | undefined; mime_type?: string | undefined; mode?: string | undefined; mtime?: string | undefined; name?: string | undefined; owner?: string | undefined; path?: string | undefined; pe?: { architecture?: string | undefined; company?: string | undefined; description?: string | undefined; file_version?: string | undefined; imphash?: string | undefined; original_file_name?: string | undefined; pehash?: string | undefined; product?: string | undefined; } | undefined; size?: string | number | undefined; target_path?: string | undefined; type?: string | undefined; uid?: string | undefined; x509?: { alternative_names?: string[] | undefined; issuer?: { common_name?: string[] | undefined; country?: string[] | undefined; distinguished_name?: string | undefined; locality?: string[] | undefined; organization?: string[] | undefined; organizational_unit?: string[] | undefined; state_or_province?: string[] | undefined; } | undefined; not_after?: string | undefined; not_before?: string | undefined; public_key_algorithm?: string | undefined; public_key_curve?: string | undefined; public_key_exponent?: string | number | undefined; public_key_size?: string | number | undefined; serial_number?: string | undefined; signature_algorithm?: string | undefined; subject?: { common_name?: string[] | undefined; country?: string[] | undefined; distinguished_name?: string | undefined; locality?: string[] | undefined; organization?: string[] | undefined; organizational_unit?: string[] | undefined; state_or_province?: string[] | undefined; } | undefined; version_number?: string | undefined; } | undefined; } | undefined; first_seen?: string | undefined; geo?: { city_name?: string | undefined; continent_code?: string | undefined; continent_name?: string | undefined; country_iso_code?: string | undefined; country_name?: string | undefined; location?: string | { type: string; coordinates: number[]; } | { lat: number; lon: number; } | { location: number[]; } | { location: string; } | undefined; name?: string | undefined; postal_code?: string | undefined; region_iso_code?: string | undefined; region_name?: string | undefined; timezone?: string | undefined; } | undefined; ip?: string | undefined; last_seen?: string | undefined; marking?: { tlp?: string | undefined; tlp_version?: string | undefined; } | undefined; modified_at?: string | undefined; port?: string | number | undefined; provider?: string | undefined; reference?: string | undefined; registry?: { data?: { bytes?: string | undefined; strings?: string[] | undefined; type?: string | undefined; } | undefined; hive?: string | undefined; key?: string | undefined; path?: string | undefined; value?: string | undefined; } | undefined; scanner_stats?: string | number | undefined; sightings?: string | number | undefined; type?: string | undefined; url?: { domain?: string | undefined; extension?: string | undefined; fragment?: string | undefined; full?: string | undefined; original?: string | undefined; password?: string | undefined; path?: string | undefined; port?: string | number | undefined; query?: string | undefined; registered_domain?: string | undefined; scheme?: string | undefined; subdomain?: string | undefined; top_level_domain?: string | undefined; username?: string | undefined; } | undefined; x509?: { alternative_names?: string[] | undefined; issuer?: { common_name?: string[] | undefined; country?: string[] | undefined; distinguished_name?: string | undefined; locality?: string[] | undefined; organization?: string[] | undefined; organizational_unit?: string[] | undefined; state_or_province?: string[] | undefined; } | undefined; not_after?: string | undefined; not_before?: string | undefined; public_key_algorithm?: string | undefined; public_key_curve?: string | undefined; public_key_exponent?: string | number | undefined; public_key_size?: string | number | undefined; serial_number?: string | undefined; signature_algorithm?: string | undefined; subject?: { common_name?: string[] | undefined; country?: string[] | undefined; distinguished_name?: string | undefined; locality?: string[] | undefined; organization?: string[] | undefined; organizational_unit?: string[] | undefined; state_or_province?: string[] | undefined; } | undefined; version_number?: string | undefined; } | undefined; } | undefined; software?: { alias?: string[] | undefined; id?: string | undefined; name?: string | undefined; platforms?: string[] | undefined; reference?: string | undefined; type?: string | undefined; } | undefined; tactic?: { id?: string[] | undefined; name?: string[] | undefined; reference?: string[] | undefined; } | undefined; technique?: { id?: string[] | undefined; name?: string[] | undefined; reference?: string[] | undefined; subtechnique?: { id?: string[] | undefined; name?: string[] | undefined; reference?: string[] | undefined; } | undefined; } | undefined; } | undefined; tls?: { cipher?: string | undefined; client?: { certificate?: string | undefined; certificate_chain?: string[] | undefined; hash?: { md5?: string | undefined; sha1?: string | undefined; sha256?: string | undefined; } | undefined; issuer?: string | undefined; ja3?: string | undefined; not_after?: string | undefined; not_before?: string | undefined; server_name?: string | undefined; subject?: string | undefined; supported_ciphers?: string[] | undefined; x509?: { alternative_names?: string[] | undefined; issuer?: { common_name?: string[] | undefined; country?: string[] | undefined; distinguished_name?: string | undefined; locality?: string[] | undefined; organization?: string[] | undefined; organizational_unit?: string[] | undefined; state_or_province?: string[] | undefined; } | undefined; not_after?: string | undefined; not_before?: string | undefined; public_key_algorithm?: string | undefined; public_key_curve?: string | undefined; public_key_exponent?: string | number | undefined; public_key_size?: string | number | undefined; serial_number?: string | undefined; signature_algorithm?: string | undefined; subject?: { common_name?: string[] | undefined; country?: string[] | undefined; distinguished_name?: string | undefined; locality?: string[] | undefined; organization?: string[] | undefined; organizational_unit?: string[] | undefined; state_or_province?: string[] | undefined; } | undefined; version_number?: string | undefined; } | undefined; } | undefined; curve?: string | undefined; established?: boolean | undefined; next_protocol?: string | undefined; resumed?: boolean | undefined; server?: { certificate?: string | undefined; certificate_chain?: string[] | undefined; hash?: { md5?: string | undefined; sha1?: string | undefined; sha256?: string | undefined; } | undefined; issuer?: string | undefined; ja3s?: string | undefined; not_after?: string | undefined; not_before?: string | undefined; subject?: string | undefined; x509?: { alternative_names?: string[] | undefined; issuer?: { common_name?: string[] | undefined; country?: string[] | undefined; distinguished_name?: string | undefined; locality?: string[] | undefined; organization?: string[] | undefined; organizational_unit?: string[] | undefined; state_or_province?: string[] | undefined; } | undefined; not_after?: string | undefined; not_before?: string | undefined; public_key_algorithm?: string | undefined; public_key_curve?: string | undefined; public_key_exponent?: string | number | undefined; public_key_size?: string | number | undefined; serial_number?: string | undefined; signature_algorithm?: string | undefined; subject?: { common_name?: string[] | undefined; country?: string[] | undefined; distinguished_name?: string | undefined; locality?: string[] | undefined; organization?: string[] | undefined; organizational_unit?: string[] | undefined; state_or_province?: string[] | undefined; } | undefined; version_number?: string | undefined; } | undefined; } | undefined; version?: string | undefined; version_protocol?: string | undefined; } | undefined; trace?: { id?: string | undefined; } | undefined; transaction?: { id?: string | undefined; } | undefined; url?: { domain?: string | undefined; extension?: string | undefined; fragment?: string | undefined; full?: string | undefined; original?: string | undefined; password?: string | undefined; path?: string | undefined; port?: string | number | undefined; query?: string | undefined; registered_domain?: string | undefined; scheme?: string | undefined; subdomain?: string | undefined; top_level_domain?: string | undefined; username?: string | undefined; } | undefined; user?: { changes?: { domain?: string | undefined; email?: string | undefined; full_name?: string | undefined; group?: { domain?: string | undefined; id?: string | undefined; name?: string | undefined; } | undefined; hash?: string | undefined; id?: string | undefined; name?: string | undefined; roles?: string[] | undefined; } | undefined; domain?: string | undefined; effective?: { domain?: string | undefined; email?: string | undefined; full_name?: string | undefined; group?: { domain?: string | undefined; id?: string | undefined; name?: string | undefined; } | undefined; hash?: string | undefined; id?: string | undefined; name?: string | undefined; roles?: string[] | undefined; } | undefined; email?: string | undefined; full_name?: string | undefined; group?: { domain?: string | undefined; id?: string | undefined; name?: string | undefined; } | undefined; hash?: string | undefined; id?: string | undefined; name?: string | undefined; risk?: { calculated_level?: string | undefined; calculated_score?: number | undefined; calculated_score_norm?: number | undefined; static_level?: string | undefined; static_score?: number | undefined; static_score_norm?: number | undefined; } | undefined; roles?: string[] | undefined; target?: { domain?: string | undefined; email?: string | undefined; full_name?: string | undefined; group?: { domain?: string | undefined; id?: string | undefined; name?: string | undefined; } | undefined; hash?: string | undefined; id?: string | undefined; name?: string | undefined; roles?: string[] | undefined; } | undefined; } | undefined; user_agent?: { device?: { name?: string | undefined; } | undefined; name?: string | undefined; original?: string | undefined; os?: { family?: string | undefined; full?: string | undefined; kernel?: string | undefined; name?: string | undefined; platform?: string | undefined; type?: string | undefined; version?: string | undefined; } | undefined; version?: string | undefined; } | undefined; vulnerability?: { category?: string[] | undefined; classification?: string | undefined; description?: string | undefined; enumeration?: string | undefined; id?: string | undefined; reference?: string | undefined; report_id?: string | undefined; scanner?: { vendor?: string | undefined; } | undefined; score?: { base?: number | undefined; environmental?: number | undefined; temporal?: number | undefined; version?: string | undefined; } | undefined; severity?: string | undefined; } | undefined; } & {} & { ecs?: { version?: string | undefined; } | undefined; kibana?: { alert?: { risk_score?: number | undefined; rule?: { author?: string | undefined; created_at?: string | undefined; created_by?: string | undefined; description?: string | undefined; enabled?: string | undefined; from?: string | undefined; interval?: string | undefined; license?: string | undefined; note?: string | undefined; references?: string[] | undefined; rule_id?: string | undefined; rule_name_override?: string | undefined; to?: string | undefined; type?: string | undefined; updated_at?: string | undefined; updated_by?: string | undefined; version?: string | undefined; } | undefined; severity?: string | undefined; suppression?: { docs_count?: string | number | undefined; end?: string | undefined; start?: string | undefined; terms?: { field?: string[] | undefined; value?: string[] | undefined; } | undefined; } | undefined; system_status?: string | undefined; workflow_reason?: string | undefined; workflow_user?: string | undefined; } | undefined; } | undefined; }) | ({} & { kibana?: { alert?: { evaluation?: { threshold?: string | number | undefined; value?: string | number | undefined; values?: (string | number)[] | undefined; } | undefined; } | undefined; } | undefined; slo?: { id?: string | undefined; instanceId?: string | undefined; revision?: string | number | undefined; } | undefined; } & { '@timestamp': string; kibana: { alert: { instance: { id: string; }; rule: { category: string; consumer: string; name: string; producer: string; revision: string | number; rule_type_id: string; uuid: string; }; status: string; uuid: string; }; space_ids: string[]; }; } & { event?: { action?: string | undefined; kind?: string | undefined; } | undefined; kibana?: { alert?: { action_group?: string | undefined; case_ids?: string[] | undefined; duration?: { us?: string | number | undefined; } | undefined; end?: string | undefined; flapping?: boolean | undefined; flapping_history?: boolean[] | undefined; last_detected?: string | undefined; maintenance_window_ids?: string[] | undefined; reason?: string | undefined; rule?: { execution?: { uuid?: string | undefined; } | undefined; parameters?: unknown; tags?: string[] | undefined; } | undefined; start?: string | undefined; time_range?: { gte?: string | undefined; lte?: string | undefined; } | undefined; url?: string | undefined; workflow_status?: string | undefined; workflow_tags?: string[] | undefined; } | undefined; version?: string | undefined; } | undefined; tags?: string[] | undefined; } & {} & { ecs?: { version?: string | undefined; } | undefined; kibana?: { alert?: { risk_score?: number | undefined; rule?: { author?: string | undefined; created_at?: string | undefined; created_by?: string | undefined; description?: string | undefined; enabled?: string | undefined; from?: string | undefined; interval?: string | undefined; license?: string | undefined; note?: string | undefined; references?: string[] | undefined; rule_id?: string | undefined; rule_name_override?: string | undefined; to?: string | undefined; type?: string | undefined; updated_at?: string | undefined; updated_by?: string | undefined; version?: string | undefined; } | undefined; severity?: string | undefined; suppression?: { docs_count?: string | number | undefined; end?: string | undefined; start?: string | undefined; terms?: { field?: string[] | undefined; value?: string[] | undefined; } | undefined; } | undefined; system_status?: string | undefined; workflow_reason?: string | undefined; workflow_user?: string | undefined; } | undefined; } | undefined; }) | ({} & { agent?: { name?: string | undefined; } | undefined; anomaly?: { bucket_span?: { minutes?: string | undefined; } | undefined; start?: string | undefined; } | undefined; error?: { message?: string | undefined; } | undefined; kibana?: { alert?: { evaluation?: { threshold?: string | number | undefined; value?: string | number | undefined; values?: (string | number)[] | undefined; } | undefined; } | undefined; } | undefined; monitor?: { id?: string | undefined; name?: string | undefined; type?: string | undefined; } | undefined; observer?: { geo?: { name?: string | undefined; } | undefined; } | undefined; tls?: { server?: { hash?: { sha256?: string | undefined; } | undefined; x509?: { issuer?: { common_name?: string | undefined; } | undefined; not_after?: string | undefined; not_before?: string | undefined; subject?: { common_name?: string | undefined; } | undefined; } | undefined; } | undefined; } | undefined; url?: { full?: string | undefined; } | undefined; } & { '@timestamp': string; kibana: { alert: { instance: { id: string; }; rule: { category: string; consumer: string; name: string; producer: string; revision: string | number; rule_type_id: string; uuid: string; }; status: string; uuid: string; }; space_ids: string[]; }; } & { event?: { action?: string | undefined; kind?: string | undefined; } | undefined; kibana?: { alert?: { action_group?: string | undefined; case_ids?: string[] | undefined; duration?: { us?: string | number | undefined; } | undefined; end?: string | undefined; flapping?: boolean | undefined; flapping_history?: boolean[] | undefined; last_detected?: string | undefined; maintenance_window_ids?: string[] | undefined; reason?: string | undefined; rule?: { execution?: { uuid?: string | undefined; } | undefined; parameters?: unknown; tags?: string[] | undefined; } | undefined; start?: string | undefined; time_range?: { gte?: string | undefined; lte?: string | undefined; } | undefined; url?: string | undefined; workflow_status?: string | undefined; workflow_tags?: string[] | undefined; } | undefined; version?: string | undefined; } | undefined; tags?: string[] | undefined; } & {} & { ecs?: { version?: string | undefined; } | undefined; kibana?: { alert?: { risk_score?: number | undefined; rule?: { author?: string | undefined; created_at?: string | undefined; created_by?: string | undefined; description?: string | undefined; enabled?: string | undefined; from?: string | undefined; interval?: string | undefined; license?: string | undefined; note?: string | undefined; references?: string[] | undefined; rule_id?: string | undefined; rule_name_override?: string | undefined; to?: string | undefined; type?: string | undefined; updated_at?: string | undefined; updated_by?: string | undefined; version?: string | undefined; } | undefined; severity?: string | undefined; suppression?: { docs_count?: string | number | undefined; end?: string | undefined; start?: string | undefined; terms?: { field?: string[] | undefined; value?: string[] | undefined; } | undefined; } | undefined; system_status?: string | undefined; workflow_reason?: string | undefined; workflow_user?: string | undefined; } | undefined; } | undefined; }) | ({ '@timestamp': string; kibana: { alert: { ancestors: { depth: string | number; id: string; index: string; type: string; }[]; depth: string | number; instance: { id: string; }; original_event: { action: string; category: string[]; created: string; dataset: string; id: string; ingested: string; kind: string; module: string; original: string; outcome: string; provider: string; sequence: string | number; type: string[]; }; original_time: string; rule: { category: string; consumer: string; false_positives: string[]; max_signals: (string | number)[]; name: string; producer: string; revision: string | number; rule_type_id: string; threat: { framework: string; tactic: { id: string; name: string; reference: string; }; technique: { id: string; name: string; reference: string; subtechnique: { id: string; name: string; reference: string; }; }; }; uuid: string; }; status: string; uuid: string; }; space_ids: string[]; }; } & { ecs?: { version?: string | undefined; } | undefined; event?: { action?: string | undefined; kind?: string | undefined; } | undefined; kibana?: { alert?: { action_group?: string | undefined; ancestors?: { rule?: string | undefined; } | undefined; building_block_type?: string | undefined; case_ids?: string[] | undefined; duration?: { us?: string | number | undefined; } | undefined; end?: string | undefined; flapping?: boolean | undefined; flapping_history?: boolean[] | undefined; group?: { id?: string | undefined; index?: number | undefined; } | undefined; last_detected?: string | undefined; maintenance_window_ids?: string[] | undefined; new_terms?: string[] | undefined; original_event?: { agent_id_status?: string | undefined; code?: string | undefined; duration?: string | undefined; end?: string | undefined; hash?: string | undefined; reason?: string | undefined; reference?: string | undefined; risk_score?: number | undefined; risk_score_norm?: number | undefined; severity?: string | number | undefined; start?: string | undefined; timezone?: string | undefined; url?: string | undefined; } | undefined; reason?: string | undefined; risk_score?: number | undefined; rule?: { author?: string | undefined; building_block_type?: string | undefined; created_at?: string | undefined; created_by?: string | undefined; description?: string | undefined; enabled?: string | undefined; execution?: { uuid?: string | undefined; } | undefined; from?: string | undefined; immutable?: string[] | undefined; interval?: string | undefined; license?: string | undefined; note?: string | undefined; parameters?: unknown; references?: string[] | undefined; rule_id?: string | undefined; rule_name_override?: string | undefined; tags?: string[] | undefined; timeline_id?: string[] | undefined; timeline_title?: string[] | undefined; timestamp_override?: string | undefined; to?: string | undefined; type?: string | undefined; updated_at?: string | undefined; updated_by?: string | undefined; version?: string | undefined; } | undefined; severity?: string | undefined; start?: string | undefined; suppression?: { docs_count?: string | number | undefined; end?: string | undefined; start?: string | undefined; terms?: { field?: string[] | undefined; value?: string[] | undefined; } | undefined; } | undefined; system_status?: string | undefined; threshold_result?: { count?: string | number | undefined; from?: string | undefined; terms?: { field?: string | undefined; value?: string | undefined; }[] | undefined; } | undefined; time_range?: { gte?: string | undefined; lte?: string | undefined; } | undefined; url?: string | undefined; workflow_reason?: string | undefined; workflow_status?: string | undefined; workflow_tags?: string[] | undefined; workflow_user?: string | undefined; } | undefined; version?: string | undefined; } | undefined; signal?: { ancestors?: { depth?: unknown; id?: unknown; index?: unknown; type?: unknown; } | undefined; depth?: unknown; group?: { id?: unknown; index?: unknown; } | undefined; original_event?: { action?: unknown; category?: unknown; code?: unknown; created?: unknown; dataset?: unknown; duration?: unknown; end?: unknown; hash?: unknown; id?: unknown; kind?: unknown; module?: unknown; outcome?: unknown; provider?: unknown; reason?: unknown; risk_score?: unknown; risk_score_norm?: unknown; sequence?: unknown; severity?: unknown; start?: unknown; timezone?: unknown; type?: unknown; } | undefined; original_time?: unknown; reason?: unknown; rule?: { author?: unknown; building_block_type?: unknown; created_at?: unknown; created_by?: unknown; description?: unknown; enabled?: unknown; false_positives?: unknown; from?: unknown; id?: unknown; immutable?: unknown; interval?: unknown; license?: unknown; max_signals?: unknown; name?: unknown; note?: unknown; references?: unknown; risk_score?: unknown; rule_id?: unknown; rule_name_override?: unknown; severity?: unknown; tags?: unknown; threat?: { framework?: unknown; tactic?: { id?: unknown; name?: unknown; reference?: unknown; } | undefined; technique?: { id?: unknown; name?: unknown; reference?: unknown; subtechnique?: { id?: unknown; name?: unknown; reference?: unknown; } | undefined; } | undefined; } | undefined; timeline_id?: unknown; timeline_title?: unknown; timestamp_override?: unknown; to?: unknown; type?: unknown; updated_at?: unknown; updated_by?: unknown; version?: unknown; } | undefined; status?: unknown; threshold_result?: { cardinality?: { field?: unknown; value?: unknown; } | undefined; count?: unknown; from?: unknown; terms?: { field?: unknown; value?: unknown; } | undefined; } | undefined; } | undefined; tags?: string[] | undefined; } & { '@timestamp': string; kibana: { alert: { instance: { id: string; }; rule: { category: string; consumer: string; name: string; producer: string; revision: string | number; rule_type_id: string; uuid: string; }; status: string; uuid: string; }; space_ids: string[]; }; } & { event?: { action?: string | undefined; kind?: string | undefined; } | undefined; kibana?: { alert?: { action_group?: string | undefined; case_ids?: string[] | undefined; duration?: { us?: string | number | undefined; } | undefined; end?: string | undefined; flapping?: boolean | undefined; flapping_history?: boolean[] | undefined; last_detected?: string | undefined; maintenance_window_ids?: string[] | undefined; reason?: string | undefined; rule?: { execution?: { uuid?: string | undefined; } | undefined; parameters?: unknown; tags?: string[] | undefined; } | undefined; start?: string | undefined; time_range?: { gte?: string | undefined; lte?: string | undefined; } | undefined; url?: string | undefined; workflow_status?: string | undefined; workflow_tags?: string[] | undefined; } | undefined; version?: string | undefined; } | undefined; tags?: string[] | undefined; } & { '@timestamp': string; ecs: { version: string; }; } & { agent?: { build?: { original?: string | undefined; } | undefined; ephemeral_id?: string | undefined; id?: string | undefined; name?: string | undefined; type?: string | undefined; version?: string | undefined; } | undefined; client?: { address?: string | undefined; as?: { number?: string | number | undefined; organization?: { name?: string | undefined; } | undefined; } | undefined; bytes?: string | number | undefined; domain?: string | undefined; geo?: { city_name?: string | undefined; continent_code?: string | undefined; continent_name?: string | undefined; country_iso_code?: string | undefined; country_name?: string | undefined; location?: string | { type: string; coordinates: number[]; } | { lat: number; lon: number; } | { location: number[]; } | { location: string; } | undefined; name?: string | undefined; postal_code?: string | undefined; region_iso_code?: string | undefined; region_name?: string | undefined; timezone?: string | undefined; } | undefined; ip?: string | undefined; mac?: string | undefined; nat?: { ip?: string | undefined; port?: string | number | undefined; } | undefined; packets?: string | number | undefined; port?: string | number | undefined; registered_domain?: string | undefined; subdomain?: string | undefined; top_level_domain?: string | undefined; user?: { domain?: string | undefined; email?: string | undefined; full_name?: string | undefined; group?: { domain?: string | undefined; id?: string | undefined; name?: string | undefined; } | undefined; hash?: string | undefined; id?: string | undefined; name?: string | undefined; roles?: string[] | undefined; } | undefined; } | undefined; cloud?: { account?: { id?: string | undefined; name?: string | undefined; } | undefined; availability_zone?: string | undefined; instance?: { id?: string | undefined; name?: string | undefined; } | undefined; machine?: { type?: string | undefined; } | undefined; origin?: { account?: { id?: string | undefined; name?: string | undefined; } | undefined; availability_zone?: string | undefined; instance?: { id?: string | undefined; name?: string | undefined; } | undefined; machine?: { type?: string | undefined; } | undefined; project?: { id?: string | undefined; name?: string | undefined; } | undefined; provider?: string | undefined; region?: string | undefined; service?: { name?: string | undefined; } | undefined; } | undefined; project?: { id?: string | undefined; name?: string | undefined; } | undefined; provider?: string | undefined; region?: string | undefined; service?: { name?: string | undefined; } | undefined; target?: { account?: { id?: string | undefined; name?: string | undefined; } | undefined; availability_zone?: string | undefined; instance?: { id?: string | undefined; name?: string | undefined; } | undefined; machine?: { type?: string | undefined; } | undefined; project?: { id?: string | undefined; name?: string | undefined; } | undefined; provider?: string | undefined; region?: string | undefined; service?: { name?: string | undefined; } | undefined; } | undefined; } | undefined; container?: { cpu?: { usage?: string | number | undefined; } | undefined; disk?: { read?: { bytes?: string | number | undefined; } | undefined; write?: { bytes?: string | number | undefined; } | undefined; } | undefined; id?: string | undefined; image?: { hash?: { all?: string[] | undefined; } | undefined; name?: string | undefined; tag?: string[] | undefined; } | undefined; memory?: { usage?: string | number | undefined; } | undefined; name?: string | undefined; network?: { egress?: { bytes?: string | number | undefined; } | undefined; ingress?: { bytes?: string | number | undefined; } | undefined; } | undefined; runtime?: string | undefined; } | undefined; destination?: { address?: string | undefined; as?: { number?: string | number | undefined; organization?: { name?: string | undefined; } | undefined; } | undefined; bytes?: string | number | undefined; domain?: string | undefined; geo?: { city_name?: string | undefined; continent_code?: string | undefined; continent_name?: string | undefined; country_iso_code?: string | undefined; country_name?: string | undefined; location?: string | { type: string; coordinates: number[]; } | { lat: number; lon: number; } | { location: number[]; } | { location: string; } | undefined; name?: string | undefined; postal_code?: string | undefined; region_iso_code?: string | undefined; region_name?: string | undefined; timezone?: string | undefined; } | undefined; ip?: string | undefined; mac?: string | undefined; nat?: { ip?: string | undefined; port?: string | number | undefined; } | undefined; packets?: string | number | undefined; port?: string | number | undefined; registered_domain?: string | undefined; subdomain?: string | undefined; top_level_domain?: string | undefined; user?: { domain?: string | undefined; email?: string | undefined; full_name?: string | undefined; group?: { domain?: string | undefined; id?: string | undefined; name?: string | undefined; } | undefined; hash?: string | undefined; id?: string | undefined; name?: string | undefined; roles?: string[] | undefined; } | undefined; } | undefined; device?: { id?: string | undefined; manufacturer?: string | undefined; model?: { identifier?: string | undefined; name?: string | undefined; } | undefined; } | undefined; dll?: { code_signature?: { digest_algorithm?: string | undefined; exists?: boolean | undefined; signing_id?: string | undefined; status?: string | undefined; subject_name?: string | undefined; team_id?: string | undefined; timestamp?: string | undefined; trusted?: boolean | undefined; valid?: boolean | undefined; } | undefined; hash?: { md5?: string | undefined; sha1?: string | undefined; sha256?: string | undefined; sha384?: string | undefined; sha512?: string | undefined; ssdeep?: string | undefined; tlsh?: string | undefined; } | undefined; name?: string | undefined; path?: string | undefined; pe?: { architecture?: string | undefined; company?: string | undefined; description?: string | undefined; file_version?: string | undefined; imphash?: string | undefined; original_file_name?: string | undefined; pehash?: string | undefined; product?: string | undefined; } | undefined; } | undefined; dns?: { answers?: { class?: string | undefined; data?: string | undefined; name?: string | undefined; ttl?: string | number | undefined; type?: string | undefined; }[] | undefined; header_flags?: string[] | undefined; id?: string | undefined; op_code?: string | undefined; question?: { class?: string | undefined; name?: string | undefined; registered_domain?: string | undefined; subdomain?: string | undefined; top_level_domain?: string | undefined; type?: string | undefined; } | undefined; resolved_ip?: string[] | undefined; response_code?: string | undefined; type?: string | undefined; } | undefined; email?: { attachments?: { file?: { extension?: string | undefined; hash?: { md5?: string | undefined; sha1?: string | undefined; sha256?: string | undefined; sha384?: string | undefined; sha512?: string | undefined; ssdeep?: string | undefined; tlsh?: string | undefined; } | undefined; mime_type?: string | undefined; name?: string | undefined; size?: string | number | undefined; } | undefined; }[] | undefined; bcc?: { address?: string[] | undefined; } | undefined; cc?: { address?: string[] | undefined; } | undefined; content_type?: string | undefined; delivery_timestamp?: string | undefined; direction?: string | undefined; from?: { address?: string[] | undefined; } | undefined; local_id?: string | undefined; message_id?: string | undefined; origination_timestamp?: string | undefined; reply_to?: { address?: string[] | undefined; } | undefined; sender?: { address?: string | undefined; } | undefined; subject?: string | undefined; to?: { address?: string[] | undefined; } | undefined; x_mailer?: string | undefined; } | undefined; error?: { code?: string | undefined; id?: string | undefined; message?: string | undefined; stack_trace?: string | undefined; type?: string | undefined; } | undefined; event?: { action?: string | undefined; agent_id_status?: string | undefined; category?: string[] | undefined; code?: string | undefined; created?: string | undefined; dataset?: string | undefined; duration?: string | number | undefined; end?: string | undefined; hash?: string | undefined; id?: string | undefined; ingested?: string | undefined; kind?: string | undefined; module?: string | undefined; original?: string | undefined; outcome?: string | undefined; provider?: string | undefined; reason?: string | undefined; reference?: string | undefined; risk_score?: number | undefined; risk_score_norm?: number | undefined; sequence?: string | number | undefined; severity?: string | number | undefined; start?: string | undefined; timezone?: string | undefined; type?: string[] | undefined; url?: string | undefined; } | undefined; faas?: { coldstart?: boolean | undefined; execution?: string | undefined; id?: string | undefined; name?: string | undefined; version?: string | undefined; } | undefined; file?: { accessed?: string | undefined; attributes?: string[] | undefined; code_signature?: { digest_algorithm?: string | undefined; exists?: boolean | undefined; signing_id?: string | undefined; status?: string | undefined; subject_name?: string | undefined; team_id?: string | undefined; timestamp?: string | undefined; trusted?: boolean | undefined; valid?: boolean | undefined; } | undefined; created?: string | undefined; ctime?: string | undefined; device?: string | undefined; directory?: string | undefined; drive_letter?: string | undefined; elf?: { architecture?: string | undefined; byte_order?: string | undefined; cpu_type?: string | undefined; creation_date?: string | undefined; exports?: unknown[] | undefined; header?: { abi_version?: string | undefined; class?: string | undefined; data?: string | undefined; entrypoint?: string | number | undefined; object_version?: string | undefined; os_abi?: string | undefined; type?: string | undefined; version?: string | undefined; } | undefined; imports?: unknown[] | undefined; sections?: { chi2?: string | number | undefined; entropy?: string | number | undefined; flags?: string | undefined; name?: string | undefined; physical_offset?: string | undefined; physical_size?: string | number | undefined; type?: string | undefined; virtual_address?: string | number | undefined; virtual_size?: string | number | undefined; }[] | undefined; segments?: { sections?: string | undefined; type?: string | undefined; }[] | undefined; shared_libraries?: string[] | undefined; telfhash?: string | undefined; } | undefined; extension?: string | undefined; fork_name?: string | undefined; gid?: string | undefined; group?: string | undefined; hash?: { md5?: string | undefined; sha1?: string | undefined; sha256?: string | undefined; sha384?: string | undefined; sha512?: string | undefined; ssdeep?: string | undefined; tlsh?: string | undefined; } | undefined; inode?: string | undefined; mime_type?: string | undefined; mode?: string | undefined; mtime?: string | undefined; name?: string | undefined; owner?: string | undefined; path?: string | undefined; pe?: { architecture?: string | undefined; company?: string | undefined; description?: string | undefined; file_version?: string | undefined; imphash?: string | undefined; original_file_name?: string | undefined; pehash?: string | undefined; product?: string | undefined; } | undefined; size?: string | number | undefined; target_path?: string | undefined; type?: string | undefined; uid?: string | undefined; x509?: { alternative_names?: string[] | undefined; issuer?: { common_name?: string[] | undefined; country?: string[] | undefined; distinguished_name?: string | undefined; locality?: string[] | undefined; organization?: string[] | undefined; organizational_unit?: string[] | undefined; state_or_province?: string[] | undefined; } | undefined; not_after?: string | undefined; not_before?: string | undefined; public_key_algorithm?: string | undefined; public_key_curve?: string | undefined; public_key_exponent?: string | number | undefined; public_key_size?: string | number | undefined; serial_number?: string | undefined; signature_algorithm?: string | undefined; subject?: { common_name?: string[] | undefined; country?: string[] | undefined; distinguished_name?: string | undefined; locality?: string[] | undefined; organization?: string[] | undefined; organizational_unit?: string[] | undefined; state_or_province?: string[] | undefined; } | undefined; version_number?: string | undefined; } | undefined; } | undefined; group?: { domain?: string | undefined; id?: string | undefined; name?: string | undefined; } | undefined; host?: { architecture?: string | undefined; boot?: { id?: string | undefined; } | undefined; cpu?: { usage?: string | number | undefined; } | undefined; disk?: { read?: { bytes?: string | number | undefined; } | undefined; write?: { bytes?: string | number | undefined; } | undefined; } | undefined; domain?: string | undefined; geo?: { city_name?: string | undefined; continent_code?: string | undefined; continent_name?: string | undefined; country_iso_code?: string | undefined; country_name?: string | undefined; location?: string | { type: string; coordinates: number[]; } | { lat: number; lon: number; } | { location: number[]; } | { location: string; } | undefined; name?: string | undefined; postal_code?: string | undefined; region_iso_code?: string | undefined; region_name?: string | undefined; timezone?: string | undefined; } | undefined; hostname?: string | undefined; id?: string | undefined; ip?: string[] | undefined; mac?: string[] | undefined; name?: string | undefined; network?: { egress?: { bytes?: string | number | undefined; packets?: string | number | undefined; } | undefined; ingress?: { bytes?: string | number | undefined; packets?: string | number | undefined; } | undefined; } | undefined; os?: { family?: string | undefined; full?: string | undefined; kernel?: string | undefined; name?: string | undefined; platform?: string | undefined; type?: string | undefined; version?: string | undefined; } | undefined; pid_ns_ino?: string | undefined; risk?: { calculated_level?: string | undefined; calculated_score?: number | undefined; calculated_score_norm?: number | undefined; static_level?: string | undefined; static_score?: number | undefined; static_score_norm?: number | undefined; } | undefined; type?: string | undefined; uptime?: string | number | undefined; } | undefined; http?: { request?: { body?: { bytes?: string | number | undefined; content?: string | undefined; } | undefined; bytes?: string | number | undefined; id?: string | undefined; method?: string | undefined; mime_type?: string | undefined; referrer?: string | undefined; } | undefined; response?: { body?: { bytes?: string | number | undefined; content?: string | undefined; } | undefined; bytes?: string | number | undefined; mime_type?: string | undefined; status_code?: string | number | undefined; } | undefined; version?: string | undefined; } | undefined; log?: { file?: { path?: string | undefined; } | undefined; level?: string | undefined; logger?: string | undefined; origin?: { file?: { line?: string | number | undefined; name?: string | undefined; } | undefined; function?: string | undefined; } | undefined; } | undefined; message?: string | undefined; network?: { application?: string | undefined; bytes?: string | number | undefined; community_id?: string | undefined; direction?: string | undefined; forwarded_ip?: string | undefined; iana_number?: string | undefined; name?: string | undefined; packets?: string | number | undefined; protocol?: string | undefined; transport?: string | undefined; type?: string | undefined; vlan?: { id?: string | undefined; name?: string | undefined; } | undefined; } | undefined; observer?: { geo?: { city_name?: string | undefined; continent_code?: string | undefined; continent_name?: string | undefined; country_iso_code?: string | undefined; country_name?: string | undefined; location?: string | { type: string; coordinates: number[]; } | { lat: number; lon: number; } | { location: number[]; } | { location: string; } | undefined; name?: string | undefined; postal_code?: string | undefined; region_iso_code?: string | undefined; region_name?: string | undefined; timezone?: string | undefined; } | undefined; hostname?: string | undefined; ip?: string[] | undefined; mac?: string[] | undefined; name?: string | undefined; os?: { family?: string | undefined; full?: string | undefined; kernel?: string | undefined; name?: string | undefined; platform?: string | undefined; type?: string | undefined; version?: string | undefined; } | undefined; product?: string | undefined; serial_number?: string | undefined; type?: string | undefined; vendor?: string | undefined; version?: string | undefined; } | undefined; orchestrator?: { api_version?: string | undefined; cluster?: { id?: string | undefined; name?: string | undefined; url?: string | undefined; version?: string | undefined; } | undefined; namespace?: string | undefined; organization?: string | undefined; resource?: { id?: string | undefined; ip?: string[] | undefined; name?: string | undefined; parent?: { type?: string | undefined; } | undefined; type?: string | undefined; } | undefined; type?: string | undefined; } | undefined; organization?: { id?: string | undefined; name?: string | undefined; } | undefined; package?: { architecture?: string | undefined; build_version?: string | undefined; checksum?: string | undefined; description?: string | undefined; install_scope?: string | undefined; installed?: string | undefined; license?: string | undefined; name?: string | undefined; path?: string | undefined; reference?: string | undefined; size?: string | number | undefined; type?: string | undefined; version?: string | undefined; } | undefined; process?: { args?: string[] | undefined; args_count?: string | number | undefined; code_signature?: { digest_algorithm?: string | undefined; exists?: boolean | undefined; signing_id?: string | undefined; status?: string | undefined; subject_name?: string | undefined; team_id?: string | undefined; timestamp?: string | undefined; trusted?: boolean | undefined; valid?: boolean | undefined; } | undefined; command_line?: string | undefined; elf?: { architecture?: string | undefined; byte_order?: string | undefined; cpu_type?: string | undefined; creation_date?: string | undefined; exports?: unknown[] | undefined; header?: { abi_version?: string | undefined; class?: string | undefined; data?: string | undefined; entrypoint?: string | number | undefined; object_version?: string | undefined; os_abi?: string | undefined; type?: string | undefined; version?: string | undefined; } | undefined; imports?: unknown[] | undefined; sections?: { chi2?: string | number | undefined; entropy?: string | number | undefined; flags?: string | undefined; name?: string | undefined; physical_offset?: string | undefined; physical_size?: string | number | undefined; type?: string | undefined; virtual_address?: string | number | undefined; virtual_size?: string | number | undefined; }[] | undefined; segments?: { sections?: string | undefined; type?: string | undefined; }[] | undefined; shared_libraries?: string[] | undefined; telfhash?: string | undefined; } | undefined; end?: string | undefined; entity_id?: string | undefined; entry_leader?: { args?: string[] | undefined; args_count?: string | number | undefined; attested_groups?: { name?: string | undefined; } | undefined; attested_user?: { id?: string | undefined; name?: string | undefined; } | undefined; command_line?: string | undefined; entity_id?: string | undefined; entry_meta?: { source?: { ip?: string | undefined; } | undefined; type?: string | undefined; } | undefined; executable?: string | undefined; group?: { id?: string | undefined; name?: string | undefined; } | undefined; interactive?: boolean | undefined; name?: string | undefined; parent?: { entity_id?: string | undefined; pid?: string | number | undefined; session_leader?: { entity_id?: string | undefined; pid?: string | number | undefined; start?: string | undefined; } | undefined; start?: string | undefined; } | undefined; pid?: string | number | undefined; real_group?: { id?: string | undefined; name?: string | undefined; } | undefined; real_user?: { id?: string | undefined; name?: string | undefined; } | undefined; same_as_process?: boolean | undefined; saved_group?: { id?: string | undefined; name?: string | undefined; } | undefined; saved_user?: { id?: string | undefined; name?: string | undefined; } | undefined; start?: string | undefined; supplemental_groups?: { id?: string | undefined; name?: string | undefined; } | undefined; user?: { id?: string | undefined; name?: string | undefined; } | undefined; working_directory?: string | undefined; } | undefined; env_vars?: string[] | undefined; executable?: string | undefined; exit_code?: string | number | undefined; group_leader?: { args?: string[] | undefined; args_count?: string | number | undefined; command_line?: string | undefined; entity_id?: string | undefined; executable?: string | undefined; group?: { id?: string | undefined; name?: string | undefined; } | undefined; interactive?: boolean | undefined; name?: string | undefined; pid?: string | number | undefined; real_group?: { id?: string | undefined; name?: string | undefined; } | undefined; real_user?: { id?: string | undefined; name?: string | undefined; } | undefined; same_as_process?: boolean | undefined; saved_group?: { id?: string | undefined; name?: string | undefined; } | undefined; saved_user?: { id?: string | undefined; name?: string | undefined; } | undefined; start?: string | undefined; supplemental_groups?: { id?: string | undefined; name?: string | undefined; } | undefined; user?: { id?: string | undefined; name?: string | undefined; } | undefined; working_directory?: string | undefined; } | undefined; hash?: { md5?: string | undefined; sha1?: string | undefined; sha256?: string | undefined; sha384?: string | undefined; sha512?: string | undefined; ssdeep?: string | undefined; tlsh?: string | undefined; } | undefined; interactive?: boolean | undefined; name?: string | undefined; parent?: { args?: string[] | undefined; args_count?: string | number | undefined; code_signature?: { digest_algorithm?: string | undefined; exists?: boolean | undefined; signing_id?: string | undefined; status?: string | undefined; subject_name?: string | undefined; team_id?: string | undefined; timestamp?: string | undefined; trusted?: boolean | undefined; valid?: boolean | undefined; } | undefined; command_line?: string | undefined; elf?: { architecture?: string | undefined; byte_order?: string | undefined; cpu_type?: string | undefined; creation_date?: string | undefined; exports?: unknown[] | undefined; header?: { abi_version?: string | undefined; class?: string | undefined; data?: string | undefined; entrypoint?: string | number | undefined; object_version?: string | undefined; os_abi?: string | undefined; type?: string | undefined; version?: string | undefined; } | undefined; imports?: unknown[] | undefined; sections?: { chi2?: string | number | undefined; entropy?: string | number | undefined; flags?: string | undefined; name?: string | undefined; physical_offset?: string | undefined; physical_size?: string | number | undefined; type?: string | undefined; virtual_address?: string | number | undefined; virtual_size?: string | number | undefined; }[] | undefined; segments?: { sections?: string | undefined; type?: string | undefined; }[] | undefined; shared_libraries?: string[] | undefined; telfhash?: string | undefined; } | undefined; end?: string | undefined; entity_id?: string | undefined; executable?: string | undefined; exit_code?: string | number | undefined; group?: { id?: string | undefined; name?: string | undefined; } | undefined; group_leader?: { entity_id?: string | undefined; pid?: string | number | undefined; start?: string | undefined; } | undefined; hash?: { md5?: string | undefined; sha1?: string | undefined; sha256?: string | undefined; sha384?: string | undefined; sha512?: string | undefined; ssdeep?: string | undefined; tlsh?: string | undefined; } | undefined; interactive?: boolean | undefined; name?: string | undefined; pe?: { architecture?: string | undefined; company?: string | undefined; description?: string | undefined; file_version?: string | undefined; imphash?: string | undefined; original_file_name?: string | undefined; pehash?: string | undefined; product?: string | undefined; } | undefined; pgid?: string | number | undefined; pid?: string | number | undefined; real_group?: { id?: string | undefined; name?: string | undefined; } | undefined; real_user?: { id?: string | undefined; name?: string | undefined; } | undefined; saved_group?: { id?: string | undefined; name?: string | undefined; } | undefined; saved_user?: { id?: string | undefined; name?: string | undefined; } | undefined; start?: string | undefined; supplemental_groups?: { id?: string | undefined; name?: string | undefined; } | undefined; thread?: { id?: string | number | undefined; name?: string | undefined; } | undefined; title?: string | undefined; uptime?: string | number | undefined; user?: { id?: string | undefined; name?: string | undefined; } | undefined; working_directory?: string | undefined; } | undefined; pe?: { architecture?: string | undefined; company?: string | undefined; description?: string | undefined; file_version?: string | undefined; imphash?: string | undefined; original_file_name?: string | undefined; pehash?: string | undefined; product?: string | undefined; } | undefined; pgid?: string | number | undefined; pid?: string | number | undefined; previous?: { args?: string[] | undefined; args_count?: string | number | undefined; executable?: string | undefined; } | undefined; real_group?: { id?: string | undefined; name?: string | undefined; } | undefined; real_user?: { id?: string | undefined; name?: string | undefined; } | undefined; saved_group?: { id?: string | undefined; name?: string | undefined; } | undefined; saved_user?: { id?: string | undefined; name?: string | undefined; } | undefined; session_leader?: { args?: string[] | undefined; args_count?: string | number | undefined; command_line?: string | undefined; entity_id?: string | undefined; executable?: string | undefined; group?: { id?: string | undefined; name?: string | undefined; } | undefined; interactive?: boolean | undefined; name?: string | undefined; parent?: { entity_id?: string | undefined; pid?: string | number | undefined; session_leader?: { entity_id?: string | undefined; pid?: string | number | undefined; start?: string | undefined; } | undefined; start?: string | undefined; } | undefined; pid?: string | number | undefined; real_group?: { id?: string | undefined; name?: string | undefined; } | undefined; real_user?: { id?: string | undefined; name?: string | undefined; } | undefined; same_as_process?: boolean | undefined; saved_group?: { id?: string | undefined; name?: string | undefined; } | undefined; saved_user?: { id?: string | undefined; name?: string | undefined; } | undefined; start?: string | undefined; supplemental_groups?: { id?: string | undefined; name?: string | undefined; } | undefined; user?: { id?: string | undefined; name?: string | undefined; } | undefined; working_directory?: string | undefined; } | undefined; start?: string | undefined; supplemental_groups?: { id?: string | undefined; name?: string | undefined; } | undefined; thread?: { id?: string | number | undefined; name?: string | undefined; } | undefined; title?: string | undefined; uptime?: string | number | undefined; user?: { id?: string | undefined; name?: string | undefined; } | undefined; working_directory?: string | undefined; } | undefined; registry?: { data?: { bytes?: string | undefined; strings?: string[] | undefined; type?: string | undefined; } | undefined; hive?: string | undefined; key?: string | undefined; path?: string | undefined; value?: string | undefined; } | undefined; related?: { hash?: string[] | undefined; hosts?: string[] | undefined; ip?: string[] | undefined; user?: string[] | undefined; } | undefined; rule?: { author?: string[] | undefined; category?: string | undefined; description?: string | undefined; id?: string | undefined; license?: string | undefined; name?: string | undefined; reference?: string | undefined; ruleset?: string | undefined; uuid?: string | undefined; version?: string | undefined; } | undefined; server?: { address?: string | undefined; as?: { number?: string | number | undefined; organization?: { name?: string | undefined; } | undefined; } | undefined; bytes?: string | number | undefined; domain?: string | undefined; geo?: { city_name?: string | undefined; continent_code?: string | undefined; continent_name?: string | undefined; country_iso_code?: string | undefined; country_name?: string | undefined; location?: string | { type: string; coordinates: number[]; } | { lat: number; lon: number; } | { location: number[]; } | { location: string; } | undefined; name?: string | undefined; postal_code?: string | undefined; region_iso_code?: string | undefined; region_name?: string | undefined; timezone?: string | undefined; } | undefined; ip?: string | undefined; mac?: string | undefined; nat?: { ip?: string | undefined; port?: string | number | undefined; } | undefined; packets?: string | number | undefined; port?: string | number | undefined; registered_domain?: string | undefined; subdomain?: string | undefined; top_level_domain?: string | undefined; user?: { domain?: string | undefined; email?: string | undefined; full_name?: string | undefined; group?: { domain?: string | undefined; id?: string | undefined; name?: string | undefined; } | undefined; hash?: string | undefined; id?: string | undefined; name?: string | undefined; roles?: string[] | undefined; } | undefined; } | undefined; service?: { address?: string | undefined; environment?: string | undefined; ephemeral_id?: string | undefined; id?: string | undefined; name?: string | undefined; node?: { name?: string | undefined; role?: string | undefined; roles?: string[] | undefined; } | undefined; origin?: { address?: string | undefined; environment?: string | undefined; ephemeral_id?: string | undefined; id?: string | undefined; name?: string | undefined; node?: { name?: string | undefined; role?: string | undefined; roles?: string[] | undefined; } | undefined; state?: string | undefined; type?: string | undefined; version?: string | undefined; } | undefined; state?: string | undefined; target?: { address?: string | undefined; environment?: string | undefined; ephemeral_id?: string | undefined; id?: string | undefined; name?: string | undefined; node?: { name?: string | undefined; role?: string | undefined; roles?: string[] | undefined; } | undefined; state?: string | undefined; type?: string | undefined; version?: string | undefined; } | undefined; type?: string | undefined; version?: string | undefined; } | undefined; source?: { address?: string | undefined; as?: { number?: string | number | undefined; organization?: { name?: string | undefined; } | undefined; } | undefined; bytes?: string | number | undefined; domain?: string | undefined; geo?: { city_name?: string | undefined; continent_code?: string | undefined; continent_name?: string | undefined; country_iso_code?: string | undefined; country_name?: string | undefined; location?: string | { type: string; coordinates: number[]; } | { lat: number; lon: number; } | { location: number[]; } | { location: string; } | undefined; name?: string | undefined; postal_code?: string | undefined; region_iso_code?: string | undefined; region_name?: string | undefined; timezone?: string | undefined; } | undefined; ip?: string | undefined; mac?: string | undefined; nat?: { ip?: string | undefined; port?: string | number | undefined; } | undefined; packets?: string | number | undefined; port?: string | number | undefined; registered_domain?: string | undefined; subdomain?: string | undefined; top_level_domain?: string | undefined; user?: { domain?: string | undefined; email?: string | undefined; full_name?: string | undefined; group?: { domain?: string | undefined; id?: string | undefined; name?: string | undefined; } | undefined; hash?: string | undefined; id?: string | undefined; name?: string | undefined; roles?: string[] | undefined; } | undefined; } | undefined; span?: { id?: string | undefined; } | undefined; tags?: string[] | undefined; threat?: { enrichments?: { matched?: { atomic?: string | undefined; field?: string | undefined; id?: string | undefined; index?: string | undefined; occurred?: string | undefined; type?: string | undefined; } | undefined; }[] | undefined; feed?: { dashboard_id?: string | undefined; description?: string | undefined; name?: string | undefined; reference?: string | undefined; } | undefined; framework?: string | undefined; group?: { alias?: string[] | undefined; id?: string | undefined; name?: string | undefined; reference?: string | undefined; } | undefined; indicator?: { as?: { number?: string | number | undefined; organization?: { name?: string | undefined; } | undefined; } | undefined; confidence?: string | undefined; description?: string | undefined; email?: { address?: string | undefined; } | undefined; file?: { accessed?: string | undefined; attributes?: string[] | undefined; code_signature?: { digest_algorithm?: string | undefined; exists?: boolean | undefined; signing_id?: string | undefined; status?: string | undefined; subject_name?: string | undefined; team_id?: string | undefined; timestamp?: string | undefined; trusted?: boolean | undefined; valid?: boolean | undefined; } | undefined; created?: string | undefined; ctime?: string | undefined; device?: string | undefined; directory?: string | undefined; drive_letter?: string | undefined; elf?: { architecture?: string | undefined; byte_order?: string | undefined; cpu_type?: string | undefined; creation_date?: string | undefined; exports?: unknown[] | undefined; header?: { abi_version?: string | undefined; class?: string | undefined; data?: string | undefined; entrypoint?: string | number | undefined; object_version?: string | undefined; os_abi?: string | undefined; type?: string | undefined; version?: string | undefined; } | undefined; imports?: unknown[] | undefined; sections?: { chi2?: string | number | undefined; entropy?: string | number | undefined; flags?: string | undefined; name?: string | undefined; physical_offset?: string | undefined; physical_size?: string | number | undefined; type?: string | undefined; virtual_address?: string | number | undefined; virtual_size?: string | number | undefined; }[] | undefined; segments?: { sections?: string | undefined; type?: string | undefined; }[] | undefined; shared_libraries?: string[] | undefined; telfhash?: string | undefined; } | undefined; extension?: string | undefined; fork_name?: string | undefined; gid?: string | undefined; group?: string | undefined; hash?: { md5?: string | undefined; sha1?: string | undefined; sha256?: string | undefined; sha384?: string | undefined; sha512?: string | undefined; ssdeep?: string | undefined; tlsh?: string | undefined; } | undefined; inode?: string | undefined; mime_type?: string | undefined; mode?: string | undefined; mtime?: string | undefined; name?: string | undefined; owner?: string | undefined; path?: string | undefined; pe?: { architecture?: string | undefined; company?: string | undefined; description?: string | undefined; file_version?: string | undefined; imphash?: string | undefined; original_file_name?: string | undefined; pehash?: string | undefined; product?: string | undefined; } | undefined; size?: string | number | undefined; target_path?: string | undefined; type?: string | undefined; uid?: string | undefined; x509?: { alternative_names?: string[] | undefined; issuer?: { common_name?: string[] | undefined; country?: string[] | undefined; distinguished_name?: string | undefined; locality?: string[] | undefined; organization?: string[] | undefined; organizational_unit?: string[] | undefined; state_or_province?: string[] | undefined; } | undefined; not_after?: string | undefined; not_before?: string | undefined; public_key_algorithm?: string | undefined; public_key_curve?: string | undefined; public_key_exponent?: string | number | undefined; public_key_size?: string | number | undefined; serial_number?: string | undefined; signature_algorithm?: string | undefined; subject?: { common_name?: string[] | undefined; country?: string[] | undefined; distinguished_name?: string | undefined; locality?: string[] | undefined; organization?: string[] | undefined; organizational_unit?: string[] | undefined; state_or_province?: string[] | undefined; } | undefined; version_number?: string | undefined; } | undefined; } | undefined; first_seen?: string | undefined; geo?: { city_name?: string | undefined; continent_code?: string | undefined; continent_name?: string | undefined; country_iso_code?: string | undefined; country_name?: string | undefined; location?: string | { type: string; coordinates: number[]; } | { lat: number; lon: number; } | { location: number[]; } | { location: string; } | undefined; name?: string | undefined; postal_code?: string | undefined; region_iso_code?: string | undefined; region_name?: string | undefined; timezone?: string | undefined; } | undefined; ip?: string | undefined; last_seen?: string | undefined; marking?: { tlp?: string | undefined; tlp_version?: string | undefined; } | undefined; modified_at?: string | undefined; port?: string | number | undefined; provider?: string | undefined; reference?: string | undefined; registry?: { data?: { bytes?: string | undefined; strings?: string[] | undefined; type?: string | undefined; } | undefined; hive?: string | undefined; key?: string | undefined; path?: string | undefined; value?: string | undefined; } | undefined; scanner_stats?: string | number | undefined; sightings?: string | number | undefined; type?: string | undefined; url?: { domain?: string | undefined; extension?: string | undefined; fragment?: string | undefined; full?: string | undefined; original?: string | undefined; password?: string | undefined; path?: string | undefined; port?: string | number | undefined; query?: string | undefined; registered_domain?: string | undefined; scheme?: string | undefined; subdomain?: string | undefined; top_level_domain?: string | undefined; username?: string | undefined; } | undefined; x509?: { alternative_names?: string[] | undefined; issuer?: { common_name?: string[] | undefined; country?: string[] | undefined; distinguished_name?: string | undefined; locality?: string[] | undefined; organization?: string[] | undefined; organizational_unit?: string[] | undefined; state_or_province?: string[] | undefined; } | undefined; not_after?: string | undefined; not_before?: string | undefined; public_key_algorithm?: string | undefined; public_key_curve?: string | undefined; public_key_exponent?: string | number | undefined; public_key_size?: string | number | undefined; serial_number?: string | undefined; signature_algorithm?: string | undefined; subject?: { common_name?: string[] | undefined; country?: string[] | undefined; distinguished_name?: string | undefined; locality?: string[] | undefined; organization?: string[] | undefined; organizational_unit?: string[] | undefined; state_or_province?: string[] | undefined; } | undefined; version_number?: string | undefined; } | undefined; } | undefined; software?: { alias?: string[] | undefined; id?: string | undefined; name?: string | undefined; platforms?: string[] | undefined; reference?: string | undefined; type?: string | undefined; } | undefined; tactic?: { id?: string[] | undefined; name?: string[] | undefined; reference?: string[] | undefined; } | undefined; technique?: { id?: string[] | undefined; name?: string[] | undefined; reference?: string[] | undefined; subtechnique?: { id?: string[] | undefined; name?: string[] | undefined; reference?: string[] | undefined; } | undefined; } | undefined; } | undefined; tls?: { cipher?: string | undefined; client?: { certificate?: string | undefined; certificate_chain?: string[] | undefined; hash?: { md5?: string | undefined; sha1?: string | undefined; sha256?: string | undefined; } | undefined; issuer?: string | undefined; ja3?: string | undefined; not_after?: string | undefined; not_before?: string | undefined; server_name?: string | undefined; subject?: string | undefined; supported_ciphers?: string[] | undefined; x509?: { alternative_names?: string[] | undefined; issuer?: { common_name?: string[] | undefined; country?: string[] | undefined; distinguished_name?: string | undefined; locality?: string[] | undefined; organization?: string[] | undefined; organizational_unit?: string[] | undefined; state_or_province?: string[] | undefined; } | undefined; not_after?: string | undefined; not_before?: string | undefined; public_key_algorithm?: string | undefined; public_key_curve?: string | undefined; public_key_exponent?: string | number | undefined; public_key_size?: string | number | undefined; serial_number?: string | undefined; signature_algorithm?: string | undefined; subject?: { common_name?: string[] | undefined; country?: string[] | undefined; distinguished_name?: string | undefined; locality?: string[] | undefined; organization?: string[] | undefined; organizational_unit?: string[] | undefined; state_or_province?: string[] | undefined; } | undefined; version_number?: string | undefined; } | undefined; } | undefined; curve?: string | undefined; established?: boolean | undefined; next_protocol?: string | undefined; resumed?: boolean | undefined; server?: { certificate?: string | undefined; certificate_chain?: string[] | undefined; hash?: { md5?: string | undefined; sha1?: string | undefined; sha256?: string | undefined; } | undefined; issuer?: string | undefined; ja3s?: string | undefined; not_after?: string | undefined; not_before?: string | undefined; subject?: string | undefined; x509?: { alternative_names?: string[] | undefined; issuer?: { common_name?: string[] | undefined; country?: string[] | undefined; distinguished_name?: string | undefined; locality?: string[] | undefined; organization?: string[] | undefined; organizational_unit?: string[] | undefined; state_or_province?: string[] | undefined; } | undefined; not_after?: string | undefined; not_before?: string | undefined; public_key_algorithm?: string | undefined; public_key_curve?: string | undefined; public_key_exponent?: string | number | undefined; public_key_size?: string | number | undefined; serial_number?: string | undefined; signature_algorithm?: string | undefined; subject?: { common_name?: string[] | undefined; country?: string[] | undefined; distinguished_name?: string | undefined; locality?: string[] | undefined; organization?: string[] | undefined; organizational_unit?: string[] | undefined; state_or_province?: string[] | undefined; } | undefined; version_number?: string | undefined; } | undefined; } | undefined; version?: string | undefined; version_protocol?: string | undefined; } | undefined; trace?: { id?: string | undefined; } | undefined; transaction?: { id?: string | undefined; } | undefined; url?: { domain?: string | undefined; extension?: string | undefined; fragment?: string | undefined; full?: string | undefined; original?: string | undefined; password?: string | undefined; path?: string | undefined; port?: string | number | undefined; query?: string | undefined; registered_domain?: string | undefined; scheme?: string | undefined; subdomain?: string | undefined; top_level_domain?: string | undefined; username?: string | undefined; } | undefined; user?: { changes?: { domain?: string | undefined; email?: string | undefined; full_name?: string | undefined; group?: { domain?: string | undefined; id?: string | undefined; name?: string | undefined; } | undefined; hash?: string | undefined; id?: string | undefined; name?: string | undefined; roles?: string[] | undefined; } | undefined; domain?: string | undefined; effective?: { domain?: string | undefined; email?: string | undefined; full_name?: string | undefined; group?: { domain?: string | undefined; id?: string | undefined; name?: string | undefined; } | undefined; hash?: string | undefined; id?: string | undefined; name?: string | undefined; roles?: string[] | undefined; } | undefined; email?: string | undefined; full_name?: string | undefined; group?: { domain?: string | undefined; id?: string | undefined; name?: string | undefined; } | undefined; hash?: string | undefined; id?: string | undefined; name?: string | undefined; risk?: { calculated_level?: string | undefined; calculated_score?: number | undefined; calculated_score_norm?: number | undefined; static_level?: string | undefined; static_score?: number | undefined; static_score_norm?: number | undefined; } | undefined; roles?: string[] | undefined; target?: { domain?: string | undefined; email?: string | undefined; full_name?: string | undefined; group?: { domain?: string | undefined; id?: string | undefined; name?: string | undefined; } | undefined; hash?: string | undefined; id?: string | undefined; name?: string | undefined; roles?: string[] | undefined; } | undefined; } | undefined; user_agent?: { device?: { name?: string | undefined; } | undefined; name?: string | undefined; original?: string | undefined; os?: { family?: string | undefined; full?: string | undefined; kernel?: string | undefined; name?: string | undefined; platform?: string | undefined; type?: string | undefined; version?: string | undefined; } | undefined; version?: string | undefined; } | undefined; vulnerability?: { category?: string[] | undefined; classification?: string | undefined; description?: string | undefined; enumeration?: string | undefined; id?: string | undefined; reference?: string | undefined; report_id?: string | undefined; scanner?: { vendor?: string | undefined; } | undefined; score?: { base?: number | undefined; environmental?: number | undefined; temporal?: number | undefined; version?: string | undefined; } | undefined; severity?: string | undefined; } | undefined; } & {} & { ecs?: { version?: string | undefined; } | undefined; kibana?: { alert?: { risk_score?: number | undefined; rule?: { author?: string | undefined; created_at?: string | undefined; created_by?: string | undefined; description?: string | undefined; enabled?: string | undefined; from?: string | undefined; interval?: string | undefined; license?: string | undefined; note?: string | undefined; references?: string[] | undefined; rule_id?: string | undefined; rule_name_override?: string | undefined; to?: string | undefined; type?: string | undefined; updated_at?: string | undefined; updated_by?: string | undefined; version?: string | undefined; } | undefined; severity?: string | undefined; suppression?: { docs_count?: string | number | undefined; end?: string | undefined; start?: string | undefined; terms?: { field?: string[] | undefined; value?: string[] | undefined; } | undefined; } | undefined; system_status?: string | undefined; workflow_reason?: string | undefined; workflow_user?: string | undefined; } | undefined; } | undefined; })"
+ "({ '@timestamp': string; kibana: { alert: { instance: { id: string; }; rule: { category: string; consumer: string; name: string; producer: string; revision: string | number; rule_type_id: string; uuid: string; }; status: string; uuid: string; }; space_ids: string[]; }; } & { event?: { action?: string | undefined; kind?: string | undefined; } | undefined; kibana?: { alert?: { action_group?: string | undefined; case_ids?: string[] | undefined; duration?: { us?: string | number | undefined; } | undefined; end?: string | undefined; flapping?: boolean | undefined; flapping_history?: boolean[] | undefined; last_detected?: string | undefined; maintenance_window_ids?: string[] | undefined; reason?: string | undefined; rule?: { execution?: { uuid?: string | undefined; } | undefined; parameters?: unknown; tags?: string[] | undefined; } | undefined; start?: string | undefined; time_range?: { gte?: string | undefined; lte?: string | undefined; } | undefined; url?: string | undefined; workflow_status?: string | undefined; workflow_tags?: string[] | undefined; } | undefined; version?: string | undefined; } | undefined; tags?: string[] | undefined; }) | ({} & { agent?: { name?: string | undefined; } | undefined; error?: { grouping_key?: string | undefined; grouping_name?: string | undefined; } | undefined; kibana?: { alert?: { evaluation?: { threshold?: string | number | undefined; value?: string | number | undefined; values?: (string | number)[] | undefined; } | undefined; } | undefined; } | undefined; processor?: { event?: string | undefined; } | undefined; service?: { environment?: string | undefined; language?: { name?: string | undefined; } | undefined; name?: string | undefined; } | undefined; transaction?: { name?: string | undefined; type?: string | undefined; } | undefined; } & { '@timestamp': string; kibana: { alert: { instance: { id: string; }; rule: { category: string; consumer: string; name: string; producer: string; revision: string | number; rule_type_id: string; uuid: string; }; status: string; uuid: string; }; space_ids: string[]; }; } & { event?: { action?: string | undefined; kind?: string | undefined; } | undefined; kibana?: { alert?: { action_group?: string | undefined; case_ids?: string[] | undefined; duration?: { us?: string | number | undefined; } | undefined; end?: string | undefined; flapping?: boolean | undefined; flapping_history?: boolean[] | undefined; last_detected?: string | undefined; maintenance_window_ids?: string[] | undefined; reason?: string | undefined; rule?: { execution?: { uuid?: string | undefined; } | undefined; parameters?: unknown; tags?: string[] | undefined; } | undefined; start?: string | undefined; time_range?: { gte?: string | undefined; lte?: string | undefined; } | undefined; url?: string | undefined; workflow_status?: string | undefined; workflow_tags?: string[] | undefined; } | undefined; version?: string | undefined; } | undefined; tags?: string[] | undefined; } & {} & { ecs?: { version?: string | undefined; } | undefined; kibana?: { alert?: { risk_score?: number | undefined; rule?: { author?: string | undefined; created_at?: string | undefined; created_by?: string | undefined; description?: string | undefined; enabled?: string | undefined; from?: string | undefined; interval?: string | undefined; license?: string | undefined; note?: string | undefined; references?: string[] | undefined; rule_id?: string | undefined; rule_name_override?: string | undefined; to?: string | undefined; type?: string | undefined; updated_at?: string | undefined; updated_by?: string | undefined; version?: string | undefined; } | undefined; severity?: string | undefined; suppression?: { docs_count?: string | number | undefined; end?: string | undefined; start?: string | undefined; terms?: { field?: string[] | undefined; value?: string[] | undefined; } | undefined; } | undefined; system_status?: string | undefined; workflow_reason?: string | undefined; workflow_user?: string | undefined; } | undefined; } | undefined; }) | ({} & { kibana?: { alert?: { evaluation?: { threshold?: string | number | undefined; value?: string | number | undefined; values?: (string | number)[] | undefined; } | undefined; } | undefined; } | undefined; } & { '@timestamp': string; kibana: { alert: { instance: { id: string; }; rule: { category: string; consumer: string; name: string; producer: string; revision: string | number; rule_type_id: string; uuid: string; }; status: string; uuid: string; }; space_ids: string[]; }; } & { event?: { action?: string | undefined; kind?: string | undefined; } | undefined; kibana?: { alert?: { action_group?: string | undefined; case_ids?: string[] | undefined; duration?: { us?: string | number | undefined; } | undefined; end?: string | undefined; flapping?: boolean | undefined; flapping_history?: boolean[] | undefined; last_detected?: string | undefined; maintenance_window_ids?: string[] | undefined; reason?: string | undefined; rule?: { execution?: { uuid?: string | undefined; } | undefined; parameters?: unknown; tags?: string[] | undefined; } | undefined; start?: string | undefined; time_range?: { gte?: string | undefined; lte?: string | undefined; } | undefined; url?: string | undefined; workflow_status?: string | undefined; workflow_tags?: string[] | undefined; } | undefined; version?: string | undefined; } | undefined; tags?: string[] | undefined; } & { '@timestamp': string; ecs: { version: string; }; } & { agent?: { build?: { original?: string | undefined; } | undefined; ephemeral_id?: string | undefined; id?: string | undefined; name?: string | undefined; type?: string | undefined; version?: string | undefined; } | undefined; client?: { address?: string | undefined; as?: { number?: string | number | undefined; organization?: { name?: string | undefined; } | undefined; } | undefined; bytes?: string | number | undefined; domain?: string | undefined; geo?: { city_name?: string | undefined; continent_code?: string | undefined; continent_name?: string | undefined; country_iso_code?: string | undefined; country_name?: string | undefined; location?: string | { type: string; coordinates: number[]; } | { lat: number; lon: number; } | { location: number[]; } | { location: string; } | undefined; name?: string | undefined; postal_code?: string | undefined; region_iso_code?: string | undefined; region_name?: string | undefined; timezone?: string | undefined; } | undefined; ip?: string | undefined; mac?: string | undefined; nat?: { ip?: string | undefined; port?: string | number | undefined; } | undefined; packets?: string | number | undefined; port?: string | number | undefined; registered_domain?: string | undefined; subdomain?: string | undefined; top_level_domain?: string | undefined; user?: { domain?: string | undefined; email?: string | undefined; full_name?: string | undefined; group?: { domain?: string | undefined; id?: string | undefined; name?: string | undefined; } | undefined; hash?: string | undefined; id?: string | undefined; name?: string | undefined; roles?: string[] | undefined; } | undefined; } | undefined; cloud?: { account?: { id?: string | undefined; name?: string | undefined; } | undefined; availability_zone?: string | undefined; instance?: { id?: string | undefined; name?: string | undefined; } | undefined; machine?: { type?: string | undefined; } | undefined; origin?: { account?: { id?: string | undefined; name?: string | undefined; } | undefined; availability_zone?: string | undefined; instance?: { id?: string | undefined; name?: string | undefined; } | undefined; machine?: { type?: string | undefined; } | undefined; project?: { id?: string | undefined; name?: string | undefined; } | undefined; provider?: string | undefined; region?: string | undefined; service?: { name?: string | undefined; } | undefined; } | undefined; project?: { id?: string | undefined; name?: string | undefined; } | undefined; provider?: string | undefined; region?: string | undefined; service?: { name?: string | undefined; } | undefined; target?: { account?: { id?: string | undefined; name?: string | undefined; } | undefined; availability_zone?: string | undefined; instance?: { id?: string | undefined; name?: string | undefined; } | undefined; machine?: { type?: string | undefined; } | undefined; project?: { id?: string | undefined; name?: string | undefined; } | undefined; provider?: string | undefined; region?: string | undefined; service?: { name?: string | undefined; } | undefined; } | undefined; } | undefined; container?: { cpu?: { usage?: string | number | undefined; } | undefined; disk?: { read?: { bytes?: string | number | undefined; } | undefined; write?: { bytes?: string | number | undefined; } | undefined; } | undefined; id?: string | undefined; image?: { hash?: { all?: string[] | undefined; } | undefined; name?: string | undefined; tag?: string[] | undefined; } | undefined; memory?: { usage?: string | number | undefined; } | undefined; name?: string | undefined; network?: { egress?: { bytes?: string | number | undefined; } | undefined; ingress?: { bytes?: string | number | undefined; } | undefined; } | undefined; runtime?: string | undefined; } | undefined; destination?: { address?: string | undefined; as?: { number?: string | number | undefined; organization?: { name?: string | undefined; } | undefined; } | undefined; bytes?: string | number | undefined; domain?: string | undefined; geo?: { city_name?: string | undefined; continent_code?: string | undefined; continent_name?: string | undefined; country_iso_code?: string | undefined; country_name?: string | undefined; location?: string | { type: string; coordinates: number[]; } | { lat: number; lon: number; } | { location: number[]; } | { location: string; } | undefined; name?: string | undefined; postal_code?: string | undefined; region_iso_code?: string | undefined; region_name?: string | undefined; timezone?: string | undefined; } | undefined; ip?: string | undefined; mac?: string | undefined; nat?: { ip?: string | undefined; port?: string | number | undefined; } | undefined; packets?: string | number | undefined; port?: string | number | undefined; registered_domain?: string | undefined; subdomain?: string | undefined; top_level_domain?: string | undefined; user?: { domain?: string | undefined; email?: string | undefined; full_name?: string | undefined; group?: { domain?: string | undefined; id?: string | undefined; name?: string | undefined; } | undefined; hash?: string | undefined; id?: string | undefined; name?: string | undefined; roles?: string[] | undefined; } | undefined; } | undefined; device?: { id?: string | undefined; manufacturer?: string | undefined; model?: { identifier?: string | undefined; name?: string | undefined; } | undefined; } | undefined; dll?: { code_signature?: { digest_algorithm?: string | undefined; exists?: boolean | undefined; signing_id?: string | undefined; status?: string | undefined; subject_name?: string | undefined; team_id?: string | undefined; timestamp?: string | undefined; trusted?: boolean | undefined; valid?: boolean | undefined; } | undefined; hash?: { md5?: string | undefined; sha1?: string | undefined; sha256?: string | undefined; sha384?: string | undefined; sha512?: string | undefined; ssdeep?: string | undefined; tlsh?: string | undefined; } | undefined; name?: string | undefined; path?: string | undefined; pe?: { architecture?: string | undefined; company?: string | undefined; description?: string | undefined; file_version?: string | undefined; imphash?: string | undefined; original_file_name?: string | undefined; pehash?: string | undefined; product?: string | undefined; } | undefined; } | undefined; dns?: { answers?: { class?: string | undefined; data?: string | undefined; name?: string | undefined; ttl?: string | number | undefined; type?: string | undefined; }[] | undefined; header_flags?: string[] | undefined; id?: string | undefined; op_code?: string | undefined; question?: { class?: string | undefined; name?: string | undefined; registered_domain?: string | undefined; subdomain?: string | undefined; top_level_domain?: string | undefined; type?: string | undefined; } | undefined; resolved_ip?: string[] | undefined; response_code?: string | undefined; type?: string | undefined; } | undefined; email?: { attachments?: { file?: { extension?: string | undefined; hash?: { md5?: string | undefined; sha1?: string | undefined; sha256?: string | undefined; sha384?: string | undefined; sha512?: string | undefined; ssdeep?: string | undefined; tlsh?: string | undefined; } | undefined; mime_type?: string | undefined; name?: string | undefined; size?: string | number | undefined; } | undefined; }[] | undefined; bcc?: { address?: string[] | undefined; } | undefined; cc?: { address?: string[] | undefined; } | undefined; content_type?: string | undefined; delivery_timestamp?: string | undefined; direction?: string | undefined; from?: { address?: string[] | undefined; } | undefined; local_id?: string | undefined; message_id?: string | undefined; origination_timestamp?: string | undefined; reply_to?: { address?: string[] | undefined; } | undefined; sender?: { address?: string | undefined; } | undefined; subject?: string | undefined; to?: { address?: string[] | undefined; } | undefined; x_mailer?: string | undefined; } | undefined; error?: { code?: string | undefined; id?: string | undefined; message?: string | undefined; stack_trace?: string | undefined; type?: string | undefined; } | undefined; event?: { action?: string | undefined; agent_id_status?: string | undefined; category?: string[] | undefined; code?: string | undefined; created?: string | undefined; dataset?: string | undefined; duration?: string | number | undefined; end?: string | undefined; hash?: string | undefined; id?: string | undefined; ingested?: string | undefined; kind?: string | undefined; module?: string | undefined; original?: string | undefined; outcome?: string | undefined; provider?: string | undefined; reason?: string | undefined; reference?: string | undefined; risk_score?: number | undefined; risk_score_norm?: number | undefined; sequence?: string | number | undefined; severity?: string | number | undefined; start?: string | undefined; timezone?: string | undefined; type?: string[] | undefined; url?: string | undefined; } | undefined; faas?: { coldstart?: boolean | undefined; execution?: string | undefined; id?: string | undefined; name?: string | undefined; version?: string | undefined; } | undefined; file?: { accessed?: string | undefined; attributes?: string[] | undefined; code_signature?: { digest_algorithm?: string | undefined; exists?: boolean | undefined; signing_id?: string | undefined; status?: string | undefined; subject_name?: string | undefined; team_id?: string | undefined; timestamp?: string | undefined; trusted?: boolean | undefined; valid?: boolean | undefined; } | undefined; created?: string | undefined; ctime?: string | undefined; device?: string | undefined; directory?: string | undefined; drive_letter?: string | undefined; elf?: { architecture?: string | undefined; byte_order?: string | undefined; cpu_type?: string | undefined; creation_date?: string | undefined; exports?: unknown[] | undefined; header?: { abi_version?: string | undefined; class?: string | undefined; data?: string | undefined; entrypoint?: string | number | undefined; object_version?: string | undefined; os_abi?: string | undefined; type?: string | undefined; version?: string | undefined; } | undefined; imports?: unknown[] | undefined; sections?: { chi2?: string | number | undefined; entropy?: string | number | undefined; flags?: string | undefined; name?: string | undefined; physical_offset?: string | undefined; physical_size?: string | number | undefined; type?: string | undefined; virtual_address?: string | number | undefined; virtual_size?: string | number | undefined; }[] | undefined; segments?: { sections?: string | undefined; type?: string | undefined; }[] | undefined; shared_libraries?: string[] | undefined; telfhash?: string | undefined; } | undefined; extension?: string | undefined; fork_name?: string | undefined; gid?: string | undefined; group?: string | undefined; hash?: { md5?: string | undefined; sha1?: string | undefined; sha256?: string | undefined; sha384?: string | undefined; sha512?: string | undefined; ssdeep?: string | undefined; tlsh?: string | undefined; } | undefined; inode?: string | undefined; mime_type?: string | undefined; mode?: string | undefined; mtime?: string | undefined; name?: string | undefined; owner?: string | undefined; path?: string | undefined; pe?: { architecture?: string | undefined; company?: string | undefined; description?: string | undefined; file_version?: string | undefined; imphash?: string | undefined; original_file_name?: string | undefined; pehash?: string | undefined; product?: string | undefined; } | undefined; size?: string | number | undefined; target_path?: string | undefined; type?: string | undefined; uid?: string | undefined; x509?: { alternative_names?: string[] | undefined; issuer?: { common_name?: string[] | undefined; country?: string[] | undefined; distinguished_name?: string | undefined; locality?: string[] | undefined; organization?: string[] | undefined; organizational_unit?: string[] | undefined; state_or_province?: string[] | undefined; } | undefined; not_after?: string | undefined; not_before?: string | undefined; public_key_algorithm?: string | undefined; public_key_curve?: string | undefined; public_key_exponent?: string | number | undefined; public_key_size?: string | number | undefined; serial_number?: string | undefined; signature_algorithm?: string | undefined; subject?: { common_name?: string[] | undefined; country?: string[] | undefined; distinguished_name?: string | undefined; locality?: string[] | undefined; organization?: string[] | undefined; organizational_unit?: string[] | undefined; state_or_province?: string[] | undefined; } | undefined; version_number?: string | undefined; } | undefined; } | undefined; group?: { domain?: string | undefined; id?: string | undefined; name?: string | undefined; } | undefined; host?: { architecture?: string | undefined; boot?: { id?: string | undefined; } | undefined; cpu?: { usage?: string | number | undefined; } | undefined; disk?: { read?: { bytes?: string | number | undefined; } | undefined; write?: { bytes?: string | number | undefined; } | undefined; } | undefined; domain?: string | undefined; geo?: { city_name?: string | undefined; continent_code?: string | undefined; continent_name?: string | undefined; country_iso_code?: string | undefined; country_name?: string | undefined; location?: string | { type: string; coordinates: number[]; } | { lat: number; lon: number; } | { location: number[]; } | { location: string; } | undefined; name?: string | undefined; postal_code?: string | undefined; region_iso_code?: string | undefined; region_name?: string | undefined; timezone?: string | undefined; } | undefined; hostname?: string | undefined; id?: string | undefined; ip?: string[] | undefined; mac?: string[] | undefined; name?: string | undefined; network?: { egress?: { bytes?: string | number | undefined; packets?: string | number | undefined; } | undefined; ingress?: { bytes?: string | number | undefined; packets?: string | number | undefined; } | undefined; } | undefined; os?: { family?: string | undefined; full?: string | undefined; kernel?: string | undefined; name?: string | undefined; platform?: string | undefined; type?: string | undefined; version?: string | undefined; } | undefined; pid_ns_ino?: string | undefined; risk?: { calculated_level?: string | undefined; calculated_score?: number | undefined; calculated_score_norm?: number | undefined; static_level?: string | undefined; static_score?: number | undefined; static_score_norm?: number | undefined; } | undefined; type?: string | undefined; uptime?: string | number | undefined; } | undefined; http?: { request?: { body?: { bytes?: string | number | undefined; content?: string | undefined; } | undefined; bytes?: string | number | undefined; id?: string | undefined; method?: string | undefined; mime_type?: string | undefined; referrer?: string | undefined; } | undefined; response?: { body?: { bytes?: string | number | undefined; content?: string | undefined; } | undefined; bytes?: string | number | undefined; mime_type?: string | undefined; status_code?: string | number | undefined; } | undefined; version?: string | undefined; } | undefined; log?: { file?: { path?: string | undefined; } | undefined; level?: string | undefined; logger?: string | undefined; origin?: { file?: { line?: string | number | undefined; name?: string | undefined; } | undefined; function?: string | undefined; } | undefined; } | undefined; message?: string | undefined; network?: { application?: string | undefined; bytes?: string | number | undefined; community_id?: string | undefined; direction?: string | undefined; forwarded_ip?: string | undefined; iana_number?: string | undefined; name?: string | undefined; packets?: string | number | undefined; protocol?: string | undefined; transport?: string | undefined; type?: string | undefined; vlan?: { id?: string | undefined; name?: string | undefined; } | undefined; } | undefined; observer?: { geo?: { city_name?: string | undefined; continent_code?: string | undefined; continent_name?: string | undefined; country_iso_code?: string | undefined; country_name?: string | undefined; location?: string | { type: string; coordinates: number[]; } | { lat: number; lon: number; } | { location: number[]; } | { location: string; } | undefined; name?: string | undefined; postal_code?: string | undefined; region_iso_code?: string | undefined; region_name?: string | undefined; timezone?: string | undefined; } | undefined; hostname?: string | undefined; ip?: string[] | undefined; mac?: string[] | undefined; name?: string | undefined; os?: { family?: string | undefined; full?: string | undefined; kernel?: string | undefined; name?: string | undefined; platform?: string | undefined; type?: string | undefined; version?: string | undefined; } | undefined; product?: string | undefined; serial_number?: string | undefined; type?: string | undefined; vendor?: string | undefined; version?: string | undefined; } | undefined; orchestrator?: { api_version?: string | undefined; cluster?: { id?: string | undefined; name?: string | undefined; url?: string | undefined; version?: string | undefined; } | undefined; namespace?: string | undefined; organization?: string | undefined; resource?: { id?: string | undefined; ip?: string[] | undefined; name?: string | undefined; parent?: { type?: string | undefined; } | undefined; type?: string | undefined; } | undefined; type?: string | undefined; } | undefined; organization?: { id?: string | undefined; name?: string | undefined; } | undefined; package?: { architecture?: string | undefined; build_version?: string | undefined; checksum?: string | undefined; description?: string | undefined; install_scope?: string | undefined; installed?: string | undefined; license?: string | undefined; name?: string | undefined; path?: string | undefined; reference?: string | undefined; size?: string | number | undefined; type?: string | undefined; version?: string | undefined; } | undefined; process?: { args?: string[] | undefined; args_count?: string | number | undefined; code_signature?: { digest_algorithm?: string | undefined; exists?: boolean | undefined; signing_id?: string | undefined; status?: string | undefined; subject_name?: string | undefined; team_id?: string | undefined; timestamp?: string | undefined; trusted?: boolean | undefined; valid?: boolean | undefined; } | undefined; command_line?: string | undefined; elf?: { architecture?: string | undefined; byte_order?: string | undefined; cpu_type?: string | undefined; creation_date?: string | undefined; exports?: unknown[] | undefined; header?: { abi_version?: string | undefined; class?: string | undefined; data?: string | undefined; entrypoint?: string | number | undefined; object_version?: string | undefined; os_abi?: string | undefined; type?: string | undefined; version?: string | undefined; } | undefined; imports?: unknown[] | undefined; sections?: { chi2?: string | number | undefined; entropy?: string | number | undefined; flags?: string | undefined; name?: string | undefined; physical_offset?: string | undefined; physical_size?: string | number | undefined; type?: string | undefined; virtual_address?: string | number | undefined; virtual_size?: string | number | undefined; }[] | undefined; segments?: { sections?: string | undefined; type?: string | undefined; }[] | undefined; shared_libraries?: string[] | undefined; telfhash?: string | undefined; } | undefined; end?: string | undefined; entity_id?: string | undefined; entry_leader?: { args?: string[] | undefined; args_count?: string | number | undefined; attested_groups?: { name?: string | undefined; } | undefined; attested_user?: { id?: string | undefined; name?: string | undefined; } | undefined; command_line?: string | undefined; entity_id?: string | undefined; entry_meta?: { source?: { ip?: string | undefined; } | undefined; type?: string | undefined; } | undefined; executable?: string | undefined; group?: { id?: string | undefined; name?: string | undefined; } | undefined; interactive?: boolean | undefined; name?: string | undefined; parent?: { entity_id?: string | undefined; pid?: string | number | undefined; session_leader?: { entity_id?: string | undefined; pid?: string | number | undefined; start?: string | undefined; } | undefined; start?: string | undefined; } | undefined; pid?: string | number | undefined; real_group?: { id?: string | undefined; name?: string | undefined; } | undefined; real_user?: { id?: string | undefined; name?: string | undefined; } | undefined; same_as_process?: boolean | undefined; saved_group?: { id?: string | undefined; name?: string | undefined; } | undefined; saved_user?: { id?: string | undefined; name?: string | undefined; } | undefined; start?: string | undefined; supplemental_groups?: { id?: string | undefined; name?: string | undefined; } | undefined; user?: { id?: string | undefined; name?: string | undefined; } | undefined; working_directory?: string | undefined; } | undefined; env_vars?: string[] | undefined; executable?: string | undefined; exit_code?: string | number | undefined; group_leader?: { args?: string[] | undefined; args_count?: string | number | undefined; command_line?: string | undefined; entity_id?: string | undefined; executable?: string | undefined; group?: { id?: string | undefined; name?: string | undefined; } | undefined; interactive?: boolean | undefined; name?: string | undefined; pid?: string | number | undefined; real_group?: { id?: string | undefined; name?: string | undefined; } | undefined; real_user?: { id?: string | undefined; name?: string | undefined; } | undefined; same_as_process?: boolean | undefined; saved_group?: { id?: string | undefined; name?: string | undefined; } | undefined; saved_user?: { id?: string | undefined; name?: string | undefined; } | undefined; start?: string | undefined; supplemental_groups?: { id?: string | undefined; name?: string | undefined; } | undefined; user?: { id?: string | undefined; name?: string | undefined; } | undefined; working_directory?: string | undefined; } | undefined; hash?: { md5?: string | undefined; sha1?: string | undefined; sha256?: string | undefined; sha384?: string | undefined; sha512?: string | undefined; ssdeep?: string | undefined; tlsh?: string | undefined; } | undefined; interactive?: boolean | undefined; name?: string | undefined; parent?: { args?: string[] | undefined; args_count?: string | number | undefined; code_signature?: { digest_algorithm?: string | undefined; exists?: boolean | undefined; signing_id?: string | undefined; status?: string | undefined; subject_name?: string | undefined; team_id?: string | undefined; timestamp?: string | undefined; trusted?: boolean | undefined; valid?: boolean | undefined; } | undefined; command_line?: string | undefined; elf?: { architecture?: string | undefined; byte_order?: string | undefined; cpu_type?: string | undefined; creation_date?: string | undefined; exports?: unknown[] | undefined; header?: { abi_version?: string | undefined; class?: string | undefined; data?: string | undefined; entrypoint?: string | number | undefined; object_version?: string | undefined; os_abi?: string | undefined; type?: string | undefined; version?: string | undefined; } | undefined; imports?: unknown[] | undefined; sections?: { chi2?: string | number | undefined; entropy?: string | number | undefined; flags?: string | undefined; name?: string | undefined; physical_offset?: string | undefined; physical_size?: string | number | undefined; type?: string | undefined; virtual_address?: string | number | undefined; virtual_size?: string | number | undefined; }[] | undefined; segments?: { sections?: string | undefined; type?: string | undefined; }[] | undefined; shared_libraries?: string[] | undefined; telfhash?: string | undefined; } | undefined; end?: string | undefined; entity_id?: string | undefined; executable?: string | undefined; exit_code?: string | number | undefined; group?: { id?: string | undefined; name?: string | undefined; } | undefined; group_leader?: { entity_id?: string | undefined; pid?: string | number | undefined; start?: string | undefined; } | undefined; hash?: { md5?: string | undefined; sha1?: string | undefined; sha256?: string | undefined; sha384?: string | undefined; sha512?: string | undefined; ssdeep?: string | undefined; tlsh?: string | undefined; } | undefined; interactive?: boolean | undefined; name?: string | undefined; pe?: { architecture?: string | undefined; company?: string | undefined; description?: string | undefined; file_version?: string | undefined; imphash?: string | undefined; original_file_name?: string | undefined; pehash?: string | undefined; product?: string | undefined; } | undefined; pgid?: string | number | undefined; pid?: string | number | undefined; real_group?: { id?: string | undefined; name?: string | undefined; } | undefined; real_user?: { id?: string | undefined; name?: string | undefined; } | undefined; saved_group?: { id?: string | undefined; name?: string | undefined; } | undefined; saved_user?: { id?: string | undefined; name?: string | undefined; } | undefined; start?: string | undefined; supplemental_groups?: { id?: string | undefined; name?: string | undefined; } | undefined; thread?: { id?: string | number | undefined; name?: string | undefined; } | undefined; title?: string | undefined; uptime?: string | number | undefined; user?: { id?: string | undefined; name?: string | undefined; } | undefined; working_directory?: string | undefined; } | undefined; pe?: { architecture?: string | undefined; company?: string | undefined; description?: string | undefined; file_version?: string | undefined; imphash?: string | undefined; original_file_name?: string | undefined; pehash?: string | undefined; product?: string | undefined; } | undefined; pgid?: string | number | undefined; pid?: string | number | undefined; previous?: { args?: string[] | undefined; args_count?: string | number | undefined; executable?: string | undefined; } | undefined; real_group?: { id?: string | undefined; name?: string | undefined; } | undefined; real_user?: { id?: string | undefined; name?: string | undefined; } | undefined; saved_group?: { id?: string | undefined; name?: string | undefined; } | undefined; saved_user?: { id?: string | undefined; name?: string | undefined; } | undefined; session_leader?: { args?: string[] | undefined; args_count?: string | number | undefined; command_line?: string | undefined; entity_id?: string | undefined; executable?: string | undefined; group?: { id?: string | undefined; name?: string | undefined; } | undefined; interactive?: boolean | undefined; name?: string | undefined; parent?: { entity_id?: string | undefined; pid?: string | number | undefined; session_leader?: { entity_id?: string | undefined; pid?: string | number | undefined; start?: string | undefined; } | undefined; start?: string | undefined; } | undefined; pid?: string | number | undefined; real_group?: { id?: string | undefined; name?: string | undefined; } | undefined; real_user?: { id?: string | undefined; name?: string | undefined; } | undefined; same_as_process?: boolean | undefined; saved_group?: { id?: string | undefined; name?: string | undefined; } | undefined; saved_user?: { id?: string | undefined; name?: string | undefined; } | undefined; start?: string | undefined; supplemental_groups?: { id?: string | undefined; name?: string | undefined; } | undefined; user?: { id?: string | undefined; name?: string | undefined; } | undefined; working_directory?: string | undefined; } | undefined; start?: string | undefined; supplemental_groups?: { id?: string | undefined; name?: string | undefined; } | undefined; thread?: { id?: string | number | undefined; name?: string | undefined; } | undefined; title?: string | undefined; uptime?: string | number | undefined; user?: { id?: string | undefined; name?: string | undefined; } | undefined; working_directory?: string | undefined; } | undefined; registry?: { data?: { bytes?: string | undefined; strings?: string[] | undefined; type?: string | undefined; } | undefined; hive?: string | undefined; key?: string | undefined; path?: string | undefined; value?: string | undefined; } | undefined; related?: { hash?: string[] | undefined; hosts?: string[] | undefined; ip?: string[] | undefined; user?: string[] | undefined; } | undefined; rule?: { author?: string[] | undefined; category?: string | undefined; description?: string | undefined; id?: string | undefined; license?: string | undefined; name?: string | undefined; reference?: string | undefined; ruleset?: string | undefined; uuid?: string | undefined; version?: string | undefined; } | undefined; server?: { address?: string | undefined; as?: { number?: string | number | undefined; organization?: { name?: string | undefined; } | undefined; } | undefined; bytes?: string | number | undefined; domain?: string | undefined; geo?: { city_name?: string | undefined; continent_code?: string | undefined; continent_name?: string | undefined; country_iso_code?: string | undefined; country_name?: string | undefined; location?: string | { type: string; coordinates: number[]; } | { lat: number; lon: number; } | { location: number[]; } | { location: string; } | undefined; name?: string | undefined; postal_code?: string | undefined; region_iso_code?: string | undefined; region_name?: string | undefined; timezone?: string | undefined; } | undefined; ip?: string | undefined; mac?: string | undefined; nat?: { ip?: string | undefined; port?: string | number | undefined; } | undefined; packets?: string | number | undefined; port?: string | number | undefined; registered_domain?: string | undefined; subdomain?: string | undefined; top_level_domain?: string | undefined; user?: { domain?: string | undefined; email?: string | undefined; full_name?: string | undefined; group?: { domain?: string | undefined; id?: string | undefined; name?: string | undefined; } | undefined; hash?: string | undefined; id?: string | undefined; name?: string | undefined; roles?: string[] | undefined; } | undefined; } | undefined; service?: { address?: string | undefined; environment?: string | undefined; ephemeral_id?: string | undefined; id?: string | undefined; name?: string | undefined; node?: { name?: string | undefined; role?: string | undefined; roles?: string[] | undefined; } | undefined; origin?: { address?: string | undefined; environment?: string | undefined; ephemeral_id?: string | undefined; id?: string | undefined; name?: string | undefined; node?: { name?: string | undefined; role?: string | undefined; roles?: string[] | undefined; } | undefined; state?: string | undefined; type?: string | undefined; version?: string | undefined; } | undefined; state?: string | undefined; target?: { address?: string | undefined; environment?: string | undefined; ephemeral_id?: string | undefined; id?: string | undefined; name?: string | undefined; node?: { name?: string | undefined; role?: string | undefined; roles?: string[] | undefined; } | undefined; state?: string | undefined; type?: string | undefined; version?: string | undefined; } | undefined; type?: string | undefined; version?: string | undefined; } | undefined; source?: { address?: string | undefined; as?: { number?: string | number | undefined; organization?: { name?: string | undefined; } | undefined; } | undefined; bytes?: string | number | undefined; domain?: string | undefined; geo?: { city_name?: string | undefined; continent_code?: string | undefined; continent_name?: string | undefined; country_iso_code?: string | undefined; country_name?: string | undefined; location?: string | { type: string; coordinates: number[]; } | { lat: number; lon: number; } | { location: number[]; } | { location: string; } | undefined; name?: string | undefined; postal_code?: string | undefined; region_iso_code?: string | undefined; region_name?: string | undefined; timezone?: string | undefined; } | undefined; ip?: string | undefined; mac?: string | undefined; nat?: { ip?: string | undefined; port?: string | number | undefined; } | undefined; packets?: string | number | undefined; port?: string | number | undefined; registered_domain?: string | undefined; subdomain?: string | undefined; top_level_domain?: string | undefined; user?: { domain?: string | undefined; email?: string | undefined; full_name?: string | undefined; group?: { domain?: string | undefined; id?: string | undefined; name?: string | undefined; } | undefined; hash?: string | undefined; id?: string | undefined; name?: string | undefined; roles?: string[] | undefined; } | undefined; } | undefined; span?: { id?: string | undefined; } | undefined; tags?: string[] | undefined; threat?: { enrichments?: { matched?: { atomic?: string | undefined; field?: string | undefined; id?: string | undefined; index?: string | undefined; occurred?: string | undefined; type?: string | undefined; } | undefined; }[] | undefined; feed?: { dashboard_id?: string | undefined; description?: string | undefined; name?: string | undefined; reference?: string | undefined; } | undefined; framework?: string | undefined; group?: { alias?: string[] | undefined; id?: string | undefined; name?: string | undefined; reference?: string | undefined; } | undefined; indicator?: { as?: { number?: string | number | undefined; organization?: { name?: string | undefined; } | undefined; } | undefined; confidence?: string | undefined; description?: string | undefined; email?: { address?: string | undefined; } | undefined; file?: { accessed?: string | undefined; attributes?: string[] | undefined; code_signature?: { digest_algorithm?: string | undefined; exists?: boolean | undefined; signing_id?: string | undefined; status?: string | undefined; subject_name?: string | undefined; team_id?: string | undefined; timestamp?: string | undefined; trusted?: boolean | undefined; valid?: boolean | undefined; } | undefined; created?: string | undefined; ctime?: string | undefined; device?: string | undefined; directory?: string | undefined; drive_letter?: string | undefined; elf?: { architecture?: string | undefined; byte_order?: string | undefined; cpu_type?: string | undefined; creation_date?: string | undefined; exports?: unknown[] | undefined; header?: { abi_version?: string | undefined; class?: string | undefined; data?: string | undefined; entrypoint?: string | number | undefined; object_version?: string | undefined; os_abi?: string | undefined; type?: string | undefined; version?: string | undefined; } | undefined; imports?: unknown[] | undefined; sections?: { chi2?: string | number | undefined; entropy?: string | number | undefined; flags?: string | undefined; name?: string | undefined; physical_offset?: string | undefined; physical_size?: string | number | undefined; type?: string | undefined; virtual_address?: string | number | undefined; virtual_size?: string | number | undefined; }[] | undefined; segments?: { sections?: string | undefined; type?: string | undefined; }[] | undefined; shared_libraries?: string[] | undefined; telfhash?: string | undefined; } | undefined; extension?: string | undefined; fork_name?: string | undefined; gid?: string | undefined; group?: string | undefined; hash?: { md5?: string | undefined; sha1?: string | undefined; sha256?: string | undefined; sha384?: string | undefined; sha512?: string | undefined; ssdeep?: string | undefined; tlsh?: string | undefined; } | undefined; inode?: string | undefined; mime_type?: string | undefined; mode?: string | undefined; mtime?: string | undefined; name?: string | undefined; owner?: string | undefined; path?: string | undefined; pe?: { architecture?: string | undefined; company?: string | undefined; description?: string | undefined; file_version?: string | undefined; imphash?: string | undefined; original_file_name?: string | undefined; pehash?: string | undefined; product?: string | undefined; } | undefined; size?: string | number | undefined; target_path?: string | undefined; type?: string | undefined; uid?: string | undefined; x509?: { alternative_names?: string[] | undefined; issuer?: { common_name?: string[] | undefined; country?: string[] | undefined; distinguished_name?: string | undefined; locality?: string[] | undefined; organization?: string[] | undefined; organizational_unit?: string[] | undefined; state_or_province?: string[] | undefined; } | undefined; not_after?: string | undefined; not_before?: string | undefined; public_key_algorithm?: string | undefined; public_key_curve?: string | undefined; public_key_exponent?: string | number | undefined; public_key_size?: string | number | undefined; serial_number?: string | undefined; signature_algorithm?: string | undefined; subject?: { common_name?: string[] | undefined; country?: string[] | undefined; distinguished_name?: string | undefined; locality?: string[] | undefined; organization?: string[] | undefined; organizational_unit?: string[] | undefined; state_or_province?: string[] | undefined; } | undefined; version_number?: string | undefined; } | undefined; } | undefined; first_seen?: string | undefined; geo?: { city_name?: string | undefined; continent_code?: string | undefined; continent_name?: string | undefined; country_iso_code?: string | undefined; country_name?: string | undefined; location?: string | { type: string; coordinates: number[]; } | { lat: number; lon: number; } | { location: number[]; } | { location: string; } | undefined; name?: string | undefined; postal_code?: string | undefined; region_iso_code?: string | undefined; region_name?: string | undefined; timezone?: string | undefined; } | undefined; ip?: string | undefined; last_seen?: string | undefined; marking?: { tlp?: string | undefined; tlp_version?: string | undefined; } | undefined; modified_at?: string | undefined; port?: string | number | undefined; provider?: string | undefined; reference?: string | undefined; registry?: { data?: { bytes?: string | undefined; strings?: string[] | undefined; type?: string | undefined; } | undefined; hive?: string | undefined; key?: string | undefined; path?: string | undefined; value?: string | undefined; } | undefined; scanner_stats?: string | number | undefined; sightings?: string | number | undefined; type?: string | undefined; url?: { domain?: string | undefined; extension?: string | undefined; fragment?: string | undefined; full?: string | undefined; original?: string | undefined; password?: string | undefined; path?: string | undefined; port?: string | number | undefined; query?: string | undefined; registered_domain?: string | undefined; scheme?: string | undefined; subdomain?: string | undefined; top_level_domain?: string | undefined; username?: string | undefined; } | undefined; x509?: { alternative_names?: string[] | undefined; issuer?: { common_name?: string[] | undefined; country?: string[] | undefined; distinguished_name?: string | undefined; locality?: string[] | undefined; organization?: string[] | undefined; organizational_unit?: string[] | undefined; state_or_province?: string[] | undefined; } | undefined; not_after?: string | undefined; not_before?: string | undefined; public_key_algorithm?: string | undefined; public_key_curve?: string | undefined; public_key_exponent?: string | number | undefined; public_key_size?: string | number | undefined; serial_number?: string | undefined; signature_algorithm?: string | undefined; subject?: { common_name?: string[] | undefined; country?: string[] | undefined; distinguished_name?: string | undefined; locality?: string[] | undefined; organization?: string[] | undefined; organizational_unit?: string[] | undefined; state_or_province?: string[] | undefined; } | undefined; version_number?: string | undefined; } | undefined; } | undefined; software?: { alias?: string[] | undefined; id?: string | undefined; name?: string | undefined; platforms?: string[] | undefined; reference?: string | undefined; type?: string | undefined; } | undefined; tactic?: { id?: string[] | undefined; name?: string[] | undefined; reference?: string[] | undefined; } | undefined; technique?: { id?: string[] | undefined; name?: string[] | undefined; reference?: string[] | undefined; subtechnique?: { id?: string[] | undefined; name?: string[] | undefined; reference?: string[] | undefined; } | undefined; } | undefined; } | undefined; tls?: { cipher?: string | undefined; client?: { certificate?: string | undefined; certificate_chain?: string[] | undefined; hash?: { md5?: string | undefined; sha1?: string | undefined; sha256?: string | undefined; } | undefined; issuer?: string | undefined; ja3?: string | undefined; not_after?: string | undefined; not_before?: string | undefined; server_name?: string | undefined; subject?: string | undefined; supported_ciphers?: string[] | undefined; x509?: { alternative_names?: string[] | undefined; issuer?: { common_name?: string[] | undefined; country?: string[] | undefined; distinguished_name?: string | undefined; locality?: string[] | undefined; organization?: string[] | undefined; organizational_unit?: string[] | undefined; state_or_province?: string[] | undefined; } | undefined; not_after?: string | undefined; not_before?: string | undefined; public_key_algorithm?: string | undefined; public_key_curve?: string | undefined; public_key_exponent?: string | number | undefined; public_key_size?: string | number | undefined; serial_number?: string | undefined; signature_algorithm?: string | undefined; subject?: { common_name?: string[] | undefined; country?: string[] | undefined; distinguished_name?: string | undefined; locality?: string[] | undefined; organization?: string[] | undefined; organizational_unit?: string[] | undefined; state_or_province?: string[] | undefined; } | undefined; version_number?: string | undefined; } | undefined; } | undefined; curve?: string | undefined; established?: boolean | undefined; next_protocol?: string | undefined; resumed?: boolean | undefined; server?: { certificate?: string | undefined; certificate_chain?: string[] | undefined; hash?: { md5?: string | undefined; sha1?: string | undefined; sha256?: string | undefined; } | undefined; issuer?: string | undefined; ja3s?: string | undefined; not_after?: string | undefined; not_before?: string | undefined; subject?: string | undefined; x509?: { alternative_names?: string[] | undefined; issuer?: { common_name?: string[] | undefined; country?: string[] | undefined; distinguished_name?: string | undefined; locality?: string[] | undefined; organization?: string[] | undefined; organizational_unit?: string[] | undefined; state_or_province?: string[] | undefined; } | undefined; not_after?: string | undefined; not_before?: string | undefined; public_key_algorithm?: string | undefined; public_key_curve?: string | undefined; public_key_exponent?: string | number | undefined; public_key_size?: string | number | undefined; serial_number?: string | undefined; signature_algorithm?: string | undefined; subject?: { common_name?: string[] | undefined; country?: string[] | undefined; distinguished_name?: string | undefined; locality?: string[] | undefined; organization?: string[] | undefined; organizational_unit?: string[] | undefined; state_or_province?: string[] | undefined; } | undefined; version_number?: string | undefined; } | undefined; } | undefined; version?: string | undefined; version_protocol?: string | undefined; } | undefined; trace?: { id?: string | undefined; } | undefined; transaction?: { id?: string | undefined; } | undefined; url?: { domain?: string | undefined; extension?: string | undefined; fragment?: string | undefined; full?: string | undefined; original?: string | undefined; password?: string | undefined; path?: string | undefined; port?: string | number | undefined; query?: string | undefined; registered_domain?: string | undefined; scheme?: string | undefined; subdomain?: string | undefined; top_level_domain?: string | undefined; username?: string | undefined; } | undefined; user?: { changes?: { domain?: string | undefined; email?: string | undefined; full_name?: string | undefined; group?: { domain?: string | undefined; id?: string | undefined; name?: string | undefined; } | undefined; hash?: string | undefined; id?: string | undefined; name?: string | undefined; roles?: string[] | undefined; } | undefined; domain?: string | undefined; effective?: { domain?: string | undefined; email?: string | undefined; full_name?: string | undefined; group?: { domain?: string | undefined; id?: string | undefined; name?: string | undefined; } | undefined; hash?: string | undefined; id?: string | undefined; name?: string | undefined; roles?: string[] | undefined; } | undefined; email?: string | undefined; full_name?: string | undefined; group?: { domain?: string | undefined; id?: string | undefined; name?: string | undefined; } | undefined; hash?: string | undefined; id?: string | undefined; name?: string | undefined; risk?: { calculated_level?: string | undefined; calculated_score?: number | undefined; calculated_score_norm?: number | undefined; static_level?: string | undefined; static_score?: number | undefined; static_score_norm?: number | undefined; } | undefined; roles?: string[] | undefined; target?: { domain?: string | undefined; email?: string | undefined; full_name?: string | undefined; group?: { domain?: string | undefined; id?: string | undefined; name?: string | undefined; } | undefined; hash?: string | undefined; id?: string | undefined; name?: string | undefined; roles?: string[] | undefined; } | undefined; } | undefined; user_agent?: { device?: { name?: string | undefined; } | undefined; name?: string | undefined; original?: string | undefined; os?: { family?: string | undefined; full?: string | undefined; kernel?: string | undefined; name?: string | undefined; platform?: string | undefined; type?: string | undefined; version?: string | undefined; } | undefined; version?: string | undefined; } | undefined; vulnerability?: { category?: string[] | undefined; classification?: string | undefined; description?: string | undefined; enumeration?: string | undefined; id?: string | undefined; reference?: string | undefined; report_id?: string | undefined; scanner?: { vendor?: string | undefined; } | undefined; score?: { base?: number | undefined; environmental?: number | undefined; temporal?: number | undefined; version?: string | undefined; } | undefined; severity?: string | undefined; } | undefined; } & {} & { ecs?: { version?: string | undefined; } | undefined; kibana?: { alert?: { risk_score?: number | undefined; rule?: { author?: string | undefined; created_at?: string | undefined; created_by?: string | undefined; description?: string | undefined; enabled?: string | undefined; from?: string | undefined; interval?: string | undefined; license?: string | undefined; note?: string | undefined; references?: string[] | undefined; rule_id?: string | undefined; rule_name_override?: string | undefined; to?: string | undefined; type?: string | undefined; updated_at?: string | undefined; updated_by?: string | undefined; version?: string | undefined; } | undefined; severity?: string | undefined; suppression?: { docs_count?: string | number | undefined; end?: string | undefined; start?: string | undefined; terms?: { field?: string[] | undefined; value?: string[] | undefined; } | undefined; } | undefined; system_status?: string | undefined; workflow_reason?: string | undefined; workflow_user?: string | undefined; } | undefined; } | undefined; }) | ({} & { kibana?: { alert?: { evaluation?: { threshold?: string | number | undefined; value?: string | number | undefined; values?: (string | number)[] | undefined; } | undefined; } | undefined; } | undefined; } & { '@timestamp': string; kibana: { alert: { instance: { id: string; }; rule: { category: string; consumer: string; name: string; producer: string; revision: string | number; rule_type_id: string; uuid: string; }; status: string; uuid: string; }; space_ids: string[]; }; } & { event?: { action?: string | undefined; kind?: string | undefined; } | undefined; kibana?: { alert?: { action_group?: string | undefined; case_ids?: string[] | undefined; duration?: { us?: string | number | undefined; } | undefined; end?: string | undefined; flapping?: boolean | undefined; flapping_history?: boolean[] | undefined; last_detected?: string | undefined; maintenance_window_ids?: string[] | undefined; reason?: string | undefined; rule?: { execution?: { uuid?: string | undefined; } | undefined; parameters?: unknown; tags?: string[] | undefined; } | undefined; start?: string | undefined; time_range?: { gte?: string | undefined; lte?: string | undefined; } | undefined; url?: string | undefined; workflow_status?: string | undefined; workflow_tags?: string[] | undefined; } | undefined; version?: string | undefined; } | undefined; tags?: string[] | undefined; } & { '@timestamp': string; ecs: { version: string; }; } & { agent?: { build?: { original?: string | undefined; } | undefined; ephemeral_id?: string | undefined; id?: string | undefined; name?: string | undefined; type?: string | undefined; version?: string | undefined; } | undefined; client?: { address?: string | undefined; as?: { number?: string | number | undefined; organization?: { name?: string | undefined; } | undefined; } | undefined; bytes?: string | number | undefined; domain?: string | undefined; geo?: { city_name?: string | undefined; continent_code?: string | undefined; continent_name?: string | undefined; country_iso_code?: string | undefined; country_name?: string | undefined; location?: string | { type: string; coordinates: number[]; } | { lat: number; lon: number; } | { location: number[]; } | { location: string; } | undefined; name?: string | undefined; postal_code?: string | undefined; region_iso_code?: string | undefined; region_name?: string | undefined; timezone?: string | undefined; } | undefined; ip?: string | undefined; mac?: string | undefined; nat?: { ip?: string | undefined; port?: string | number | undefined; } | undefined; packets?: string | number | undefined; port?: string | number | undefined; registered_domain?: string | undefined; subdomain?: string | undefined; top_level_domain?: string | undefined; user?: { domain?: string | undefined; email?: string | undefined; full_name?: string | undefined; group?: { domain?: string | undefined; id?: string | undefined; name?: string | undefined; } | undefined; hash?: string | undefined; id?: string | undefined; name?: string | undefined; roles?: string[] | undefined; } | undefined; } | undefined; cloud?: { account?: { id?: string | undefined; name?: string | undefined; } | undefined; availability_zone?: string | undefined; instance?: { id?: string | undefined; name?: string | undefined; } | undefined; machine?: { type?: string | undefined; } | undefined; origin?: { account?: { id?: string | undefined; name?: string | undefined; } | undefined; availability_zone?: string | undefined; instance?: { id?: string | undefined; name?: string | undefined; } | undefined; machine?: { type?: string | undefined; } | undefined; project?: { id?: string | undefined; name?: string | undefined; } | undefined; provider?: string | undefined; region?: string | undefined; service?: { name?: string | undefined; } | undefined; } | undefined; project?: { id?: string | undefined; name?: string | undefined; } | undefined; provider?: string | undefined; region?: string | undefined; service?: { name?: string | undefined; } | undefined; target?: { account?: { id?: string | undefined; name?: string | undefined; } | undefined; availability_zone?: string | undefined; instance?: { id?: string | undefined; name?: string | undefined; } | undefined; machine?: { type?: string | undefined; } | undefined; project?: { id?: string | undefined; name?: string | undefined; } | undefined; provider?: string | undefined; region?: string | undefined; service?: { name?: string | undefined; } | undefined; } | undefined; } | undefined; container?: { cpu?: { usage?: string | number | undefined; } | undefined; disk?: { read?: { bytes?: string | number | undefined; } | undefined; write?: { bytes?: string | number | undefined; } | undefined; } | undefined; id?: string | undefined; image?: { hash?: { all?: string[] | undefined; } | undefined; name?: string | undefined; tag?: string[] | undefined; } | undefined; memory?: { usage?: string | number | undefined; } | undefined; name?: string | undefined; network?: { egress?: { bytes?: string | number | undefined; } | undefined; ingress?: { bytes?: string | number | undefined; } | undefined; } | undefined; runtime?: string | undefined; } | undefined; destination?: { address?: string | undefined; as?: { number?: string | number | undefined; organization?: { name?: string | undefined; } | undefined; } | undefined; bytes?: string | number | undefined; domain?: string | undefined; geo?: { city_name?: string | undefined; continent_code?: string | undefined; continent_name?: string | undefined; country_iso_code?: string | undefined; country_name?: string | undefined; location?: string | { type: string; coordinates: number[]; } | { lat: number; lon: number; } | { location: number[]; } | { location: string; } | undefined; name?: string | undefined; postal_code?: string | undefined; region_iso_code?: string | undefined; region_name?: string | undefined; timezone?: string | undefined; } | undefined; ip?: string | undefined; mac?: string | undefined; nat?: { ip?: string | undefined; port?: string | number | undefined; } | undefined; packets?: string | number | undefined; port?: string | number | undefined; registered_domain?: string | undefined; subdomain?: string | undefined; top_level_domain?: string | undefined; user?: { domain?: string | undefined; email?: string | undefined; full_name?: string | undefined; group?: { domain?: string | undefined; id?: string | undefined; name?: string | undefined; } | undefined; hash?: string | undefined; id?: string | undefined; name?: string | undefined; roles?: string[] | undefined; } | undefined; } | undefined; device?: { id?: string | undefined; manufacturer?: string | undefined; model?: { identifier?: string | undefined; name?: string | undefined; } | undefined; } | undefined; dll?: { code_signature?: { digest_algorithm?: string | undefined; exists?: boolean | undefined; signing_id?: string | undefined; status?: string | undefined; subject_name?: string | undefined; team_id?: string | undefined; timestamp?: string | undefined; trusted?: boolean | undefined; valid?: boolean | undefined; } | undefined; hash?: { md5?: string | undefined; sha1?: string | undefined; sha256?: string | undefined; sha384?: string | undefined; sha512?: string | undefined; ssdeep?: string | undefined; tlsh?: string | undefined; } | undefined; name?: string | undefined; path?: string | undefined; pe?: { architecture?: string | undefined; company?: string | undefined; description?: string | undefined; file_version?: string | undefined; imphash?: string | undefined; original_file_name?: string | undefined; pehash?: string | undefined; product?: string | undefined; } | undefined; } | undefined; dns?: { answers?: { class?: string | undefined; data?: string | undefined; name?: string | undefined; ttl?: string | number | undefined; type?: string | undefined; }[] | undefined; header_flags?: string[] | undefined; id?: string | undefined; op_code?: string | undefined; question?: { class?: string | undefined; name?: string | undefined; registered_domain?: string | undefined; subdomain?: string | undefined; top_level_domain?: string | undefined; type?: string | undefined; } | undefined; resolved_ip?: string[] | undefined; response_code?: string | undefined; type?: string | undefined; } | undefined; email?: { attachments?: { file?: { extension?: string | undefined; hash?: { md5?: string | undefined; sha1?: string | undefined; sha256?: string | undefined; sha384?: string | undefined; sha512?: string | undefined; ssdeep?: string | undefined; tlsh?: string | undefined; } | undefined; mime_type?: string | undefined; name?: string | undefined; size?: string | number | undefined; } | undefined; }[] | undefined; bcc?: { address?: string[] | undefined; } | undefined; cc?: { address?: string[] | undefined; } | undefined; content_type?: string | undefined; delivery_timestamp?: string | undefined; direction?: string | undefined; from?: { address?: string[] | undefined; } | undefined; local_id?: string | undefined; message_id?: string | undefined; origination_timestamp?: string | undefined; reply_to?: { address?: string[] | undefined; } | undefined; sender?: { address?: string | undefined; } | undefined; subject?: string | undefined; to?: { address?: string[] | undefined; } | undefined; x_mailer?: string | undefined; } | undefined; error?: { code?: string | undefined; id?: string | undefined; message?: string | undefined; stack_trace?: string | undefined; type?: string | undefined; } | undefined; event?: { action?: string | undefined; agent_id_status?: string | undefined; category?: string[] | undefined; code?: string | undefined; created?: string | undefined; dataset?: string | undefined; duration?: string | number | undefined; end?: string | undefined; hash?: string | undefined; id?: string | undefined; ingested?: string | undefined; kind?: string | undefined; module?: string | undefined; original?: string | undefined; outcome?: string | undefined; provider?: string | undefined; reason?: string | undefined; reference?: string | undefined; risk_score?: number | undefined; risk_score_norm?: number | undefined; sequence?: string | number | undefined; severity?: string | number | undefined; start?: string | undefined; timezone?: string | undefined; type?: string[] | undefined; url?: string | undefined; } | undefined; faas?: { coldstart?: boolean | undefined; execution?: string | undefined; id?: string | undefined; name?: string | undefined; version?: string | undefined; } | undefined; file?: { accessed?: string | undefined; attributes?: string[] | undefined; code_signature?: { digest_algorithm?: string | undefined; exists?: boolean | undefined; signing_id?: string | undefined; status?: string | undefined; subject_name?: string | undefined; team_id?: string | undefined; timestamp?: string | undefined; trusted?: boolean | undefined; valid?: boolean | undefined; } | undefined; created?: string | undefined; ctime?: string | undefined; device?: string | undefined; directory?: string | undefined; drive_letter?: string | undefined; elf?: { architecture?: string | undefined; byte_order?: string | undefined; cpu_type?: string | undefined; creation_date?: string | undefined; exports?: unknown[] | undefined; header?: { abi_version?: string | undefined; class?: string | undefined; data?: string | undefined; entrypoint?: string | number | undefined; object_version?: string | undefined; os_abi?: string | undefined; type?: string | undefined; version?: string | undefined; } | undefined; imports?: unknown[] | undefined; sections?: { chi2?: string | number | undefined; entropy?: string | number | undefined; flags?: string | undefined; name?: string | undefined; physical_offset?: string | undefined; physical_size?: string | number | undefined; type?: string | undefined; virtual_address?: string | number | undefined; virtual_size?: string | number | undefined; }[] | undefined; segments?: { sections?: string | undefined; type?: string | undefined; }[] | undefined; shared_libraries?: string[] | undefined; telfhash?: string | undefined; } | undefined; extension?: string | undefined; fork_name?: string | undefined; gid?: string | undefined; group?: string | undefined; hash?: { md5?: string | undefined; sha1?: string | undefined; sha256?: string | undefined; sha384?: string | undefined; sha512?: string | undefined; ssdeep?: string | undefined; tlsh?: string | undefined; } | undefined; inode?: string | undefined; mime_type?: string | undefined; mode?: string | undefined; mtime?: string | undefined; name?: string | undefined; owner?: string | undefined; path?: string | undefined; pe?: { architecture?: string | undefined; company?: string | undefined; description?: string | undefined; file_version?: string | undefined; imphash?: string | undefined; original_file_name?: string | undefined; pehash?: string | undefined; product?: string | undefined; } | undefined; size?: string | number | undefined; target_path?: string | undefined; type?: string | undefined; uid?: string | undefined; x509?: { alternative_names?: string[] | undefined; issuer?: { common_name?: string[] | undefined; country?: string[] | undefined; distinguished_name?: string | undefined; locality?: string[] | undefined; organization?: string[] | undefined; organizational_unit?: string[] | undefined; state_or_province?: string[] | undefined; } | undefined; not_after?: string | undefined; not_before?: string | undefined; public_key_algorithm?: string | undefined; public_key_curve?: string | undefined; public_key_exponent?: string | number | undefined; public_key_size?: string | number | undefined; serial_number?: string | undefined; signature_algorithm?: string | undefined; subject?: { common_name?: string[] | undefined; country?: string[] | undefined; distinguished_name?: string | undefined; locality?: string[] | undefined; organization?: string[] | undefined; organizational_unit?: string[] | undefined; state_or_province?: string[] | undefined; } | undefined; version_number?: string | undefined; } | undefined; } | undefined; group?: { domain?: string | undefined; id?: string | undefined; name?: string | undefined; } | undefined; host?: { architecture?: string | undefined; boot?: { id?: string | undefined; } | undefined; cpu?: { usage?: string | number | undefined; } | undefined; disk?: { read?: { bytes?: string | number | undefined; } | undefined; write?: { bytes?: string | number | undefined; } | undefined; } | undefined; domain?: string | undefined; geo?: { city_name?: string | undefined; continent_code?: string | undefined; continent_name?: string | undefined; country_iso_code?: string | undefined; country_name?: string | undefined; location?: string | { type: string; coordinates: number[]; } | { lat: number; lon: number; } | { location: number[]; } | { location: string; } | undefined; name?: string | undefined; postal_code?: string | undefined; region_iso_code?: string | undefined; region_name?: string | undefined; timezone?: string | undefined; } | undefined; hostname?: string | undefined; id?: string | undefined; ip?: string[] | undefined; mac?: string[] | undefined; name?: string | undefined; network?: { egress?: { bytes?: string | number | undefined; packets?: string | number | undefined; } | undefined; ingress?: { bytes?: string | number | undefined; packets?: string | number | undefined; } | undefined; } | undefined; os?: { family?: string | undefined; full?: string | undefined; kernel?: string | undefined; name?: string | undefined; platform?: string | undefined; type?: string | undefined; version?: string | undefined; } | undefined; pid_ns_ino?: string | undefined; risk?: { calculated_level?: string | undefined; calculated_score?: number | undefined; calculated_score_norm?: number | undefined; static_level?: string | undefined; static_score?: number | undefined; static_score_norm?: number | undefined; } | undefined; type?: string | undefined; uptime?: string | number | undefined; } | undefined; http?: { request?: { body?: { bytes?: string | number | undefined; content?: string | undefined; } | undefined; bytes?: string | number | undefined; id?: string | undefined; method?: string | undefined; mime_type?: string | undefined; referrer?: string | undefined; } | undefined; response?: { body?: { bytes?: string | number | undefined; content?: string | undefined; } | undefined; bytes?: string | number | undefined; mime_type?: string | undefined; status_code?: string | number | undefined; } | undefined; version?: string | undefined; } | undefined; log?: { file?: { path?: string | undefined; } | undefined; level?: string | undefined; logger?: string | undefined; origin?: { file?: { line?: string | number | undefined; name?: string | undefined; } | undefined; function?: string | undefined; } | undefined; } | undefined; message?: string | undefined; network?: { application?: string | undefined; bytes?: string | number | undefined; community_id?: string | undefined; direction?: string | undefined; forwarded_ip?: string | undefined; iana_number?: string | undefined; name?: string | undefined; packets?: string | number | undefined; protocol?: string | undefined; transport?: string | undefined; type?: string | undefined; vlan?: { id?: string | undefined; name?: string | undefined; } | undefined; } | undefined; observer?: { geo?: { city_name?: string | undefined; continent_code?: string | undefined; continent_name?: string | undefined; country_iso_code?: string | undefined; country_name?: string | undefined; location?: string | { type: string; coordinates: number[]; } | { lat: number; lon: number; } | { location: number[]; } | { location: string; } | undefined; name?: string | undefined; postal_code?: string | undefined; region_iso_code?: string | undefined; region_name?: string | undefined; timezone?: string | undefined; } | undefined; hostname?: string | undefined; ip?: string[] | undefined; mac?: string[] | undefined; name?: string | undefined; os?: { family?: string | undefined; full?: string | undefined; kernel?: string | undefined; name?: string | undefined; platform?: string | undefined; type?: string | undefined; version?: string | undefined; } | undefined; product?: string | undefined; serial_number?: string | undefined; type?: string | undefined; vendor?: string | undefined; version?: string | undefined; } | undefined; orchestrator?: { api_version?: string | undefined; cluster?: { id?: string | undefined; name?: string | undefined; url?: string | undefined; version?: string | undefined; } | undefined; namespace?: string | undefined; organization?: string | undefined; resource?: { id?: string | undefined; ip?: string[] | undefined; name?: string | undefined; parent?: { type?: string | undefined; } | undefined; type?: string | undefined; } | undefined; type?: string | undefined; } | undefined; organization?: { id?: string | undefined; name?: string | undefined; } | undefined; package?: { architecture?: string | undefined; build_version?: string | undefined; checksum?: string | undefined; description?: string | undefined; install_scope?: string | undefined; installed?: string | undefined; license?: string | undefined; name?: string | undefined; path?: string | undefined; reference?: string | undefined; size?: string | number | undefined; type?: string | undefined; version?: string | undefined; } | undefined; process?: { args?: string[] | undefined; args_count?: string | number | undefined; code_signature?: { digest_algorithm?: string | undefined; exists?: boolean | undefined; signing_id?: string | undefined; status?: string | undefined; subject_name?: string | undefined; team_id?: string | undefined; timestamp?: string | undefined; trusted?: boolean | undefined; valid?: boolean | undefined; } | undefined; command_line?: string | undefined; elf?: { architecture?: string | undefined; byte_order?: string | undefined; cpu_type?: string | undefined; creation_date?: string | undefined; exports?: unknown[] | undefined; header?: { abi_version?: string | undefined; class?: string | undefined; data?: string | undefined; entrypoint?: string | number | undefined; object_version?: string | undefined; os_abi?: string | undefined; type?: string | undefined; version?: string | undefined; } | undefined; imports?: unknown[] | undefined; sections?: { chi2?: string | number | undefined; entropy?: string | number | undefined; flags?: string | undefined; name?: string | undefined; physical_offset?: string | undefined; physical_size?: string | number | undefined; type?: string | undefined; virtual_address?: string | number | undefined; virtual_size?: string | number | undefined; }[] | undefined; segments?: { sections?: string | undefined; type?: string | undefined; }[] | undefined; shared_libraries?: string[] | undefined; telfhash?: string | undefined; } | undefined; end?: string | undefined; entity_id?: string | undefined; entry_leader?: { args?: string[] | undefined; args_count?: string | number | undefined; attested_groups?: { name?: string | undefined; } | undefined; attested_user?: { id?: string | undefined; name?: string | undefined; } | undefined; command_line?: string | undefined; entity_id?: string | undefined; entry_meta?: { source?: { ip?: string | undefined; } | undefined; type?: string | undefined; } | undefined; executable?: string | undefined; group?: { id?: string | undefined; name?: string | undefined; } | undefined; interactive?: boolean | undefined; name?: string | undefined; parent?: { entity_id?: string | undefined; pid?: string | number | undefined; session_leader?: { entity_id?: string | undefined; pid?: string | number | undefined; start?: string | undefined; } | undefined; start?: string | undefined; } | undefined; pid?: string | number | undefined; real_group?: { id?: string | undefined; name?: string | undefined; } | undefined; real_user?: { id?: string | undefined; name?: string | undefined; } | undefined; same_as_process?: boolean | undefined; saved_group?: { id?: string | undefined; name?: string | undefined; } | undefined; saved_user?: { id?: string | undefined; name?: string | undefined; } | undefined; start?: string | undefined; supplemental_groups?: { id?: string | undefined; name?: string | undefined; } | undefined; user?: { id?: string | undefined; name?: string | undefined; } | undefined; working_directory?: string | undefined; } | undefined; env_vars?: string[] | undefined; executable?: string | undefined; exit_code?: string | number | undefined; group_leader?: { args?: string[] | undefined; args_count?: string | number | undefined; command_line?: string | undefined; entity_id?: string | undefined; executable?: string | undefined; group?: { id?: string | undefined; name?: string | undefined; } | undefined; interactive?: boolean | undefined; name?: string | undefined; pid?: string | number | undefined; real_group?: { id?: string | undefined; name?: string | undefined; } | undefined; real_user?: { id?: string | undefined; name?: string | undefined; } | undefined; same_as_process?: boolean | undefined; saved_group?: { id?: string | undefined; name?: string | undefined; } | undefined; saved_user?: { id?: string | undefined; name?: string | undefined; } | undefined; start?: string | undefined; supplemental_groups?: { id?: string | undefined; name?: string | undefined; } | undefined; user?: { id?: string | undefined; name?: string | undefined; } | undefined; working_directory?: string | undefined; } | undefined; hash?: { md5?: string | undefined; sha1?: string | undefined; sha256?: string | undefined; sha384?: string | undefined; sha512?: string | undefined; ssdeep?: string | undefined; tlsh?: string | undefined; } | undefined; interactive?: boolean | undefined; name?: string | undefined; parent?: { args?: string[] | undefined; args_count?: string | number | undefined; code_signature?: { digest_algorithm?: string | undefined; exists?: boolean | undefined; signing_id?: string | undefined; status?: string | undefined; subject_name?: string | undefined; team_id?: string | undefined; timestamp?: string | undefined; trusted?: boolean | undefined; valid?: boolean | undefined; } | undefined; command_line?: string | undefined; elf?: { architecture?: string | undefined; byte_order?: string | undefined; cpu_type?: string | undefined; creation_date?: string | undefined; exports?: unknown[] | undefined; header?: { abi_version?: string | undefined; class?: string | undefined; data?: string | undefined; entrypoint?: string | number | undefined; object_version?: string | undefined; os_abi?: string | undefined; type?: string | undefined; version?: string | undefined; } | undefined; imports?: unknown[] | undefined; sections?: { chi2?: string | number | undefined; entropy?: string | number | undefined; flags?: string | undefined; name?: string | undefined; physical_offset?: string | undefined; physical_size?: string | number | undefined; type?: string | undefined; virtual_address?: string | number | undefined; virtual_size?: string | number | undefined; }[] | undefined; segments?: { sections?: string | undefined; type?: string | undefined; }[] | undefined; shared_libraries?: string[] | undefined; telfhash?: string | undefined; } | undefined; end?: string | undefined; entity_id?: string | undefined; executable?: string | undefined; exit_code?: string | number | undefined; group?: { id?: string | undefined; name?: string | undefined; } | undefined; group_leader?: { entity_id?: string | undefined; pid?: string | number | undefined; start?: string | undefined; } | undefined; hash?: { md5?: string | undefined; sha1?: string | undefined; sha256?: string | undefined; sha384?: string | undefined; sha512?: string | undefined; ssdeep?: string | undefined; tlsh?: string | undefined; } | undefined; interactive?: boolean | undefined; name?: string | undefined; pe?: { architecture?: string | undefined; company?: string | undefined; description?: string | undefined; file_version?: string | undefined; imphash?: string | undefined; original_file_name?: string | undefined; pehash?: string | undefined; product?: string | undefined; } | undefined; pgid?: string | number | undefined; pid?: string | number | undefined; real_group?: { id?: string | undefined; name?: string | undefined; } | undefined; real_user?: { id?: string | undefined; name?: string | undefined; } | undefined; saved_group?: { id?: string | undefined; name?: string | undefined; } | undefined; saved_user?: { id?: string | undefined; name?: string | undefined; } | undefined; start?: string | undefined; supplemental_groups?: { id?: string | undefined; name?: string | undefined; } | undefined; thread?: { id?: string | number | undefined; name?: string | undefined; } | undefined; title?: string | undefined; uptime?: string | number | undefined; user?: { id?: string | undefined; name?: string | undefined; } | undefined; working_directory?: string | undefined; } | undefined; pe?: { architecture?: string | undefined; company?: string | undefined; description?: string | undefined; file_version?: string | undefined; imphash?: string | undefined; original_file_name?: string | undefined; pehash?: string | undefined; product?: string | undefined; } | undefined; pgid?: string | number | undefined; pid?: string | number | undefined; previous?: { args?: string[] | undefined; args_count?: string | number | undefined; executable?: string | undefined; } | undefined; real_group?: { id?: string | undefined; name?: string | undefined; } | undefined; real_user?: { id?: string | undefined; name?: string | undefined; } | undefined; saved_group?: { id?: string | undefined; name?: string | undefined; } | undefined; saved_user?: { id?: string | undefined; name?: string | undefined; } | undefined; session_leader?: { args?: string[] | undefined; args_count?: string | number | undefined; command_line?: string | undefined; entity_id?: string | undefined; executable?: string | undefined; group?: { id?: string | undefined; name?: string | undefined; } | undefined; interactive?: boolean | undefined; name?: string | undefined; parent?: { entity_id?: string | undefined; pid?: string | number | undefined; session_leader?: { entity_id?: string | undefined; pid?: string | number | undefined; start?: string | undefined; } | undefined; start?: string | undefined; } | undefined; pid?: string | number | undefined; real_group?: { id?: string | undefined; name?: string | undefined; } | undefined; real_user?: { id?: string | undefined; name?: string | undefined; } | undefined; same_as_process?: boolean | undefined; saved_group?: { id?: string | undefined; name?: string | undefined; } | undefined; saved_user?: { id?: string | undefined; name?: string | undefined; } | undefined; start?: string | undefined; supplemental_groups?: { id?: string | undefined; name?: string | undefined; } | undefined; user?: { id?: string | undefined; name?: string | undefined; } | undefined; working_directory?: string | undefined; } | undefined; start?: string | undefined; supplemental_groups?: { id?: string | undefined; name?: string | undefined; } | undefined; thread?: { id?: string | number | undefined; name?: string | undefined; } | undefined; title?: string | undefined; uptime?: string | number | undefined; user?: { id?: string | undefined; name?: string | undefined; } | undefined; working_directory?: string | undefined; } | undefined; registry?: { data?: { bytes?: string | undefined; strings?: string[] | undefined; type?: string | undefined; } | undefined; hive?: string | undefined; key?: string | undefined; path?: string | undefined; value?: string | undefined; } | undefined; related?: { hash?: string[] | undefined; hosts?: string[] | undefined; ip?: string[] | undefined; user?: string[] | undefined; } | undefined; rule?: { author?: string[] | undefined; category?: string | undefined; description?: string | undefined; id?: string | undefined; license?: string | undefined; name?: string | undefined; reference?: string | undefined; ruleset?: string | undefined; uuid?: string | undefined; version?: string | undefined; } | undefined; server?: { address?: string | undefined; as?: { number?: string | number | undefined; organization?: { name?: string | undefined; } | undefined; } | undefined; bytes?: string | number | undefined; domain?: string | undefined; geo?: { city_name?: string | undefined; continent_code?: string | undefined; continent_name?: string | undefined; country_iso_code?: string | undefined; country_name?: string | undefined; location?: string | { type: string; coordinates: number[]; } | { lat: number; lon: number; } | { location: number[]; } | { location: string; } | undefined; name?: string | undefined; postal_code?: string | undefined; region_iso_code?: string | undefined; region_name?: string | undefined; timezone?: string | undefined; } | undefined; ip?: string | undefined; mac?: string | undefined; nat?: { ip?: string | undefined; port?: string | number | undefined; } | undefined; packets?: string | number | undefined; port?: string | number | undefined; registered_domain?: string | undefined; subdomain?: string | undefined; top_level_domain?: string | undefined; user?: { domain?: string | undefined; email?: string | undefined; full_name?: string | undefined; group?: { domain?: string | undefined; id?: string | undefined; name?: string | undefined; } | undefined; hash?: string | undefined; id?: string | undefined; name?: string | undefined; roles?: string[] | undefined; } | undefined; } | undefined; service?: { address?: string | undefined; environment?: string | undefined; ephemeral_id?: string | undefined; id?: string | undefined; name?: string | undefined; node?: { name?: string | undefined; role?: string | undefined; roles?: string[] | undefined; } | undefined; origin?: { address?: string | undefined; environment?: string | undefined; ephemeral_id?: string | undefined; id?: string | undefined; name?: string | undefined; node?: { name?: string | undefined; role?: string | undefined; roles?: string[] | undefined; } | undefined; state?: string | undefined; type?: string | undefined; version?: string | undefined; } | undefined; state?: string | undefined; target?: { address?: string | undefined; environment?: string | undefined; ephemeral_id?: string | undefined; id?: string | undefined; name?: string | undefined; node?: { name?: string | undefined; role?: string | undefined; roles?: string[] | undefined; } | undefined; state?: string | undefined; type?: string | undefined; version?: string | undefined; } | undefined; type?: string | undefined; version?: string | undefined; } | undefined; source?: { address?: string | undefined; as?: { number?: string | number | undefined; organization?: { name?: string | undefined; } | undefined; } | undefined; bytes?: string | number | undefined; domain?: string | undefined; geo?: { city_name?: string | undefined; continent_code?: string | undefined; continent_name?: string | undefined; country_iso_code?: string | undefined; country_name?: string | undefined; location?: string | { type: string; coordinates: number[]; } | { lat: number; lon: number; } | { location: number[]; } | { location: string; } | undefined; name?: string | undefined; postal_code?: string | undefined; region_iso_code?: string | undefined; region_name?: string | undefined; timezone?: string | undefined; } | undefined; ip?: string | undefined; mac?: string | undefined; nat?: { ip?: string | undefined; port?: string | number | undefined; } | undefined; packets?: string | number | undefined; port?: string | number | undefined; registered_domain?: string | undefined; subdomain?: string | undefined; top_level_domain?: string | undefined; user?: { domain?: string | undefined; email?: string | undefined; full_name?: string | undefined; group?: { domain?: string | undefined; id?: string | undefined; name?: string | undefined; } | undefined; hash?: string | undefined; id?: string | undefined; name?: string | undefined; roles?: string[] | undefined; } | undefined; } | undefined; span?: { id?: string | undefined; } | undefined; tags?: string[] | undefined; threat?: { enrichments?: { matched?: { atomic?: string | undefined; field?: string | undefined; id?: string | undefined; index?: string | undefined; occurred?: string | undefined; type?: string | undefined; } | undefined; }[] | undefined; feed?: { dashboard_id?: string | undefined; description?: string | undefined; name?: string | undefined; reference?: string | undefined; } | undefined; framework?: string | undefined; group?: { alias?: string[] | undefined; id?: string | undefined; name?: string | undefined; reference?: string | undefined; } | undefined; indicator?: { as?: { number?: string | number | undefined; organization?: { name?: string | undefined; } | undefined; } | undefined; confidence?: string | undefined; description?: string | undefined; email?: { address?: string | undefined; } | undefined; file?: { accessed?: string | undefined; attributes?: string[] | undefined; code_signature?: { digest_algorithm?: string | undefined; exists?: boolean | undefined; signing_id?: string | undefined; status?: string | undefined; subject_name?: string | undefined; team_id?: string | undefined; timestamp?: string | undefined; trusted?: boolean | undefined; valid?: boolean | undefined; } | undefined; created?: string | undefined; ctime?: string | undefined; device?: string | undefined; directory?: string | undefined; drive_letter?: string | undefined; elf?: { architecture?: string | undefined; byte_order?: string | undefined; cpu_type?: string | undefined; creation_date?: string | undefined; exports?: unknown[] | undefined; header?: { abi_version?: string | undefined; class?: string | undefined; data?: string | undefined; entrypoint?: string | number | undefined; object_version?: string | undefined; os_abi?: string | undefined; type?: string | undefined; version?: string | undefined; } | undefined; imports?: unknown[] | undefined; sections?: { chi2?: string | number | undefined; entropy?: string | number | undefined; flags?: string | undefined; name?: string | undefined; physical_offset?: string | undefined; physical_size?: string | number | undefined; type?: string | undefined; virtual_address?: string | number | undefined; virtual_size?: string | number | undefined; }[] | undefined; segments?: { sections?: string | undefined; type?: string | undefined; }[] | undefined; shared_libraries?: string[] | undefined; telfhash?: string | undefined; } | undefined; extension?: string | undefined; fork_name?: string | undefined; gid?: string | undefined; group?: string | undefined; hash?: { md5?: string | undefined; sha1?: string | undefined; sha256?: string | undefined; sha384?: string | undefined; sha512?: string | undefined; ssdeep?: string | undefined; tlsh?: string | undefined; } | undefined; inode?: string | undefined; mime_type?: string | undefined; mode?: string | undefined; mtime?: string | undefined; name?: string | undefined; owner?: string | undefined; path?: string | undefined; pe?: { architecture?: string | undefined; company?: string | undefined; description?: string | undefined; file_version?: string | undefined; imphash?: string | undefined; original_file_name?: string | undefined; pehash?: string | undefined; product?: string | undefined; } | undefined; size?: string | number | undefined; target_path?: string | undefined; type?: string | undefined; uid?: string | undefined; x509?: { alternative_names?: string[] | undefined; issuer?: { common_name?: string[] | undefined; country?: string[] | undefined; distinguished_name?: string | undefined; locality?: string[] | undefined; organization?: string[] | undefined; organizational_unit?: string[] | undefined; state_or_province?: string[] | undefined; } | undefined; not_after?: string | undefined; not_before?: string | undefined; public_key_algorithm?: string | undefined; public_key_curve?: string | undefined; public_key_exponent?: string | number | undefined; public_key_size?: string | number | undefined; serial_number?: string | undefined; signature_algorithm?: string | undefined; subject?: { common_name?: string[] | undefined; country?: string[] | undefined; distinguished_name?: string | undefined; locality?: string[] | undefined; organization?: string[] | undefined; organizational_unit?: string[] | undefined; state_or_province?: string[] | undefined; } | undefined; version_number?: string | undefined; } | undefined; } | undefined; first_seen?: string | undefined; geo?: { city_name?: string | undefined; continent_code?: string | undefined; continent_name?: string | undefined; country_iso_code?: string | undefined; country_name?: string | undefined; location?: string | { type: string; coordinates: number[]; } | { lat: number; lon: number; } | { location: number[]; } | { location: string; } | undefined; name?: string | undefined; postal_code?: string | undefined; region_iso_code?: string | undefined; region_name?: string | undefined; timezone?: string | undefined; } | undefined; ip?: string | undefined; last_seen?: string | undefined; marking?: { tlp?: string | undefined; tlp_version?: string | undefined; } | undefined; modified_at?: string | undefined; port?: string | number | undefined; provider?: string | undefined; reference?: string | undefined; registry?: { data?: { bytes?: string | undefined; strings?: string[] | undefined; type?: string | undefined; } | undefined; hive?: string | undefined; key?: string | undefined; path?: string | undefined; value?: string | undefined; } | undefined; scanner_stats?: string | number | undefined; sightings?: string | number | undefined; type?: string | undefined; url?: { domain?: string | undefined; extension?: string | undefined; fragment?: string | undefined; full?: string | undefined; original?: string | undefined; password?: string | undefined; path?: string | undefined; port?: string | number | undefined; query?: string | undefined; registered_domain?: string | undefined; scheme?: string | undefined; subdomain?: string | undefined; top_level_domain?: string | undefined; username?: string | undefined; } | undefined; x509?: { alternative_names?: string[] | undefined; issuer?: { common_name?: string[] | undefined; country?: string[] | undefined; distinguished_name?: string | undefined; locality?: string[] | undefined; organization?: string[] | undefined; organizational_unit?: string[] | undefined; state_or_province?: string[] | undefined; } | undefined; not_after?: string | undefined; not_before?: string | undefined; public_key_algorithm?: string | undefined; public_key_curve?: string | undefined; public_key_exponent?: string | number | undefined; public_key_size?: string | number | undefined; serial_number?: string | undefined; signature_algorithm?: string | undefined; subject?: { common_name?: string[] | undefined; country?: string[] | undefined; distinguished_name?: string | undefined; locality?: string[] | undefined; organization?: string[] | undefined; organizational_unit?: string[] | undefined; state_or_province?: string[] | undefined; } | undefined; version_number?: string | undefined; } | undefined; } | undefined; software?: { alias?: string[] | undefined; id?: string | undefined; name?: string | undefined; platforms?: string[] | undefined; reference?: string | undefined; type?: string | undefined; } | undefined; tactic?: { id?: string[] | undefined; name?: string[] | undefined; reference?: string[] | undefined; } | undefined; technique?: { id?: string[] | undefined; name?: string[] | undefined; reference?: string[] | undefined; subtechnique?: { id?: string[] | undefined; name?: string[] | undefined; reference?: string[] | undefined; } | undefined; } | undefined; } | undefined; tls?: { cipher?: string | undefined; client?: { certificate?: string | undefined; certificate_chain?: string[] | undefined; hash?: { md5?: string | undefined; sha1?: string | undefined; sha256?: string | undefined; } | undefined; issuer?: string | undefined; ja3?: string | undefined; not_after?: string | undefined; not_before?: string | undefined; server_name?: string | undefined; subject?: string | undefined; supported_ciphers?: string[] | undefined; x509?: { alternative_names?: string[] | undefined; issuer?: { common_name?: string[] | undefined; country?: string[] | undefined; distinguished_name?: string | undefined; locality?: string[] | undefined; organization?: string[] | undefined; organizational_unit?: string[] | undefined; state_or_province?: string[] | undefined; } | undefined; not_after?: string | undefined; not_before?: string | undefined; public_key_algorithm?: string | undefined; public_key_curve?: string | undefined; public_key_exponent?: string | number | undefined; public_key_size?: string | number | undefined; serial_number?: string | undefined; signature_algorithm?: string | undefined; subject?: { common_name?: string[] | undefined; country?: string[] | undefined; distinguished_name?: string | undefined; locality?: string[] | undefined; organization?: string[] | undefined; organizational_unit?: string[] | undefined; state_or_province?: string[] | undefined; } | undefined; version_number?: string | undefined; } | undefined; } | undefined; curve?: string | undefined; established?: boolean | undefined; next_protocol?: string | undefined; resumed?: boolean | undefined; server?: { certificate?: string | undefined; certificate_chain?: string[] | undefined; hash?: { md5?: string | undefined; sha1?: string | undefined; sha256?: string | undefined; } | undefined; issuer?: string | undefined; ja3s?: string | undefined; not_after?: string | undefined; not_before?: string | undefined; subject?: string | undefined; x509?: { alternative_names?: string[] | undefined; issuer?: { common_name?: string[] | undefined; country?: string[] | undefined; distinguished_name?: string | undefined; locality?: string[] | undefined; organization?: string[] | undefined; organizational_unit?: string[] | undefined; state_or_province?: string[] | undefined; } | undefined; not_after?: string | undefined; not_before?: string | undefined; public_key_algorithm?: string | undefined; public_key_curve?: string | undefined; public_key_exponent?: string | number | undefined; public_key_size?: string | number | undefined; serial_number?: string | undefined; signature_algorithm?: string | undefined; subject?: { common_name?: string[] | undefined; country?: string[] | undefined; distinguished_name?: string | undefined; locality?: string[] | undefined; organization?: string[] | undefined; organizational_unit?: string[] | undefined; state_or_province?: string[] | undefined; } | undefined; version_number?: string | undefined; } | undefined; } | undefined; version?: string | undefined; version_protocol?: string | undefined; } | undefined; trace?: { id?: string | undefined; } | undefined; transaction?: { id?: string | undefined; } | undefined; url?: { domain?: string | undefined; extension?: string | undefined; fragment?: string | undefined; full?: string | undefined; original?: string | undefined; password?: string | undefined; path?: string | undefined; port?: string | number | undefined; query?: string | undefined; registered_domain?: string | undefined; scheme?: string | undefined; subdomain?: string | undefined; top_level_domain?: string | undefined; username?: string | undefined; } | undefined; user?: { changes?: { domain?: string | undefined; email?: string | undefined; full_name?: string | undefined; group?: { domain?: string | undefined; id?: string | undefined; name?: string | undefined; } | undefined; hash?: string | undefined; id?: string | undefined; name?: string | undefined; roles?: string[] | undefined; } | undefined; domain?: string | undefined; effective?: { domain?: string | undefined; email?: string | undefined; full_name?: string | undefined; group?: { domain?: string | undefined; id?: string | undefined; name?: string | undefined; } | undefined; hash?: string | undefined; id?: string | undefined; name?: string | undefined; roles?: string[] | undefined; } | undefined; email?: string | undefined; full_name?: string | undefined; group?: { domain?: string | undefined; id?: string | undefined; name?: string | undefined; } | undefined; hash?: string | undefined; id?: string | undefined; name?: string | undefined; risk?: { calculated_level?: string | undefined; calculated_score?: number | undefined; calculated_score_norm?: number | undefined; static_level?: string | undefined; static_score?: number | undefined; static_score_norm?: number | undefined; } | undefined; roles?: string[] | undefined; target?: { domain?: string | undefined; email?: string | undefined; full_name?: string | undefined; group?: { domain?: string | undefined; id?: string | undefined; name?: string | undefined; } | undefined; hash?: string | undefined; id?: string | undefined; name?: string | undefined; roles?: string[] | undefined; } | undefined; } | undefined; user_agent?: { device?: { name?: string | undefined; } | undefined; name?: string | undefined; original?: string | undefined; os?: { family?: string | undefined; full?: string | undefined; kernel?: string | undefined; name?: string | undefined; platform?: string | undefined; type?: string | undefined; version?: string | undefined; } | undefined; version?: string | undefined; } | undefined; vulnerability?: { category?: string[] | undefined; classification?: string | undefined; description?: string | undefined; enumeration?: string | undefined; id?: string | undefined; reference?: string | undefined; report_id?: string | undefined; scanner?: { vendor?: string | undefined; } | undefined; score?: { base?: number | undefined; environmental?: number | undefined; temporal?: number | undefined; version?: string | undefined; } | undefined; severity?: string | undefined; } | undefined; } & {} & { ecs?: { version?: string | undefined; } | undefined; kibana?: { alert?: { risk_score?: number | undefined; rule?: { author?: string | undefined; created_at?: string | undefined; created_by?: string | undefined; description?: string | undefined; enabled?: string | undefined; from?: string | undefined; interval?: string | undefined; license?: string | undefined; note?: string | undefined; references?: string[] | undefined; rule_id?: string | undefined; rule_name_override?: string | undefined; to?: string | undefined; type?: string | undefined; updated_at?: string | undefined; updated_by?: string | undefined; version?: string | undefined; } | undefined; severity?: string | undefined; suppression?: { docs_count?: string | number | undefined; end?: string | undefined; start?: string | undefined; terms?: { field?: string[] | undefined; value?: string[] | undefined; } | undefined; } | undefined; system_status?: string | undefined; workflow_reason?: string | undefined; workflow_user?: string | undefined; } | undefined; } | undefined; }) | ({} & { kibana?: { alert?: { evaluation?: { threshold?: string | number | undefined; value?: string | number | undefined; values?: (string | number)[] | undefined; } | undefined; } | undefined; } | undefined; slo?: { id?: string | undefined; instanceId?: string | undefined; revision?: string | number | undefined; } | undefined; } & { '@timestamp': string; kibana: { alert: { instance: { id: string; }; rule: { category: string; consumer: string; name: string; producer: string; revision: string | number; rule_type_id: string; uuid: string; }; status: string; uuid: string; }; space_ids: string[]; }; } & { event?: { action?: string | undefined; kind?: string | undefined; } | undefined; kibana?: { alert?: { action_group?: string | undefined; case_ids?: string[] | undefined; duration?: { us?: string | number | undefined; } | undefined; end?: string | undefined; flapping?: boolean | undefined; flapping_history?: boolean[] | undefined; last_detected?: string | undefined; maintenance_window_ids?: string[] | undefined; reason?: string | undefined; rule?: { execution?: { uuid?: string | undefined; } | undefined; parameters?: unknown; tags?: string[] | undefined; } | undefined; start?: string | undefined; time_range?: { gte?: string | undefined; lte?: string | undefined; } | undefined; url?: string | undefined; workflow_status?: string | undefined; workflow_tags?: string[] | undefined; } | undefined; version?: string | undefined; } | undefined; tags?: string[] | undefined; } & {} & { ecs?: { version?: string | undefined; } | undefined; kibana?: { alert?: { risk_score?: number | undefined; rule?: { author?: string | undefined; created_at?: string | undefined; created_by?: string | undefined; description?: string | undefined; enabled?: string | undefined; from?: string | undefined; interval?: string | undefined; license?: string | undefined; note?: string | undefined; references?: string[] | undefined; rule_id?: string | undefined; rule_name_override?: string | undefined; to?: string | undefined; type?: string | undefined; updated_at?: string | undefined; updated_by?: string | undefined; version?: string | undefined; } | undefined; severity?: string | undefined; suppression?: { docs_count?: string | number | undefined; end?: string | undefined; start?: string | undefined; terms?: { field?: string[] | undefined; value?: string[] | undefined; } | undefined; } | undefined; system_status?: string | undefined; workflow_reason?: string | undefined; workflow_user?: string | undefined; } | undefined; } | undefined; }) | ({} & { agent?: { name?: string | undefined; } | undefined; anomaly?: { bucket_span?: { minutes?: string | undefined; } | undefined; start?: string | undefined; } | undefined; error?: { message?: string | undefined; } | undefined; kibana?: { alert?: { evaluation?: { threshold?: string | number | undefined; value?: string | number | undefined; values?: (string | number)[] | undefined; } | undefined; } | undefined; } | undefined; monitor?: { id?: string | undefined; name?: string | undefined; type?: string | undefined; } | undefined; observer?: { geo?: { name?: string | undefined; } | undefined; } | undefined; tls?: { server?: { hash?: { sha256?: string | undefined; } | undefined; x509?: { issuer?: { common_name?: string | undefined; } | undefined; not_after?: string | undefined; not_before?: string | undefined; subject?: { common_name?: string | undefined; } | undefined; } | undefined; } | undefined; } | undefined; url?: { full?: string | undefined; } | undefined; } & { '@timestamp': string; kibana: { alert: { instance: { id: string; }; rule: { category: string; consumer: string; name: string; producer: string; revision: string | number; rule_type_id: string; uuid: string; }; status: string; uuid: string; }; space_ids: string[]; }; } & { event?: { action?: string | undefined; kind?: string | undefined; } | undefined; kibana?: { alert?: { action_group?: string | undefined; case_ids?: string[] | undefined; duration?: { us?: string | number | undefined; } | undefined; end?: string | undefined; flapping?: boolean | undefined; flapping_history?: boolean[] | undefined; last_detected?: string | undefined; maintenance_window_ids?: string[] | undefined; reason?: string | undefined; rule?: { execution?: { uuid?: string | undefined; } | undefined; parameters?: unknown; tags?: string[] | undefined; } | undefined; start?: string | undefined; time_range?: { gte?: string | undefined; lte?: string | undefined; } | undefined; url?: string | undefined; workflow_status?: string | undefined; workflow_tags?: string[] | undefined; } | undefined; version?: string | undefined; } | undefined; tags?: string[] | undefined; } & {} & { ecs?: { version?: string | undefined; } | undefined; kibana?: { alert?: { risk_score?: number | undefined; rule?: { author?: string | undefined; created_at?: string | undefined; created_by?: string | undefined; description?: string | undefined; enabled?: string | undefined; from?: string | undefined; interval?: string | undefined; license?: string | undefined; note?: string | undefined; references?: string[] | undefined; rule_id?: string | undefined; rule_name_override?: string | undefined; to?: string | undefined; type?: string | undefined; updated_at?: string | undefined; updated_by?: string | undefined; version?: string | undefined; } | undefined; severity?: string | undefined; suppression?: { docs_count?: string | number | undefined; end?: string | undefined; start?: string | undefined; terms?: { field?: string[] | undefined; value?: string[] | undefined; } | undefined; } | undefined; system_status?: string | undefined; workflow_reason?: string | undefined; workflow_user?: string | undefined; } | undefined; } | undefined; }) | ({ '@timestamp': string; kibana: { alert: { ancestors: { depth: string | number; id: string; index: string; type: string; }[]; depth: string | number; instance: { id: string; }; original_event: { action: string; category: string[]; created: string; dataset: string; id: string; ingested: string; kind: string; module: string; original: string; outcome: string; provider: string; sequence: string | number; type: string[]; }; original_time: string; rule: { category: string; consumer: string; false_positives: string[]; max_signals: (string | number)[]; name: string; producer: string; revision: string | number; rule_type_id: string; threat: { framework: string; tactic: { id: string; name: string; reference: string; }; technique: { id: string; name: string; reference: string; subtechnique: { id: string; name: string; reference: string; }; }; }; uuid: string; }; status: string; uuid: string; }; space_ids: string[]; }; } & { ecs?: { version?: string | undefined; } | undefined; event?: { action?: string | undefined; kind?: string | undefined; } | undefined; kibana?: { alert?: { action_group?: string | undefined; ancestors?: { rule?: string | undefined; } | undefined; building_block_type?: string | undefined; case_ids?: string[] | undefined; duration?: { us?: string | number | undefined; } | undefined; end?: string | undefined; flapping?: boolean | undefined; flapping_history?: boolean[] | undefined; group?: { id?: string | undefined; index?: number | undefined; } | undefined; last_detected?: string | undefined; maintenance_window_ids?: string[] | undefined; new_terms?: string[] | undefined; original_event?: { agent_id_status?: string | undefined; code?: string | undefined; duration?: string | undefined; end?: string | undefined; hash?: string | undefined; reason?: string | undefined; reference?: string | undefined; risk_score?: number | undefined; risk_score_norm?: number | undefined; severity?: string | number | undefined; start?: string | undefined; timezone?: string | undefined; url?: string | undefined; } | undefined; reason?: string | undefined; risk_score?: number | undefined; rule?: { author?: string | undefined; building_block_type?: string | undefined; created_at?: string | undefined; created_by?: string | undefined; description?: string | undefined; enabled?: string | undefined; execution?: { uuid?: string | undefined; } | undefined; from?: string | undefined; immutable?: string[] | undefined; interval?: string | undefined; license?: string | undefined; note?: string | undefined; parameters?: unknown; references?: string[] | undefined; rule_id?: string | undefined; rule_name_override?: string | undefined; tags?: string[] | undefined; timeline_id?: string[] | undefined; timeline_title?: string[] | undefined; timestamp_override?: string | undefined; to?: string | undefined; type?: string | undefined; updated_at?: string | undefined; updated_by?: string | undefined; version?: string | undefined; } | undefined; severity?: string | undefined; start?: string | undefined; suppression?: { docs_count?: string | number | undefined; end?: string | undefined; start?: string | undefined; terms?: { field?: string[] | undefined; value?: string[] | undefined; } | undefined; } | undefined; system_status?: string | undefined; threshold_result?: { count?: string | number | undefined; from?: string | undefined; terms?: { field?: string | undefined; value?: string | undefined; }[] | undefined; } | undefined; time_range?: { gte?: string | undefined; lte?: string | undefined; } | undefined; url?: string | undefined; workflow_reason?: string | undefined; workflow_status?: string | undefined; workflow_tags?: string[] | undefined; workflow_user?: string | undefined; } | undefined; version?: string | undefined; } | undefined; signal?: { ancestors?: { depth?: unknown; id?: unknown; index?: unknown; type?: unknown; } | undefined; depth?: unknown; group?: { id?: unknown; index?: unknown; } | undefined; original_event?: { action?: unknown; category?: unknown; code?: unknown; created?: unknown; dataset?: unknown; duration?: unknown; end?: unknown; hash?: unknown; id?: unknown; kind?: unknown; module?: unknown; outcome?: unknown; provider?: unknown; reason?: unknown; risk_score?: unknown; risk_score_norm?: unknown; sequence?: unknown; severity?: unknown; start?: unknown; timezone?: unknown; type?: unknown; } | undefined; original_time?: unknown; reason?: unknown; rule?: { author?: unknown; building_block_type?: unknown; created_at?: unknown; created_by?: unknown; description?: unknown; enabled?: unknown; false_positives?: unknown; from?: unknown; id?: unknown; immutable?: unknown; interval?: unknown; license?: unknown; max_signals?: unknown; name?: unknown; note?: unknown; references?: unknown; risk_score?: unknown; rule_id?: unknown; rule_name_override?: unknown; severity?: unknown; tags?: unknown; threat?: { framework?: unknown; tactic?: { id?: unknown; name?: unknown; reference?: unknown; } | undefined; technique?: { id?: unknown; name?: unknown; reference?: unknown; subtechnique?: { id?: unknown; name?: unknown; reference?: unknown; } | undefined; } | undefined; } | undefined; timeline_id?: unknown; timeline_title?: unknown; timestamp_override?: unknown; to?: unknown; type?: unknown; updated_at?: unknown; updated_by?: unknown; version?: unknown; } | undefined; status?: unknown; threshold_result?: { cardinality?: { field?: unknown; value?: unknown; } | undefined; count?: unknown; from?: unknown; terms?: { field?: unknown; value?: unknown; } | undefined; } | undefined; } | undefined; tags?: string[] | undefined; } & { '@timestamp': string; kibana: { alert: { instance: { id: string; }; rule: { category: string; consumer: string; name: string; producer: string; revision: string | number; rule_type_id: string; uuid: string; }; status: string; uuid: string; }; space_ids: string[]; }; } & { event?: { action?: string | undefined; kind?: string | undefined; } | undefined; kibana?: { alert?: { action_group?: string | undefined; case_ids?: string[] | undefined; duration?: { us?: string | number | undefined; } | undefined; end?: string | undefined; flapping?: boolean | undefined; flapping_history?: boolean[] | undefined; last_detected?: string | undefined; maintenance_window_ids?: string[] | undefined; reason?: string | undefined; rule?: { execution?: { uuid?: string | undefined; } | undefined; parameters?: unknown; tags?: string[] | undefined; } | undefined; start?: string | undefined; time_range?: { gte?: string | undefined; lte?: string | undefined; } | undefined; url?: string | undefined; workflow_status?: string | undefined; workflow_tags?: string[] | undefined; } | undefined; version?: string | undefined; } | undefined; tags?: string[] | undefined; } & { '@timestamp': string; ecs: { version: string; }; } & { agent?: { build?: { original?: string | undefined; } | undefined; ephemeral_id?: string | undefined; id?: string | undefined; name?: string | undefined; type?: string | undefined; version?: string | undefined; } | undefined; client?: { address?: string | undefined; as?: { number?: string | number | undefined; organization?: { name?: string | undefined; } | undefined; } | undefined; bytes?: string | number | undefined; domain?: string | undefined; geo?: { city_name?: string | undefined; continent_code?: string | undefined; continent_name?: string | undefined; country_iso_code?: string | undefined; country_name?: string | undefined; location?: string | { type: string; coordinates: number[]; } | { lat: number; lon: number; } | { location: number[]; } | { location: string; } | undefined; name?: string | undefined; postal_code?: string | undefined; region_iso_code?: string | undefined; region_name?: string | undefined; timezone?: string | undefined; } | undefined; ip?: string | undefined; mac?: string | undefined; nat?: { ip?: string | undefined; port?: string | number | undefined; } | undefined; packets?: string | number | undefined; port?: string | number | undefined; registered_domain?: string | undefined; subdomain?: string | undefined; top_level_domain?: string | undefined; user?: { domain?: string | undefined; email?: string | undefined; full_name?: string | undefined; group?: { domain?: string | undefined; id?: string | undefined; name?: string | undefined; } | undefined; hash?: string | undefined; id?: string | undefined; name?: string | undefined; roles?: string[] | undefined; } | undefined; } | undefined; cloud?: { account?: { id?: string | undefined; name?: string | undefined; } | undefined; availability_zone?: string | undefined; instance?: { id?: string | undefined; name?: string | undefined; } | undefined; machine?: { type?: string | undefined; } | undefined; origin?: { account?: { id?: string | undefined; name?: string | undefined; } | undefined; availability_zone?: string | undefined; instance?: { id?: string | undefined; name?: string | undefined; } | undefined; machine?: { type?: string | undefined; } | undefined; project?: { id?: string | undefined; name?: string | undefined; } | undefined; provider?: string | undefined; region?: string | undefined; service?: { name?: string | undefined; } | undefined; } | undefined; project?: { id?: string | undefined; name?: string | undefined; } | undefined; provider?: string | undefined; region?: string | undefined; service?: { name?: string | undefined; } | undefined; target?: { account?: { id?: string | undefined; name?: string | undefined; } | undefined; availability_zone?: string | undefined; instance?: { id?: string | undefined; name?: string | undefined; } | undefined; machine?: { type?: string | undefined; } | undefined; project?: { id?: string | undefined; name?: string | undefined; } | undefined; provider?: string | undefined; region?: string | undefined; service?: { name?: string | undefined; } | undefined; } | undefined; } | undefined; container?: { cpu?: { usage?: string | number | undefined; } | undefined; disk?: { read?: { bytes?: string | number | undefined; } | undefined; write?: { bytes?: string | number | undefined; } | undefined; } | undefined; id?: string | undefined; image?: { hash?: { all?: string[] | undefined; } | undefined; name?: string | undefined; tag?: string[] | undefined; } | undefined; memory?: { usage?: string | number | undefined; } | undefined; name?: string | undefined; network?: { egress?: { bytes?: string | number | undefined; } | undefined; ingress?: { bytes?: string | number | undefined; } | undefined; } | undefined; runtime?: string | undefined; } | undefined; destination?: { address?: string | undefined; as?: { number?: string | number | undefined; organization?: { name?: string | undefined; } | undefined; } | undefined; bytes?: string | number | undefined; domain?: string | undefined; geo?: { city_name?: string | undefined; continent_code?: string | undefined; continent_name?: string | undefined; country_iso_code?: string | undefined; country_name?: string | undefined; location?: string | { type: string; coordinates: number[]; } | { lat: number; lon: number; } | { location: number[]; } | { location: string; } | undefined; name?: string | undefined; postal_code?: string | undefined; region_iso_code?: string | undefined; region_name?: string | undefined; timezone?: string | undefined; } | undefined; ip?: string | undefined; mac?: string | undefined; nat?: { ip?: string | undefined; port?: string | number | undefined; } | undefined; packets?: string | number | undefined; port?: string | number | undefined; registered_domain?: string | undefined; subdomain?: string | undefined; top_level_domain?: string | undefined; user?: { domain?: string | undefined; email?: string | undefined; full_name?: string | undefined; group?: { domain?: string | undefined; id?: string | undefined; name?: string | undefined; } | undefined; hash?: string | undefined; id?: string | undefined; name?: string | undefined; roles?: string[] | undefined; } | undefined; } | undefined; device?: { id?: string | undefined; manufacturer?: string | undefined; model?: { identifier?: string | undefined; name?: string | undefined; } | undefined; } | undefined; dll?: { code_signature?: { digest_algorithm?: string | undefined; exists?: boolean | undefined; signing_id?: string | undefined; status?: string | undefined; subject_name?: string | undefined; team_id?: string | undefined; timestamp?: string | undefined; trusted?: boolean | undefined; valid?: boolean | undefined; } | undefined; hash?: { md5?: string | undefined; sha1?: string | undefined; sha256?: string | undefined; sha384?: string | undefined; sha512?: string | undefined; ssdeep?: string | undefined; tlsh?: string | undefined; } | undefined; name?: string | undefined; path?: string | undefined; pe?: { architecture?: string | undefined; company?: string | undefined; description?: string | undefined; file_version?: string | undefined; imphash?: string | undefined; original_file_name?: string | undefined; pehash?: string | undefined; product?: string | undefined; } | undefined; } | undefined; dns?: { answers?: { class?: string | undefined; data?: string | undefined; name?: string | undefined; ttl?: string | number | undefined; type?: string | undefined; }[] | undefined; header_flags?: string[] | undefined; id?: string | undefined; op_code?: string | undefined; question?: { class?: string | undefined; name?: string | undefined; registered_domain?: string | undefined; subdomain?: string | undefined; top_level_domain?: string | undefined; type?: string | undefined; } | undefined; resolved_ip?: string[] | undefined; response_code?: string | undefined; type?: string | undefined; } | undefined; email?: { attachments?: { file?: { extension?: string | undefined; hash?: { md5?: string | undefined; sha1?: string | undefined; sha256?: string | undefined; sha384?: string | undefined; sha512?: string | undefined; ssdeep?: string | undefined; tlsh?: string | undefined; } | undefined; mime_type?: string | undefined; name?: string | undefined; size?: string | number | undefined; } | undefined; }[] | undefined; bcc?: { address?: string[] | undefined; } | undefined; cc?: { address?: string[] | undefined; } | undefined; content_type?: string | undefined; delivery_timestamp?: string | undefined; direction?: string | undefined; from?: { address?: string[] | undefined; } | undefined; local_id?: string | undefined; message_id?: string | undefined; origination_timestamp?: string | undefined; reply_to?: { address?: string[] | undefined; } | undefined; sender?: { address?: string | undefined; } | undefined; subject?: string | undefined; to?: { address?: string[] | undefined; } | undefined; x_mailer?: string | undefined; } | undefined; error?: { code?: string | undefined; id?: string | undefined; message?: string | undefined; stack_trace?: string | undefined; type?: string | undefined; } | undefined; event?: { action?: string | undefined; agent_id_status?: string | undefined; category?: string[] | undefined; code?: string | undefined; created?: string | undefined; dataset?: string | undefined; duration?: string | number | undefined; end?: string | undefined; hash?: string | undefined; id?: string | undefined; ingested?: string | undefined; kind?: string | undefined; module?: string | undefined; original?: string | undefined; outcome?: string | undefined; provider?: string | undefined; reason?: string | undefined; reference?: string | undefined; risk_score?: number | undefined; risk_score_norm?: number | undefined; sequence?: string | number | undefined; severity?: string | number | undefined; start?: string | undefined; timezone?: string | undefined; type?: string[] | undefined; url?: string | undefined; } | undefined; faas?: { coldstart?: boolean | undefined; execution?: string | undefined; id?: string | undefined; name?: string | undefined; version?: string | undefined; } | undefined; file?: { accessed?: string | undefined; attributes?: string[] | undefined; code_signature?: { digest_algorithm?: string | undefined; exists?: boolean | undefined; signing_id?: string | undefined; status?: string | undefined; subject_name?: string | undefined; team_id?: string | undefined; timestamp?: string | undefined; trusted?: boolean | undefined; valid?: boolean | undefined; } | undefined; created?: string | undefined; ctime?: string | undefined; device?: string | undefined; directory?: string | undefined; drive_letter?: string | undefined; elf?: { architecture?: string | undefined; byte_order?: string | undefined; cpu_type?: string | undefined; creation_date?: string | undefined; exports?: unknown[] | undefined; header?: { abi_version?: string | undefined; class?: string | undefined; data?: string | undefined; entrypoint?: string | number | undefined; object_version?: string | undefined; os_abi?: string | undefined; type?: string | undefined; version?: string | undefined; } | undefined; imports?: unknown[] | undefined; sections?: { chi2?: string | number | undefined; entropy?: string | number | undefined; flags?: string | undefined; name?: string | undefined; physical_offset?: string | undefined; physical_size?: string | number | undefined; type?: string | undefined; virtual_address?: string | number | undefined; virtual_size?: string | number | undefined; }[] | undefined; segments?: { sections?: string | undefined; type?: string | undefined; }[] | undefined; shared_libraries?: string[] | undefined; telfhash?: string | undefined; } | undefined; extension?: string | undefined; fork_name?: string | undefined; gid?: string | undefined; group?: string | undefined; hash?: { md5?: string | undefined; sha1?: string | undefined; sha256?: string | undefined; sha384?: string | undefined; sha512?: string | undefined; ssdeep?: string | undefined; tlsh?: string | undefined; } | undefined; inode?: string | undefined; mime_type?: string | undefined; mode?: string | undefined; mtime?: string | undefined; name?: string | undefined; owner?: string | undefined; path?: string | undefined; pe?: { architecture?: string | undefined; company?: string | undefined; description?: string | undefined; file_version?: string | undefined; imphash?: string | undefined; original_file_name?: string | undefined; pehash?: string | undefined; product?: string | undefined; } | undefined; size?: string | number | undefined; target_path?: string | undefined; type?: string | undefined; uid?: string | undefined; x509?: { alternative_names?: string[] | undefined; issuer?: { common_name?: string[] | undefined; country?: string[] | undefined; distinguished_name?: string | undefined; locality?: string[] | undefined; organization?: string[] | undefined; organizational_unit?: string[] | undefined; state_or_province?: string[] | undefined; } | undefined; not_after?: string | undefined; not_before?: string | undefined; public_key_algorithm?: string | undefined; public_key_curve?: string | undefined; public_key_exponent?: string | number | undefined; public_key_size?: string | number | undefined; serial_number?: string | undefined; signature_algorithm?: string | undefined; subject?: { common_name?: string[] | undefined; country?: string[] | undefined; distinguished_name?: string | undefined; locality?: string[] | undefined; organization?: string[] | undefined; organizational_unit?: string[] | undefined; state_or_province?: string[] | undefined; } | undefined; version_number?: string | undefined; } | undefined; } | undefined; group?: { domain?: string | undefined; id?: string | undefined; name?: string | undefined; } | undefined; host?: { architecture?: string | undefined; boot?: { id?: string | undefined; } | undefined; cpu?: { usage?: string | number | undefined; } | undefined; disk?: { read?: { bytes?: string | number | undefined; } | undefined; write?: { bytes?: string | number | undefined; } | undefined; } | undefined; domain?: string | undefined; geo?: { city_name?: string | undefined; continent_code?: string | undefined; continent_name?: string | undefined; country_iso_code?: string | undefined; country_name?: string | undefined; location?: string | { type: string; coordinates: number[]; } | { lat: number; lon: number; } | { location: number[]; } | { location: string; } | undefined; name?: string | undefined; postal_code?: string | undefined; region_iso_code?: string | undefined; region_name?: string | undefined; timezone?: string | undefined; } | undefined; hostname?: string | undefined; id?: string | undefined; ip?: string[] | undefined; mac?: string[] | undefined; name?: string | undefined; network?: { egress?: { bytes?: string | number | undefined; packets?: string | number | undefined; } | undefined; ingress?: { bytes?: string | number | undefined; packets?: string | number | undefined; } | undefined; } | undefined; os?: { family?: string | undefined; full?: string | undefined; kernel?: string | undefined; name?: string | undefined; platform?: string | undefined; type?: string | undefined; version?: string | undefined; } | undefined; pid_ns_ino?: string | undefined; risk?: { calculated_level?: string | undefined; calculated_score?: number | undefined; calculated_score_norm?: number | undefined; static_level?: string | undefined; static_score?: number | undefined; static_score_norm?: number | undefined; } | undefined; type?: string | undefined; uptime?: string | number | undefined; } | undefined; http?: { request?: { body?: { bytes?: string | number | undefined; content?: string | undefined; } | undefined; bytes?: string | number | undefined; id?: string | undefined; method?: string | undefined; mime_type?: string | undefined; referrer?: string | undefined; } | undefined; response?: { body?: { bytes?: string | number | undefined; content?: string | undefined; } | undefined; bytes?: string | number | undefined; mime_type?: string | undefined; status_code?: string | number | undefined; } | undefined; version?: string | undefined; } | undefined; log?: { file?: { path?: string | undefined; } | undefined; level?: string | undefined; logger?: string | undefined; origin?: { file?: { line?: string | number | undefined; name?: string | undefined; } | undefined; function?: string | undefined; } | undefined; } | undefined; message?: string | undefined; network?: { application?: string | undefined; bytes?: string | number | undefined; community_id?: string | undefined; direction?: string | undefined; forwarded_ip?: string | undefined; iana_number?: string | undefined; name?: string | undefined; packets?: string | number | undefined; protocol?: string | undefined; transport?: string | undefined; type?: string | undefined; vlan?: { id?: string | undefined; name?: string | undefined; } | undefined; } | undefined; observer?: { geo?: { city_name?: string | undefined; continent_code?: string | undefined; continent_name?: string | undefined; country_iso_code?: string | undefined; country_name?: string | undefined; location?: string | { type: string; coordinates: number[]; } | { lat: number; lon: number; } | { location: number[]; } | { location: string; } | undefined; name?: string | undefined; postal_code?: string | undefined; region_iso_code?: string | undefined; region_name?: string | undefined; timezone?: string | undefined; } | undefined; hostname?: string | undefined; ip?: string[] | undefined; mac?: string[] | undefined; name?: string | undefined; os?: { family?: string | undefined; full?: string | undefined; kernel?: string | undefined; name?: string | undefined; platform?: string | undefined; type?: string | undefined; version?: string | undefined; } | undefined; product?: string | undefined; serial_number?: string | undefined; type?: string | undefined; vendor?: string | undefined; version?: string | undefined; } | undefined; orchestrator?: { api_version?: string | undefined; cluster?: { id?: string | undefined; name?: string | undefined; url?: string | undefined; version?: string | undefined; } | undefined; namespace?: string | undefined; organization?: string | undefined; resource?: { id?: string | undefined; ip?: string[] | undefined; name?: string | undefined; parent?: { type?: string | undefined; } | undefined; type?: string | undefined; } | undefined; type?: string | undefined; } | undefined; organization?: { id?: string | undefined; name?: string | undefined; } | undefined; package?: { architecture?: string | undefined; build_version?: string | undefined; checksum?: string | undefined; description?: string | undefined; install_scope?: string | undefined; installed?: string | undefined; license?: string | undefined; name?: string | undefined; path?: string | undefined; reference?: string | undefined; size?: string | number | undefined; type?: string | undefined; version?: string | undefined; } | undefined; process?: { args?: string[] | undefined; args_count?: string | number | undefined; code_signature?: { digest_algorithm?: string | undefined; exists?: boolean | undefined; signing_id?: string | undefined; status?: string | undefined; subject_name?: string | undefined; team_id?: string | undefined; timestamp?: string | undefined; trusted?: boolean | undefined; valid?: boolean | undefined; } | undefined; command_line?: string | undefined; elf?: { architecture?: string | undefined; byte_order?: string | undefined; cpu_type?: string | undefined; creation_date?: string | undefined; exports?: unknown[] | undefined; header?: { abi_version?: string | undefined; class?: string | undefined; data?: string | undefined; entrypoint?: string | number | undefined; object_version?: string | undefined; os_abi?: string | undefined; type?: string | undefined; version?: string | undefined; } | undefined; imports?: unknown[] | undefined; sections?: { chi2?: string | number | undefined; entropy?: string | number | undefined; flags?: string | undefined; name?: string | undefined; physical_offset?: string | undefined; physical_size?: string | number | undefined; type?: string | undefined; virtual_address?: string | number | undefined; virtual_size?: string | number | undefined; }[] | undefined; segments?: { sections?: string | undefined; type?: string | undefined; }[] | undefined; shared_libraries?: string[] | undefined; telfhash?: string | undefined; } | undefined; end?: string | undefined; entity_id?: string | undefined; entry_leader?: { args?: string[] | undefined; args_count?: string | number | undefined; attested_groups?: { name?: string | undefined; } | undefined; attested_user?: { id?: string | undefined; name?: string | undefined; } | undefined; command_line?: string | undefined; entity_id?: string | undefined; entry_meta?: { source?: { ip?: string | undefined; } | undefined; type?: string | undefined; } | undefined; executable?: string | undefined; group?: { id?: string | undefined; name?: string | undefined; } | undefined; interactive?: boolean | undefined; name?: string | undefined; parent?: { entity_id?: string | undefined; pid?: string | number | undefined; session_leader?: { entity_id?: string | undefined; pid?: string | number | undefined; start?: string | undefined; } | undefined; start?: string | undefined; } | undefined; pid?: string | number | undefined; real_group?: { id?: string | undefined; name?: string | undefined; } | undefined; real_user?: { id?: string | undefined; name?: string | undefined; } | undefined; same_as_process?: boolean | undefined; saved_group?: { id?: string | undefined; name?: string | undefined; } | undefined; saved_user?: { id?: string | undefined; name?: string | undefined; } | undefined; start?: string | undefined; supplemental_groups?: { id?: string | undefined; name?: string | undefined; } | undefined; user?: { id?: string | undefined; name?: string | undefined; } | undefined; working_directory?: string | undefined; } | undefined; env_vars?: string[] | undefined; executable?: string | undefined; exit_code?: string | number | undefined; group_leader?: { args?: string[] | undefined; args_count?: string | number | undefined; command_line?: string | undefined; entity_id?: string | undefined; executable?: string | undefined; group?: { id?: string | undefined; name?: string | undefined; } | undefined; interactive?: boolean | undefined; name?: string | undefined; pid?: string | number | undefined; real_group?: { id?: string | undefined; name?: string | undefined; } | undefined; real_user?: { id?: string | undefined; name?: string | undefined; } | undefined; same_as_process?: boolean | undefined; saved_group?: { id?: string | undefined; name?: string | undefined; } | undefined; saved_user?: { id?: string | undefined; name?: string | undefined; } | undefined; start?: string | undefined; supplemental_groups?: { id?: string | undefined; name?: string | undefined; } | undefined; user?: { id?: string | undefined; name?: string | undefined; } | undefined; working_directory?: string | undefined; } | undefined; hash?: { md5?: string | undefined; sha1?: string | undefined; sha256?: string | undefined; sha384?: string | undefined; sha512?: string | undefined; ssdeep?: string | undefined; tlsh?: string | undefined; } | undefined; interactive?: boolean | undefined; name?: string | undefined; parent?: { args?: string[] | undefined; args_count?: string | number | undefined; code_signature?: { digest_algorithm?: string | undefined; exists?: boolean | undefined; signing_id?: string | undefined; status?: string | undefined; subject_name?: string | undefined; team_id?: string | undefined; timestamp?: string | undefined; trusted?: boolean | undefined; valid?: boolean | undefined; } | undefined; command_line?: string | undefined; elf?: { architecture?: string | undefined; byte_order?: string | undefined; cpu_type?: string | undefined; creation_date?: string | undefined; exports?: unknown[] | undefined; header?: { abi_version?: string | undefined; class?: string | undefined; data?: string | undefined; entrypoint?: string | number | undefined; object_version?: string | undefined; os_abi?: string | undefined; type?: string | undefined; version?: string | undefined; } | undefined; imports?: unknown[] | undefined; sections?: { chi2?: string | number | undefined; entropy?: string | number | undefined; flags?: string | undefined; name?: string | undefined; physical_offset?: string | undefined; physical_size?: string | number | undefined; type?: string | undefined; virtual_address?: string | number | undefined; virtual_size?: string | number | undefined; }[] | undefined; segments?: { sections?: string | undefined; type?: string | undefined; }[] | undefined; shared_libraries?: string[] | undefined; telfhash?: string | undefined; } | undefined; end?: string | undefined; entity_id?: string | undefined; executable?: string | undefined; exit_code?: string | number | undefined; group?: { id?: string | undefined; name?: string | undefined; } | undefined; group_leader?: { entity_id?: string | undefined; pid?: string | number | undefined; start?: string | undefined; } | undefined; hash?: { md5?: string | undefined; sha1?: string | undefined; sha256?: string | undefined; sha384?: string | undefined; sha512?: string | undefined; ssdeep?: string | undefined; tlsh?: string | undefined; } | undefined; interactive?: boolean | undefined; name?: string | undefined; pe?: { architecture?: string | undefined; company?: string | undefined; description?: string | undefined; file_version?: string | undefined; imphash?: string | undefined; original_file_name?: string | undefined; pehash?: string | undefined; product?: string | undefined; } | undefined; pgid?: string | number | undefined; pid?: string | number | undefined; real_group?: { id?: string | undefined; name?: string | undefined; } | undefined; real_user?: { id?: string | undefined; name?: string | undefined; } | undefined; saved_group?: { id?: string | undefined; name?: string | undefined; } | undefined; saved_user?: { id?: string | undefined; name?: string | undefined; } | undefined; start?: string | undefined; supplemental_groups?: { id?: string | undefined; name?: string | undefined; } | undefined; thread?: { id?: string | number | undefined; name?: string | undefined; } | undefined; title?: string | undefined; uptime?: string | number | undefined; user?: { id?: string | undefined; name?: string | undefined; } | undefined; working_directory?: string | undefined; } | undefined; pe?: { architecture?: string | undefined; company?: string | undefined; description?: string | undefined; file_version?: string | undefined; imphash?: string | undefined; original_file_name?: string | undefined; pehash?: string | undefined; product?: string | undefined; } | undefined; pgid?: string | number | undefined; pid?: string | number | undefined; previous?: { args?: string[] | undefined; args_count?: string | number | undefined; executable?: string | undefined; } | undefined; real_group?: { id?: string | undefined; name?: string | undefined; } | undefined; real_user?: { id?: string | undefined; name?: string | undefined; } | undefined; saved_group?: { id?: string | undefined; name?: string | undefined; } | undefined; saved_user?: { id?: string | undefined; name?: string | undefined; } | undefined; session_leader?: { args?: string[] | undefined; args_count?: string | number | undefined; command_line?: string | undefined; entity_id?: string | undefined; executable?: string | undefined; group?: { id?: string | undefined; name?: string | undefined; } | undefined; interactive?: boolean | undefined; name?: string | undefined; parent?: { entity_id?: string | undefined; pid?: string | number | undefined; session_leader?: { entity_id?: string | undefined; pid?: string | number | undefined; start?: string | undefined; } | undefined; start?: string | undefined; } | undefined; pid?: string | number | undefined; real_group?: { id?: string | undefined; name?: string | undefined; } | undefined; real_user?: { id?: string | undefined; name?: string | undefined; } | undefined; same_as_process?: boolean | undefined; saved_group?: { id?: string | undefined; name?: string | undefined; } | undefined; saved_user?: { id?: string | undefined; name?: string | undefined; } | undefined; start?: string | undefined; supplemental_groups?: { id?: string | undefined; name?: string | undefined; } | undefined; user?: { id?: string | undefined; name?: string | undefined; } | undefined; working_directory?: string | undefined; } | undefined; start?: string | undefined; supplemental_groups?: { id?: string | undefined; name?: string | undefined; } | undefined; thread?: { id?: string | number | undefined; name?: string | undefined; } | undefined; title?: string | undefined; uptime?: string | number | undefined; user?: { id?: string | undefined; name?: string | undefined; } | undefined; working_directory?: string | undefined; } | undefined; registry?: { data?: { bytes?: string | undefined; strings?: string[] | undefined; type?: string | undefined; } | undefined; hive?: string | undefined; key?: string | undefined; path?: string | undefined; value?: string | undefined; } | undefined; related?: { hash?: string[] | undefined; hosts?: string[] | undefined; ip?: string[] | undefined; user?: string[] | undefined; } | undefined; rule?: { author?: string[] | undefined; category?: string | undefined; description?: string | undefined; id?: string | undefined; license?: string | undefined; name?: string | undefined; reference?: string | undefined; ruleset?: string | undefined; uuid?: string | undefined; version?: string | undefined; } | undefined; server?: { address?: string | undefined; as?: { number?: string | number | undefined; organization?: { name?: string | undefined; } | undefined; } | undefined; bytes?: string | number | undefined; domain?: string | undefined; geo?: { city_name?: string | undefined; continent_code?: string | undefined; continent_name?: string | undefined; country_iso_code?: string | undefined; country_name?: string | undefined; location?: string | { type: string; coordinates: number[]; } | { lat: number; lon: number; } | { location: number[]; } | { location: string; } | undefined; name?: string | undefined; postal_code?: string | undefined; region_iso_code?: string | undefined; region_name?: string | undefined; timezone?: string | undefined; } | undefined; ip?: string | undefined; mac?: string | undefined; nat?: { ip?: string | undefined; port?: string | number | undefined; } | undefined; packets?: string | number | undefined; port?: string | number | undefined; registered_domain?: string | undefined; subdomain?: string | undefined; top_level_domain?: string | undefined; user?: { domain?: string | undefined; email?: string | undefined; full_name?: string | undefined; group?: { domain?: string | undefined; id?: string | undefined; name?: string | undefined; } | undefined; hash?: string | undefined; id?: string | undefined; name?: string | undefined; roles?: string[] | undefined; } | undefined; } | undefined; service?: { address?: string | undefined; environment?: string | undefined; ephemeral_id?: string | undefined; id?: string | undefined; name?: string | undefined; node?: { name?: string | undefined; role?: string | undefined; roles?: string[] | undefined; } | undefined; origin?: { address?: string | undefined; environment?: string | undefined; ephemeral_id?: string | undefined; id?: string | undefined; name?: string | undefined; node?: { name?: string | undefined; role?: string | undefined; roles?: string[] | undefined; } | undefined; state?: string | undefined; type?: string | undefined; version?: string | undefined; } | undefined; state?: string | undefined; target?: { address?: string | undefined; environment?: string | undefined; ephemeral_id?: string | undefined; id?: string | undefined; name?: string | undefined; node?: { name?: string | undefined; role?: string | undefined; roles?: string[] | undefined; } | undefined; state?: string | undefined; type?: string | undefined; version?: string | undefined; } | undefined; type?: string | undefined; version?: string | undefined; } | undefined; source?: { address?: string | undefined; as?: { number?: string | number | undefined; organization?: { name?: string | undefined; } | undefined; } | undefined; bytes?: string | number | undefined; domain?: string | undefined; geo?: { city_name?: string | undefined; continent_code?: string | undefined; continent_name?: string | undefined; country_iso_code?: string | undefined; country_name?: string | undefined; location?: string | { type: string; coordinates: number[]; } | { lat: number; lon: number; } | { location: number[]; } | { location: string; } | undefined; name?: string | undefined; postal_code?: string | undefined; region_iso_code?: string | undefined; region_name?: string | undefined; timezone?: string | undefined; } | undefined; ip?: string | undefined; mac?: string | undefined; nat?: { ip?: string | undefined; port?: string | number | undefined; } | undefined; packets?: string | number | undefined; port?: string | number | undefined; registered_domain?: string | undefined; subdomain?: string | undefined; top_level_domain?: string | undefined; user?: { domain?: string | undefined; email?: string | undefined; full_name?: string | undefined; group?: { domain?: string | undefined; id?: string | undefined; name?: string | undefined; } | undefined; hash?: string | undefined; id?: string | undefined; name?: string | undefined; roles?: string[] | undefined; } | undefined; } | undefined; span?: { id?: string | undefined; } | undefined; tags?: string[] | undefined; threat?: { enrichments?: { matched?: { atomic?: string | undefined; field?: string | undefined; id?: string | undefined; index?: string | undefined; occurred?: string | undefined; type?: string | undefined; } | undefined; }[] | undefined; feed?: { dashboard_id?: string | undefined; description?: string | undefined; name?: string | undefined; reference?: string | undefined; } | undefined; framework?: string | undefined; group?: { alias?: string[] | undefined; id?: string | undefined; name?: string | undefined; reference?: string | undefined; } | undefined; indicator?: { as?: { number?: string | number | undefined; organization?: { name?: string | undefined; } | undefined; } | undefined; confidence?: string | undefined; description?: string | undefined; email?: { address?: string | undefined; } | undefined; file?: { accessed?: string | undefined; attributes?: string[] | undefined; code_signature?: { digest_algorithm?: string | undefined; exists?: boolean | undefined; signing_id?: string | undefined; status?: string | undefined; subject_name?: string | undefined; team_id?: string | undefined; timestamp?: string | undefined; trusted?: boolean | undefined; valid?: boolean | undefined; } | undefined; created?: string | undefined; ctime?: string | undefined; device?: string | undefined; directory?: string | undefined; drive_letter?: string | undefined; elf?: { architecture?: string | undefined; byte_order?: string | undefined; cpu_type?: string | undefined; creation_date?: string | undefined; exports?: unknown[] | undefined; header?: { abi_version?: string | undefined; class?: string | undefined; data?: string | undefined; entrypoint?: string | number | undefined; object_version?: string | undefined; os_abi?: string | undefined; type?: string | undefined; version?: string | undefined; } | undefined; imports?: unknown[] | undefined; sections?: { chi2?: string | number | undefined; entropy?: string | number | undefined; flags?: string | undefined; name?: string | undefined; physical_offset?: string | undefined; physical_size?: string | number | undefined; type?: string | undefined; virtual_address?: string | number | undefined; virtual_size?: string | number | undefined; }[] | undefined; segments?: { sections?: string | undefined; type?: string | undefined; }[] | undefined; shared_libraries?: string[] | undefined; telfhash?: string | undefined; } | undefined; extension?: string | undefined; fork_name?: string | undefined; gid?: string | undefined; group?: string | undefined; hash?: { md5?: string | undefined; sha1?: string | undefined; sha256?: string | undefined; sha384?: string | undefined; sha512?: string | undefined; ssdeep?: string | undefined; tlsh?: string | undefined; } | undefined; inode?: string | undefined; mime_type?: string | undefined; mode?: string | undefined; mtime?: string | undefined; name?: string | undefined; owner?: string | undefined; path?: string | undefined; pe?: { architecture?: string | undefined; company?: string | undefined; description?: string | undefined; file_version?: string | undefined; imphash?: string | undefined; original_file_name?: string | undefined; pehash?: string | undefined; product?: string | undefined; } | undefined; size?: string | number | undefined; target_path?: string | undefined; type?: string | undefined; uid?: string | undefined; x509?: { alternative_names?: string[] | undefined; issuer?: { common_name?: string[] | undefined; country?: string[] | undefined; distinguished_name?: string | undefined; locality?: string[] | undefined; organization?: string[] | undefined; organizational_unit?: string[] | undefined; state_or_province?: string[] | undefined; } | undefined; not_after?: string | undefined; not_before?: string | undefined; public_key_algorithm?: string | undefined; public_key_curve?: string | undefined; public_key_exponent?: string | number | undefined; public_key_size?: string | number | undefined; serial_number?: string | undefined; signature_algorithm?: string | undefined; subject?: { common_name?: string[] | undefined; country?: string[] | undefined; distinguished_name?: string | undefined; locality?: string[] | undefined; organization?: string[] | undefined; organizational_unit?: string[] | undefined; state_or_province?: string[] | undefined; } | undefined; version_number?: string | undefined; } | undefined; } | undefined; first_seen?: string | undefined; geo?: { city_name?: string | undefined; continent_code?: string | undefined; continent_name?: string | undefined; country_iso_code?: string | undefined; country_name?: string | undefined; location?: string | { type: string; coordinates: number[]; } | { lat: number; lon: number; } | { location: number[]; } | { location: string; } | undefined; name?: string | undefined; postal_code?: string | undefined; region_iso_code?: string | undefined; region_name?: string | undefined; timezone?: string | undefined; } | undefined; ip?: string | undefined; last_seen?: string | undefined; marking?: { tlp?: string | undefined; tlp_version?: string | undefined; } | undefined; modified_at?: string | undefined; port?: string | number | undefined; provider?: string | undefined; reference?: string | undefined; registry?: { data?: { bytes?: string | undefined; strings?: string[] | undefined; type?: string | undefined; } | undefined; hive?: string | undefined; key?: string | undefined; path?: string | undefined; value?: string | undefined; } | undefined; scanner_stats?: string | number | undefined; sightings?: string | number | undefined; type?: string | undefined; url?: { domain?: string | undefined; extension?: string | undefined; fragment?: string | undefined; full?: string | undefined; original?: string | undefined; password?: string | undefined; path?: string | undefined; port?: string | number | undefined; query?: string | undefined; registered_domain?: string | undefined; scheme?: string | undefined; subdomain?: string | undefined; top_level_domain?: string | undefined; username?: string | undefined; } | undefined; x509?: { alternative_names?: string[] | undefined; issuer?: { common_name?: string[] | undefined; country?: string[] | undefined; distinguished_name?: string | undefined; locality?: string[] | undefined; organization?: string[] | undefined; organizational_unit?: string[] | undefined; state_or_province?: string[] | undefined; } | undefined; not_after?: string | undefined; not_before?: string | undefined; public_key_algorithm?: string | undefined; public_key_curve?: string | undefined; public_key_exponent?: string | number | undefined; public_key_size?: string | number | undefined; serial_number?: string | undefined; signature_algorithm?: string | undefined; subject?: { common_name?: string[] | undefined; country?: string[] | undefined; distinguished_name?: string | undefined; locality?: string[] | undefined; organization?: string[] | undefined; organizational_unit?: string[] | undefined; state_or_province?: string[] | undefined; } | undefined; version_number?: string | undefined; } | undefined; } | undefined; software?: { alias?: string[] | undefined; id?: string | undefined; name?: string | undefined; platforms?: string[] | undefined; reference?: string | undefined; type?: string | undefined; } | undefined; tactic?: { id?: string[] | undefined; name?: string[] | undefined; reference?: string[] | undefined; } | undefined; technique?: { id?: string[] | undefined; name?: string[] | undefined; reference?: string[] | undefined; subtechnique?: { id?: string[] | undefined; name?: string[] | undefined; reference?: string[] | undefined; } | undefined; } | undefined; } | undefined; tls?: { cipher?: string | undefined; client?: { certificate?: string | undefined; certificate_chain?: string[] | undefined; hash?: { md5?: string | undefined; sha1?: string | undefined; sha256?: string | undefined; } | undefined; issuer?: string | undefined; ja3?: string | undefined; not_after?: string | undefined; not_before?: string | undefined; server_name?: string | undefined; subject?: string | undefined; supported_ciphers?: string[] | undefined; x509?: { alternative_names?: string[] | undefined; issuer?: { common_name?: string[] | undefined; country?: string[] | undefined; distinguished_name?: string | undefined; locality?: string[] | undefined; organization?: string[] | undefined; organizational_unit?: string[] | undefined; state_or_province?: string[] | undefined; } | undefined; not_after?: string | undefined; not_before?: string | undefined; public_key_algorithm?: string | undefined; public_key_curve?: string | undefined; public_key_exponent?: string | number | undefined; public_key_size?: string | number | undefined; serial_number?: string | undefined; signature_algorithm?: string | undefined; subject?: { common_name?: string[] | undefined; country?: string[] | undefined; distinguished_name?: string | undefined; locality?: string[] | undefined; organization?: string[] | undefined; organizational_unit?: string[] | undefined; state_or_province?: string[] | undefined; } | undefined; version_number?: string | undefined; } | undefined; } | undefined; curve?: string | undefined; established?: boolean | undefined; next_protocol?: string | undefined; resumed?: boolean | undefined; server?: { certificate?: string | undefined; certificate_chain?: string[] | undefined; hash?: { md5?: string | undefined; sha1?: string | undefined; sha256?: string | undefined; } | undefined; issuer?: string | undefined; ja3s?: string | undefined; not_after?: string | undefined; not_before?: string | undefined; subject?: string | undefined; x509?: { alternative_names?: string[] | undefined; issuer?: { common_name?: string[] | undefined; country?: string[] | undefined; distinguished_name?: string | undefined; locality?: string[] | undefined; organization?: string[] | undefined; organizational_unit?: string[] | undefined; state_or_province?: string[] | undefined; } | undefined; not_after?: string | undefined; not_before?: string | undefined; public_key_algorithm?: string | undefined; public_key_curve?: string | undefined; public_key_exponent?: string | number | undefined; public_key_size?: string | number | undefined; serial_number?: string | undefined; signature_algorithm?: string | undefined; subject?: { common_name?: string[] | undefined; country?: string[] | undefined; distinguished_name?: string | undefined; locality?: string[] | undefined; organization?: string[] | undefined; organizational_unit?: string[] | undefined; state_or_province?: string[] | undefined; } | undefined; version_number?: string | undefined; } | undefined; } | undefined; version?: string | undefined; version_protocol?: string | undefined; } | undefined; trace?: { id?: string | undefined; } | undefined; transaction?: { id?: string | undefined; } | undefined; url?: { domain?: string | undefined; extension?: string | undefined; fragment?: string | undefined; full?: string | undefined; original?: string | undefined; password?: string | undefined; path?: string | undefined; port?: string | number | undefined; query?: string | undefined; registered_domain?: string | undefined; scheme?: string | undefined; subdomain?: string | undefined; top_level_domain?: string | undefined; username?: string | undefined; } | undefined; user?: { changes?: { domain?: string | undefined; email?: string | undefined; full_name?: string | undefined; group?: { domain?: string | undefined; id?: string | undefined; name?: string | undefined; } | undefined; hash?: string | undefined; id?: string | undefined; name?: string | undefined; roles?: string[] | undefined; } | undefined; domain?: string | undefined; effective?: { domain?: string | undefined; email?: string | undefined; full_name?: string | undefined; group?: { domain?: string | undefined; id?: string | undefined; name?: string | undefined; } | undefined; hash?: string | undefined; id?: string | undefined; name?: string | undefined; roles?: string[] | undefined; } | undefined; email?: string | undefined; full_name?: string | undefined; group?: { domain?: string | undefined; id?: string | undefined; name?: string | undefined; } | undefined; hash?: string | undefined; id?: string | undefined; name?: string | undefined; risk?: { calculated_level?: string | undefined; calculated_score?: number | undefined; calculated_score_norm?: number | undefined; static_level?: string | undefined; static_score?: number | undefined; static_score_norm?: number | undefined; } | undefined; roles?: string[] | undefined; target?: { domain?: string | undefined; email?: string | undefined; full_name?: string | undefined; group?: { domain?: string | undefined; id?: string | undefined; name?: string | undefined; } | undefined; hash?: string | undefined; id?: string | undefined; name?: string | undefined; roles?: string[] | undefined; } | undefined; } | undefined; user_agent?: { device?: { name?: string | undefined; } | undefined; name?: string | undefined; original?: string | undefined; os?: { family?: string | undefined; full?: string | undefined; kernel?: string | undefined; name?: string | undefined; platform?: string | undefined; type?: string | undefined; version?: string | undefined; } | undefined; version?: string | undefined; } | undefined; vulnerability?: { category?: string[] | undefined; classification?: string | undefined; description?: string | undefined; enumeration?: string | undefined; id?: string | undefined; reference?: string | undefined; report_id?: string | undefined; scanner?: { vendor?: string | undefined; } | undefined; score?: { base?: number | undefined; environmental?: number | undefined; temporal?: number | undefined; version?: string | undefined; } | undefined; severity?: string | undefined; } | undefined; } & {} & { ecs?: { version?: string | undefined; } | undefined; kibana?: { alert?: { risk_score?: number | undefined; rule?: { author?: string | undefined; created_at?: string | undefined; created_by?: string | undefined; description?: string | undefined; enabled?: string | undefined; from?: string | undefined; interval?: string | undefined; license?: string | undefined; note?: string | undefined; references?: string[] | undefined; rule_id?: string | undefined; rule_name_override?: string | undefined; to?: string | undefined; type?: string | undefined; updated_at?: string | undefined; updated_by?: string | undefined; version?: string | undefined; } | undefined; severity?: string | undefined; suppression?: { docs_count?: string | number | undefined; end?: string | undefined; start?: string | undefined; terms?: { field?: string[] | undefined; value?: string[] | undefined; } | undefined; } | undefined; system_status?: string | undefined; workflow_reason?: string | undefined; workflow_user?: string | undefined; } | undefined; } | undefined; }) | ({ kibana: { alert: { job_id: string; }; }; } & { kibana?: { alert?: { anomaly_score?: number | undefined; anomaly_timestamp?: string | undefined; is_interim?: boolean | undefined; top_influencers?: { influencer_field_name?: string | undefined; influencer_field_value?: string | undefined; influencer_score?: number | undefined; initial_influencer_score?: number | undefined; is_interim?: boolean | undefined; job_id?: string | undefined; timestamp?: string | undefined; }[] | undefined; top_records?: { actual?: number | undefined; by_field_name?: string | undefined; by_field_value?: string | undefined; detector_index?: number | undefined; field_name?: string | undefined; function?: string | undefined; initial_record_score?: number | undefined; is_interim?: boolean | undefined; job_id?: string | undefined; over_field_name?: string | undefined; over_field_value?: string | undefined; partition_field_name?: string | undefined; partition_field_value?: string | undefined; record_score?: number | undefined; timestamp?: string | undefined; typical?: number | undefined; }[] | undefined; } | undefined; } | undefined; } & { '@timestamp': string; kibana: { alert: { instance: { id: string; }; rule: { category: string; consumer: string; name: string; producer: string; revision: string | number; rule_type_id: string; uuid: string; }; status: string; uuid: string; }; space_ids: string[]; }; } & { event?: { action?: string | undefined; kind?: string | undefined; } | undefined; kibana?: { alert?: { action_group?: string | undefined; case_ids?: string[] | undefined; duration?: { us?: string | number | undefined; } | undefined; end?: string | undefined; flapping?: boolean | undefined; flapping_history?: boolean[] | undefined; last_detected?: string | undefined; maintenance_window_ids?: string[] | undefined; reason?: string | undefined; rule?: { execution?: { uuid?: string | undefined; } | undefined; parameters?: unknown; tags?: string[] | undefined; } | undefined; start?: string | undefined; time_range?: { gte?: string | undefined; lte?: string | undefined; } | undefined; url?: string | undefined; workflow_status?: string | undefined; workflow_tags?: string[] | undefined; } | undefined; version?: string | undefined; } | undefined; tags?: string[] | undefined; })"
],
"path": "packages/kbn-alerts-as-data-utils/src/schemas/index.ts",
"deprecated": false,
@@ -299,6 +299,21 @@
"trackAdoption": false,
"initialIsOpen": false
},
+ {
+ "parentPluginId": "@kbn/alerts-as-data-utils",
+ "id": "def-common.MlAnomalyDetectionAlert",
+ "type": "Type",
+ "tags": [],
+ "label": "MlAnomalyDetectionAlert",
+ "description": [],
+ "signature": [
+ "{ kibana: { alert: { job_id: string; }; }; } & { kibana?: { alert?: { anomaly_score?: number | undefined; anomaly_timestamp?: string | undefined; is_interim?: boolean | undefined; top_influencers?: { influencer_field_name?: string | undefined; influencer_field_value?: string | undefined; influencer_score?: number | undefined; initial_influencer_score?: number | undefined; is_interim?: boolean | undefined; job_id?: string | undefined; timestamp?: string | undefined; }[] | undefined; top_records?: { actual?: number | undefined; by_field_name?: string | undefined; by_field_value?: string | undefined; detector_index?: number | undefined; field_name?: string | undefined; function?: string | undefined; initial_record_score?: number | undefined; is_interim?: boolean | undefined; job_id?: string | undefined; over_field_name?: string | undefined; over_field_value?: string | undefined; partition_field_name?: string | undefined; partition_field_value?: string | undefined; record_score?: number | undefined; timestamp?: string | undefined; typical?: number | undefined; }[] | undefined; } | undefined; } | undefined; } & { '@timestamp': string; kibana: { alert: { instance: { id: string; }; rule: { category: string; consumer: string; name: string; producer: string; revision: string | number; rule_type_id: string; uuid: string; }; status: string; uuid: string; }; space_ids: string[]; }; } & { event?: { action?: string | undefined; kind?: string | undefined; } | undefined; kibana?: { alert?: { action_group?: string | undefined; case_ids?: string[] | undefined; duration?: { us?: string | number | undefined; } | undefined; end?: string | undefined; flapping?: boolean | undefined; flapping_history?: boolean[] | undefined; last_detected?: string | undefined; maintenance_window_ids?: string[] | undefined; reason?: string | undefined; rule?: { execution?: { uuid?: string | undefined; } | undefined; parameters?: unknown; tags?: string[] | undefined; } | undefined; start?: string | undefined; time_range?: { gte?: string | undefined; lte?: string | undefined; } | undefined; url?: string | undefined; workflow_status?: string | undefined; workflow_tags?: string[] | undefined; } | undefined; version?: string | undefined; } | undefined; tags?: string[] | undefined; }"
+ ],
+ "path": "packages/kbn-alerts-as-data-utils/src/schemas/generated/ml_anomaly_detection_schema.ts",
+ "deprecated": false,
+ "trackAdoption": false,
+ "initialIsOpen": false
+ },
{
"parentPluginId": "@kbn/alerts-as-data-utils",
"id": "def-common.ObservabilityApmAlert",
diff --git a/api_docs/kbn_alerts_as_data_utils.mdx b/api_docs/kbn_alerts_as_data_utils.mdx
index ee877bbdcf4bf..48de10419d576 100644
--- a/api_docs/kbn_alerts_as_data_utils.mdx
+++ b/api_docs/kbn_alerts_as_data_utils.mdx
@@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-alerts-as-data-utils
title: "@kbn/alerts-as-data-utils"
image: https://source.unsplash.com/400x175/?github
description: API docs for the @kbn/alerts-as-data-utils plugin
-date: 2023-09-28
+date: 2023-09-29
tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/alerts-as-data-utils']
---
import kbnAlertsAsDataUtilsObj from './kbn_alerts_as_data_utils.devdocs.json';
@@ -21,7 +21,7 @@ Contact [@elastic/response-ops](https://github.com/orgs/elastic/teams/response-o
| Public API count | Any count | Items lacking comments | Missing exports |
|-------------------|-----------|------------------------|-----------------|
-| 29 | 0 | 29 | 0 |
+| 30 | 0 | 30 | 0 |
## Common
diff --git a/api_docs/kbn_alerts_ui_shared.mdx b/api_docs/kbn_alerts_ui_shared.mdx
index d97e765f4470d..f8bf72aeaf8a6 100644
--- a/api_docs/kbn_alerts_ui_shared.mdx
+++ b/api_docs/kbn_alerts_ui_shared.mdx
@@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-alerts-ui-shared
title: "@kbn/alerts-ui-shared"
image: https://source.unsplash.com/400x175/?github
description: API docs for the @kbn/alerts-ui-shared plugin
-date: 2023-09-28
+date: 2023-09-29
tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/alerts-ui-shared']
---
import kbnAlertsUiSharedObj from './kbn_alerts_ui_shared.devdocs.json';
diff --git a/api_docs/kbn_analytics.mdx b/api_docs/kbn_analytics.mdx
index 2bdd1ea5a93f5..b1805a3ae6ab8 100644
--- a/api_docs/kbn_analytics.mdx
+++ b/api_docs/kbn_analytics.mdx
@@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-analytics
title: "@kbn/analytics"
image: https://source.unsplash.com/400x175/?github
description: API docs for the @kbn/analytics plugin
-date: 2023-09-28
+date: 2023-09-29
tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/analytics']
---
import kbnAnalyticsObj from './kbn_analytics.devdocs.json';
diff --git a/api_docs/kbn_analytics_client.devdocs.json b/api_docs/kbn_analytics_client.devdocs.json
index b207525eeca92..4182878c7975c 100644
--- a/api_docs/kbn_analytics_client.devdocs.json
+++ b/api_docs/kbn_analytics_client.devdocs.json
@@ -602,6 +602,46 @@
"deprecated": false,
"trackAdoption": true,
"references": [
+ {
+ "plugin": "@kbn/core-notifications-browser-internal",
+ "path": "packages/core/notifications/core-notifications-browser-internal/src/toasts/telemetry/event_reporter.ts"
+ },
+ {
+ "plugin": "@kbn/core-notifications-browser-internal",
+ "path": "packages/core/notifications/core-notifications-browser-internal/src/toasts/telemetry/event_reporter.ts"
+ },
+ {
+ "plugin": "@kbn/ebt-tools",
+ "path": "packages/kbn-ebt-tools/src/performance_metric_events/helpers.ts"
+ },
+ {
+ "plugin": "@kbn/core-analytics-browser-internal",
+ "path": "packages/core/analytics/core-analytics-browser-internal/src/track_clicks.ts"
+ },
+ {
+ "plugin": "@kbn/core-analytics-browser-internal",
+ "path": "packages/core/analytics/core-analytics-browser-internal/src/track_viewport_size.ts"
+ },
+ {
+ "plugin": "@kbn/core-analytics-browser-internal",
+ "path": "packages/core/analytics/core-analytics-browser-internal/src/analytics_service.ts"
+ },
+ {
+ "plugin": "@kbn/core-analytics-browser-internal",
+ "path": "packages/core/analytics/core-analytics-browser-internal/src/analytics_service.ts"
+ },
+ {
+ "plugin": "@kbn/core-analytics-browser-internal",
+ "path": "packages/core/analytics/core-analytics-browser-internal/src/analytics_service.ts"
+ },
+ {
+ "plugin": "@kbn/core-analytics-browser-internal",
+ "path": "packages/core/analytics/core-analytics-browser-internal/src/analytics_service.ts"
+ },
+ {
+ "plugin": "@kbn/core-root-browser-internal",
+ "path": "packages/core/root/core-root-browser-internal/src/core_system.ts"
+ },
{
"plugin": "@kbn/core-status-server-internal",
"path": "packages/core/status/core-status-server-internal/src/status_service.ts"
@@ -630,10 +670,6 @@
"plugin": "@kbn/core-plugins-server-internal",
"path": "packages/core/plugins/core-plugins-server-internal/src/plugin_context.ts"
},
- {
- "plugin": "@kbn/ebt-tools",
- "path": "packages/kbn-ebt-tools/src/performance_metric_events/helpers.ts"
- },
{
"plugin": "@kbn/core-analytics-server-internal",
"path": "packages/core/analytics/core-analytics-server-internal/src/analytics_service.ts"
@@ -663,44 +699,16 @@
"path": "packages/core/root/core-root-server-internal/src/server.ts"
},
{
- "plugin": "@kbn/core-notifications-browser-internal",
- "path": "packages/core/notifications/core-notifications-browser-internal/src/toasts/telemetry/event_reporter.ts"
- },
- {
- "plugin": "@kbn/core-notifications-browser-internal",
- "path": "packages/core/notifications/core-notifications-browser-internal/src/toasts/telemetry/event_reporter.ts"
- },
- {
- "plugin": "@kbn/core-analytics-browser-internal",
- "path": "packages/core/analytics/core-analytics-browser-internal/src/track_clicks.ts"
- },
- {
- "plugin": "@kbn/core-analytics-browser-internal",
- "path": "packages/core/analytics/core-analytics-browser-internal/src/track_viewport_size.ts"
- },
- {
- "plugin": "@kbn/core-analytics-browser-internal",
- "path": "packages/core/analytics/core-analytics-browser-internal/src/analytics_service.ts"
- },
- {
- "plugin": "@kbn/core-analytics-browser-internal",
- "path": "packages/core/analytics/core-analytics-browser-internal/src/analytics_service.ts"
- },
- {
- "plugin": "@kbn/core-analytics-browser-internal",
- "path": "packages/core/analytics/core-analytics-browser-internal/src/analytics_service.ts"
- },
- {
- "plugin": "@kbn/core-analytics-browser-internal",
- "path": "packages/core/analytics/core-analytics-browser-internal/src/analytics_service.ts"
+ "plugin": "security",
+ "path": "x-pack/plugins/security/server/analytics/analytics_service.ts"
},
{
- "plugin": "@kbn/core-root-browser-internal",
- "path": "packages/core/root/core-root-browser-internal/src/core_system.ts"
+ "plugin": "dashboard",
+ "path": "src/plugins/dashboard/public/services/analytics/types.ts"
},
{
- "plugin": "security",
- "path": "x-pack/plugins/security/server/analytics/analytics_service.ts"
+ "plugin": "dashboard",
+ "path": "src/plugins/dashboard/public/services/analytics/analytics_service.ts"
},
{
"plugin": "@kbn/subscription-tracking",
@@ -710,14 +718,6 @@
"plugin": "@kbn/subscription-tracking",
"path": "packages/kbn-subscription-tracking/src/use_impression.ts"
},
- {
- "plugin": "dashboard",
- "path": "src/plugins/dashboard/public/services/analytics/types.ts"
- },
- {
- "plugin": "dashboard",
- "path": "src/plugins/dashboard/public/services/analytics/analytics_service.ts"
- },
{
"plugin": "fleet",
"path": "x-pack/plugins/fleet/server/services/telemetry/fleet_usage_sender.ts"
@@ -730,22 +730,6 @@
"plugin": "fleet",
"path": "x-pack/plugins/fleet/server/services/telemetry/fleet_usage_sender.ts"
},
- {
- "plugin": "osquery",
- "path": "x-pack/plugins/osquery/server/lib/telemetry/sender.ts"
- },
- {
- "plugin": "osquery",
- "path": "x-pack/plugins/osquery/server/lib/telemetry/sender.ts"
- },
- {
- "plugin": "osquery",
- "path": "x-pack/plugins/osquery/server/lib/telemetry/sender.ts"
- },
- {
- "plugin": "osquery",
- "path": "x-pack/plugins/osquery/server/lib/telemetry/sender.ts"
- },
{
"plugin": "infra",
"path": "x-pack/plugins/infra/public/services/telemetry/telemetry_client.ts"
@@ -786,6 +770,22 @@
"plugin": "globalSearchBar",
"path": "x-pack/plugins/global_search_bar/public/telemetry/event_reporter.ts"
},
+ {
+ "plugin": "osquery",
+ "path": "x-pack/plugins/osquery/server/lib/telemetry/sender.ts"
+ },
+ {
+ "plugin": "osquery",
+ "path": "x-pack/plugins/osquery/server/lib/telemetry/sender.ts"
+ },
+ {
+ "plugin": "osquery",
+ "path": "x-pack/plugins/osquery/server/lib/telemetry/sender.ts"
+ },
+ {
+ "plugin": "osquery",
+ "path": "x-pack/plugins/osquery/server/lib/telemetry/sender.ts"
+ },
{
"plugin": "securitySolution",
"path": "x-pack/plugins/security_solution/public/common/lib/telemetry/telemetry_client.ts"
@@ -1300,6 +1300,46 @@
"deprecated": false,
"trackAdoption": true,
"references": [
+ {
+ "plugin": "@kbn/core-application-browser-internal",
+ "path": "packages/core/application/core-application-browser-internal/src/register_analytics_context_provider.ts"
+ },
+ {
+ "plugin": "@kbn/core-analytics-browser-internal",
+ "path": "packages/core/analytics/core-analytics-browser-internal/src/track_viewport_size.ts"
+ },
+ {
+ "plugin": "@kbn/core-analytics-browser-internal",
+ "path": "packages/core/analytics/core-analytics-browser-internal/src/analytics_service.ts"
+ },
+ {
+ "plugin": "@kbn/core-analytics-browser-internal",
+ "path": "packages/core/analytics/core-analytics-browser-internal/src/analytics_service.ts"
+ },
+ {
+ "plugin": "@kbn/core-analytics-browser-internal",
+ "path": "packages/core/analytics/core-analytics-browser-internal/src/analytics_service.ts"
+ },
+ {
+ "plugin": "@kbn/core-analytics-browser-internal",
+ "path": "packages/core/analytics/core-analytics-browser-internal/src/analytics_service.ts"
+ },
+ {
+ "plugin": "@kbn/core-analytics-browser-internal",
+ "path": "packages/core/analytics/core-analytics-browser-internal/src/analytics_service.ts"
+ },
+ {
+ "plugin": "@kbn/core-analytics-browser-internal",
+ "path": "packages/core/analytics/core-analytics-browser-internal/src/analytics_service.ts"
+ },
+ {
+ "plugin": "@kbn/core-execution-context-browser-internal",
+ "path": "packages/core/execution-context/core-execution-context-browser-internal/src/execution_context_service.ts"
+ },
+ {
+ "plugin": "@kbn/core-chrome-browser-internal",
+ "path": "packages/core/chrome/core-chrome-browser-internal/src/register_analytics_context_provider.ts"
+ },
{
"plugin": "@kbn/core-elasticsearch-server-internal",
"path": "packages/core/elasticsearch/core-elasticsearch-server-internal/src/register_analytics_context_provider.ts"
@@ -1352,46 +1392,6 @@
"plugin": "licensing",
"path": "x-pack/plugins/licensing/common/register_analytics_context_provider.ts"
},
- {
- "plugin": "@kbn/core-application-browser-internal",
- "path": "packages/core/application/core-application-browser-internal/src/register_analytics_context_provider.ts"
- },
- {
- "plugin": "@kbn/core-analytics-browser-internal",
- "path": "packages/core/analytics/core-analytics-browser-internal/src/track_viewport_size.ts"
- },
- {
- "plugin": "@kbn/core-analytics-browser-internal",
- "path": "packages/core/analytics/core-analytics-browser-internal/src/analytics_service.ts"
- },
- {
- "plugin": "@kbn/core-analytics-browser-internal",
- "path": "packages/core/analytics/core-analytics-browser-internal/src/analytics_service.ts"
- },
- {
- "plugin": "@kbn/core-analytics-browser-internal",
- "path": "packages/core/analytics/core-analytics-browser-internal/src/analytics_service.ts"
- },
- {
- "plugin": "@kbn/core-analytics-browser-internal",
- "path": "packages/core/analytics/core-analytics-browser-internal/src/analytics_service.ts"
- },
- {
- "plugin": "@kbn/core-analytics-browser-internal",
- "path": "packages/core/analytics/core-analytics-browser-internal/src/analytics_service.ts"
- },
- {
- "plugin": "@kbn/core-analytics-browser-internal",
- "path": "packages/core/analytics/core-analytics-browser-internal/src/analytics_service.ts"
- },
- {
- "plugin": "@kbn/core-execution-context-browser-internal",
- "path": "packages/core/execution-context/core-execution-context-browser-internal/src/execution_context_service.ts"
- },
- {
- "plugin": "@kbn/core-chrome-browser-internal",
- "path": "packages/core/chrome/core-chrome-browser-internal/src/register_analytics_context_provider.ts"
- },
{
"plugin": "cloud",
"path": "x-pack/plugins/cloud/common/register_cloud_deployment_id_analytics_context.ts"
@@ -1402,11 +1402,11 @@
},
{
"plugin": "telemetry",
- "path": "src/plugins/telemetry/public/plugin.ts"
+ "path": "src/plugins/telemetry/server/plugin.ts"
},
{
"plugin": "telemetry",
- "path": "src/plugins/telemetry/server/plugin.ts"
+ "path": "src/plugins/telemetry/public/plugin.ts"
},
{
"plugin": "securitySolution",
diff --git a/api_docs/kbn_analytics_client.mdx b/api_docs/kbn_analytics_client.mdx
index 3f6ff18a4f42f..9cdb748af1325 100644
--- a/api_docs/kbn_analytics_client.mdx
+++ b/api_docs/kbn_analytics_client.mdx
@@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-analytics-client
title: "@kbn/analytics-client"
image: https://source.unsplash.com/400x175/?github
description: API docs for the @kbn/analytics-client plugin
-date: 2023-09-28
+date: 2023-09-29
tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/analytics-client']
---
import kbnAnalyticsClientObj from './kbn_analytics_client.devdocs.json';
diff --git a/api_docs/kbn_analytics_shippers_elastic_v3_browser.mdx b/api_docs/kbn_analytics_shippers_elastic_v3_browser.mdx
index 4803378aa63a0..779a5b1af7bf1 100644
--- a/api_docs/kbn_analytics_shippers_elastic_v3_browser.mdx
+++ b/api_docs/kbn_analytics_shippers_elastic_v3_browser.mdx
@@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-analytics-shippers-elastic-v3-browser
title: "@kbn/analytics-shippers-elastic-v3-browser"
image: https://source.unsplash.com/400x175/?github
description: API docs for the @kbn/analytics-shippers-elastic-v3-browser plugin
-date: 2023-09-28
+date: 2023-09-29
tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/analytics-shippers-elastic-v3-browser']
---
import kbnAnalyticsShippersElasticV3BrowserObj from './kbn_analytics_shippers_elastic_v3_browser.devdocs.json';
diff --git a/api_docs/kbn_analytics_shippers_elastic_v3_common.mdx b/api_docs/kbn_analytics_shippers_elastic_v3_common.mdx
index 34dc08a375b81..19e76efc69ff5 100644
--- a/api_docs/kbn_analytics_shippers_elastic_v3_common.mdx
+++ b/api_docs/kbn_analytics_shippers_elastic_v3_common.mdx
@@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-analytics-shippers-elastic-v3-common
title: "@kbn/analytics-shippers-elastic-v3-common"
image: https://source.unsplash.com/400x175/?github
description: API docs for the @kbn/analytics-shippers-elastic-v3-common plugin
-date: 2023-09-28
+date: 2023-09-29
tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/analytics-shippers-elastic-v3-common']
---
import kbnAnalyticsShippersElasticV3CommonObj from './kbn_analytics_shippers_elastic_v3_common.devdocs.json';
diff --git a/api_docs/kbn_analytics_shippers_elastic_v3_server.mdx b/api_docs/kbn_analytics_shippers_elastic_v3_server.mdx
index fc0e5978ed743..efad35cfb62d3 100644
--- a/api_docs/kbn_analytics_shippers_elastic_v3_server.mdx
+++ b/api_docs/kbn_analytics_shippers_elastic_v3_server.mdx
@@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-analytics-shippers-elastic-v3-server
title: "@kbn/analytics-shippers-elastic-v3-server"
image: https://source.unsplash.com/400x175/?github
description: API docs for the @kbn/analytics-shippers-elastic-v3-server plugin
-date: 2023-09-28
+date: 2023-09-29
tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/analytics-shippers-elastic-v3-server']
---
import kbnAnalyticsShippersElasticV3ServerObj from './kbn_analytics_shippers_elastic_v3_server.devdocs.json';
diff --git a/api_docs/kbn_analytics_shippers_fullstory.mdx b/api_docs/kbn_analytics_shippers_fullstory.mdx
index ede4f2872b3cf..4cf8f20838cff 100644
--- a/api_docs/kbn_analytics_shippers_fullstory.mdx
+++ b/api_docs/kbn_analytics_shippers_fullstory.mdx
@@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-analytics-shippers-fullstory
title: "@kbn/analytics-shippers-fullstory"
image: https://source.unsplash.com/400x175/?github
description: API docs for the @kbn/analytics-shippers-fullstory plugin
-date: 2023-09-28
+date: 2023-09-29
tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/analytics-shippers-fullstory']
---
import kbnAnalyticsShippersFullstoryObj from './kbn_analytics_shippers_fullstory.devdocs.json';
diff --git a/api_docs/kbn_analytics_shippers_gainsight.mdx b/api_docs/kbn_analytics_shippers_gainsight.mdx
index 7efddd2313255..2fd375228e24c 100644
--- a/api_docs/kbn_analytics_shippers_gainsight.mdx
+++ b/api_docs/kbn_analytics_shippers_gainsight.mdx
@@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-analytics-shippers-gainsight
title: "@kbn/analytics-shippers-gainsight"
image: https://source.unsplash.com/400x175/?github
description: API docs for the @kbn/analytics-shippers-gainsight plugin
-date: 2023-09-28
+date: 2023-09-29
tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/analytics-shippers-gainsight']
---
import kbnAnalyticsShippersGainsightObj from './kbn_analytics_shippers_gainsight.devdocs.json';
diff --git a/api_docs/kbn_apm_config_loader.mdx b/api_docs/kbn_apm_config_loader.mdx
index dd6617c10f1da..772d8239a51da 100644
--- a/api_docs/kbn_apm_config_loader.mdx
+++ b/api_docs/kbn_apm_config_loader.mdx
@@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-apm-config-loader
title: "@kbn/apm-config-loader"
image: https://source.unsplash.com/400x175/?github
description: API docs for the @kbn/apm-config-loader plugin
-date: 2023-09-28
+date: 2023-09-29
tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/apm-config-loader']
---
import kbnApmConfigLoaderObj from './kbn_apm_config_loader.devdocs.json';
diff --git a/api_docs/kbn_apm_synthtrace.mdx b/api_docs/kbn_apm_synthtrace.mdx
index 19c84f38c9be1..68cc09d693453 100644
--- a/api_docs/kbn_apm_synthtrace.mdx
+++ b/api_docs/kbn_apm_synthtrace.mdx
@@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-apm-synthtrace
title: "@kbn/apm-synthtrace"
image: https://source.unsplash.com/400x175/?github
description: API docs for the @kbn/apm-synthtrace plugin
-date: 2023-09-28
+date: 2023-09-29
tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/apm-synthtrace']
---
import kbnApmSynthtraceObj from './kbn_apm_synthtrace.devdocs.json';
diff --git a/api_docs/kbn_apm_synthtrace_client.mdx b/api_docs/kbn_apm_synthtrace_client.mdx
index cc124e0c5ecbc..104a40be6ba70 100644
--- a/api_docs/kbn_apm_synthtrace_client.mdx
+++ b/api_docs/kbn_apm_synthtrace_client.mdx
@@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-apm-synthtrace-client
title: "@kbn/apm-synthtrace-client"
image: https://source.unsplash.com/400x175/?github
description: API docs for the @kbn/apm-synthtrace-client plugin
-date: 2023-09-28
+date: 2023-09-29
tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/apm-synthtrace-client']
---
import kbnApmSynthtraceClientObj from './kbn_apm_synthtrace_client.devdocs.json';
diff --git a/api_docs/kbn_apm_utils.mdx b/api_docs/kbn_apm_utils.mdx
index a80ea0d589ab4..5120b34f8c628 100644
--- a/api_docs/kbn_apm_utils.mdx
+++ b/api_docs/kbn_apm_utils.mdx
@@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-apm-utils
title: "@kbn/apm-utils"
image: https://source.unsplash.com/400x175/?github
description: API docs for the @kbn/apm-utils plugin
-date: 2023-09-28
+date: 2023-09-29
tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/apm-utils']
---
import kbnApmUtilsObj from './kbn_apm_utils.devdocs.json';
diff --git a/api_docs/kbn_axe_config.mdx b/api_docs/kbn_axe_config.mdx
index e96e1040a5cd6..3a9ba6e899237 100644
--- a/api_docs/kbn_axe_config.mdx
+++ b/api_docs/kbn_axe_config.mdx
@@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-axe-config
title: "@kbn/axe-config"
image: https://source.unsplash.com/400x175/?github
description: API docs for the @kbn/axe-config plugin
-date: 2023-09-28
+date: 2023-09-29
tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/axe-config']
---
import kbnAxeConfigObj from './kbn_axe_config.devdocs.json';
diff --git a/api_docs/kbn_cases_components.mdx b/api_docs/kbn_cases_components.mdx
index d9132b2a63e0f..8517769bf2856 100644
--- a/api_docs/kbn_cases_components.mdx
+++ b/api_docs/kbn_cases_components.mdx
@@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-cases-components
title: "@kbn/cases-components"
image: https://source.unsplash.com/400x175/?github
description: API docs for the @kbn/cases-components plugin
-date: 2023-09-28
+date: 2023-09-29
tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/cases-components']
---
import kbnCasesComponentsObj from './kbn_cases_components.devdocs.json';
diff --git a/api_docs/kbn_cell_actions.mdx b/api_docs/kbn_cell_actions.mdx
index 2edf70d5494d1..1331c44dd5fb0 100644
--- a/api_docs/kbn_cell_actions.mdx
+++ b/api_docs/kbn_cell_actions.mdx
@@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-cell-actions
title: "@kbn/cell-actions"
image: https://source.unsplash.com/400x175/?github
description: API docs for the @kbn/cell-actions plugin
-date: 2023-09-28
+date: 2023-09-29
tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/cell-actions']
---
import kbnCellActionsObj from './kbn_cell_actions.devdocs.json';
diff --git a/api_docs/kbn_chart_expressions_common.devdocs.json b/api_docs/kbn_chart_expressions_common.devdocs.json
index bdf2e8ff476f8..de54c17861fdd 100644
--- a/api_docs/kbn_chart_expressions_common.devdocs.json
+++ b/api_docs/kbn_chart_expressions_common.devdocs.json
@@ -115,6 +115,71 @@
"returnComment": [],
"initialIsOpen": false
},
+ {
+ "parentPluginId": "@kbn/chart-expressions-common",
+ "id": "def-common.getColorCategories",
+ "type": "Function",
+ "tags": [],
+ "label": "getColorCategories",
+ "description": [
+ "\nGet the stringified version of all the categories that needs to be colored in the chart.\nMultifield keys will return as array of string and simple fields (numeric, string) will be returned as a plain unformatted string."
+ ],
+ "signature": [
+ "(rows: ",
+ {
+ "pluginId": "expressions",
+ "scope": "common",
+ "docId": "kibExpressionsPluginApi",
+ "section": "def-common.DatatableRow",
+ "text": "DatatableRow"
+ },
+ "[], accessor: string | undefined) => (string | string[])[]"
+ ],
+ "path": "src/plugins/chart_expressions/common/color_categories.ts",
+ "deprecated": false,
+ "trackAdoption": false,
+ "children": [
+ {
+ "parentPluginId": "@kbn/chart-expressions-common",
+ "id": "def-common.getColorCategories.$1",
+ "type": "Array",
+ "tags": [],
+ "label": "rows",
+ "description": [],
+ "signature": [
+ {
+ "pluginId": "expressions",
+ "scope": "common",
+ "docId": "kibExpressionsPluginApi",
+ "section": "def-common.DatatableRow",
+ "text": "DatatableRow"
+ },
+ "[]"
+ ],
+ "path": "src/plugins/chart_expressions/common/color_categories.ts",
+ "deprecated": false,
+ "trackAdoption": false,
+ "isRequired": true
+ },
+ {
+ "parentPluginId": "@kbn/chart-expressions-common",
+ "id": "def-common.getColorCategories.$2",
+ "type": "string",
+ "tags": [],
+ "label": "accessor",
+ "description": [],
+ "signature": [
+ "string | undefined"
+ ],
+ "path": "src/plugins/chart_expressions/common/color_categories.ts",
+ "deprecated": false,
+ "trackAdoption": false,
+ "isRequired": false
+ }
+ ],
+ "returnComment": [],
+ "initialIsOpen": false
+ },
{
"parentPluginId": "@kbn/chart-expressions-common",
"id": "def-common.getOverridesFor",
diff --git a/api_docs/kbn_chart_expressions_common.mdx b/api_docs/kbn_chart_expressions_common.mdx
index b5c46e686c2dd..4813ec1adfcbf 100644
--- a/api_docs/kbn_chart_expressions_common.mdx
+++ b/api_docs/kbn_chart_expressions_common.mdx
@@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-chart-expressions-common
title: "@kbn/chart-expressions-common"
image: https://source.unsplash.com/400x175/?github
description: API docs for the @kbn/chart-expressions-common plugin
-date: 2023-09-28
+date: 2023-09-29
tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/chart-expressions-common']
---
import kbnChartExpressionsCommonObj from './kbn_chart_expressions_common.devdocs.json';
@@ -21,7 +21,7 @@ Contact [@elastic/kibana-visualizations](https://github.com/orgs/elastic/teams/k
| Public API count | Any count | Items lacking comments | Missing exports |
|-------------------|-----------|------------------------|-----------------|
-| 11 | 0 | 8 | 0 |
+| 14 | 0 | 10 | 0 |
## Common
diff --git a/api_docs/kbn_chart_icons.mdx b/api_docs/kbn_chart_icons.mdx
index 284f86b7ebc35..fd4ebd748d927 100644
--- a/api_docs/kbn_chart_icons.mdx
+++ b/api_docs/kbn_chart_icons.mdx
@@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-chart-icons
title: "@kbn/chart-icons"
image: https://source.unsplash.com/400x175/?github
description: API docs for the @kbn/chart-icons plugin
-date: 2023-09-28
+date: 2023-09-29
tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/chart-icons']
---
import kbnChartIconsObj from './kbn_chart_icons.devdocs.json';
diff --git a/api_docs/kbn_ci_stats_core.mdx b/api_docs/kbn_ci_stats_core.mdx
index f7fb52a4efdaf..c08344aef6186 100644
--- a/api_docs/kbn_ci_stats_core.mdx
+++ b/api_docs/kbn_ci_stats_core.mdx
@@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-ci-stats-core
title: "@kbn/ci-stats-core"
image: https://source.unsplash.com/400x175/?github
description: API docs for the @kbn/ci-stats-core plugin
-date: 2023-09-28
+date: 2023-09-29
tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/ci-stats-core']
---
import kbnCiStatsCoreObj from './kbn_ci_stats_core.devdocs.json';
diff --git a/api_docs/kbn_ci_stats_performance_metrics.mdx b/api_docs/kbn_ci_stats_performance_metrics.mdx
index 9dec5dcb66049..41d93ad7f45e2 100644
--- a/api_docs/kbn_ci_stats_performance_metrics.mdx
+++ b/api_docs/kbn_ci_stats_performance_metrics.mdx
@@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-ci-stats-performance-metrics
title: "@kbn/ci-stats-performance-metrics"
image: https://source.unsplash.com/400x175/?github
description: API docs for the @kbn/ci-stats-performance-metrics plugin
-date: 2023-09-28
+date: 2023-09-29
tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/ci-stats-performance-metrics']
---
import kbnCiStatsPerformanceMetricsObj from './kbn_ci_stats_performance_metrics.devdocs.json';
diff --git a/api_docs/kbn_ci_stats_reporter.mdx b/api_docs/kbn_ci_stats_reporter.mdx
index 0586b9f3d1864..0469bd534cdef 100644
--- a/api_docs/kbn_ci_stats_reporter.mdx
+++ b/api_docs/kbn_ci_stats_reporter.mdx
@@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-ci-stats-reporter
title: "@kbn/ci-stats-reporter"
image: https://source.unsplash.com/400x175/?github
description: API docs for the @kbn/ci-stats-reporter plugin
-date: 2023-09-28
+date: 2023-09-29
tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/ci-stats-reporter']
---
import kbnCiStatsReporterObj from './kbn_ci_stats_reporter.devdocs.json';
diff --git a/api_docs/kbn_cli_dev_mode.mdx b/api_docs/kbn_cli_dev_mode.mdx
index 5b6983d6155c8..1990068f5fbfc 100644
--- a/api_docs/kbn_cli_dev_mode.mdx
+++ b/api_docs/kbn_cli_dev_mode.mdx
@@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-cli-dev-mode
title: "@kbn/cli-dev-mode"
image: https://source.unsplash.com/400x175/?github
description: API docs for the @kbn/cli-dev-mode plugin
-date: 2023-09-28
+date: 2023-09-29
tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/cli-dev-mode']
---
import kbnCliDevModeObj from './kbn_cli_dev_mode.devdocs.json';
diff --git a/api_docs/kbn_code_editor.mdx b/api_docs/kbn_code_editor.mdx
index 3b19c755cd895..28738eed726f4 100644
--- a/api_docs/kbn_code_editor.mdx
+++ b/api_docs/kbn_code_editor.mdx
@@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-code-editor
title: "@kbn/code-editor"
image: https://source.unsplash.com/400x175/?github
description: API docs for the @kbn/code-editor plugin
-date: 2023-09-28
+date: 2023-09-29
tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/code-editor']
---
import kbnCodeEditorObj from './kbn_code_editor.devdocs.json';
diff --git a/api_docs/kbn_code_editor_mocks.mdx b/api_docs/kbn_code_editor_mocks.mdx
index dc746f3c840d7..decf718eb969c 100644
--- a/api_docs/kbn_code_editor_mocks.mdx
+++ b/api_docs/kbn_code_editor_mocks.mdx
@@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-code-editor-mocks
title: "@kbn/code-editor-mocks"
image: https://source.unsplash.com/400x175/?github
description: API docs for the @kbn/code-editor-mocks plugin
-date: 2023-09-28
+date: 2023-09-29
tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/code-editor-mocks']
---
import kbnCodeEditorMocksObj from './kbn_code_editor_mocks.devdocs.json';
diff --git a/api_docs/kbn_coloring.devdocs.json b/api_docs/kbn_coloring.devdocs.json
index 75bd30fc6e9e4..22b0920bc0b2a 100644
--- a/api_docs/kbn_coloring.devdocs.json
+++ b/api_docs/kbn_coloring.devdocs.json
@@ -17,7 +17,197 @@
"objects": []
},
"common": {
- "classes": [],
+ "classes": [
+ {
+ "parentPluginId": "@kbn/coloring",
+ "id": "def-common.CategoricalColorMapping",
+ "type": "Class",
+ "tags": [],
+ "label": "CategoricalColorMapping",
+ "description": [
+ "\nThe React component for mapping categorical values to colors"
+ ],
+ "signature": [
+ {
+ "pluginId": "@kbn/coloring",
+ "scope": "common",
+ "docId": "kibKbnColoringPluginApi",
+ "section": "def-common.CategoricalColorMapping",
+ "text": "CategoricalColorMapping"
+ },
+ " extends React.Component<",
+ {
+ "pluginId": "@kbn/coloring",
+ "scope": "common",
+ "docId": "kibKbnColoringPluginApi",
+ "section": "def-common.ColorMappingProps",
+ "text": "ColorMappingProps"
+ },
+ ", {}, any>"
+ ],
+ "path": "packages/kbn-coloring/src/shared_components/color_mapping/categorical_color_mapping.tsx",
+ "deprecated": false,
+ "trackAdoption": false,
+ "children": [
+ {
+ "parentPluginId": "@kbn/coloring",
+ "id": "def-common.CategoricalColorMapping.store",
+ "type": "Object",
+ "tags": [],
+ "label": "store",
+ "description": [],
+ "signature": [
+ "EnhancedStore",
+ "<{ colorMapping: ",
+ "Config",
+ "; }, ",
+ "AnyAction",
+ ", Middlewares<{ colorMapping: ",
+ "Config",
+ "; }>>"
+ ],
+ "path": "packages/kbn-coloring/src/shared_components/color_mapping/categorical_color_mapping.tsx",
+ "deprecated": false,
+ "trackAdoption": false
+ },
+ {
+ "parentPluginId": "@kbn/coloring",
+ "id": "def-common.CategoricalColorMapping.unsubscribe",
+ "type": "Function",
+ "tags": [],
+ "label": "unsubscribe",
+ "description": [],
+ "signature": [
+ "() => void"
+ ],
+ "path": "packages/kbn-coloring/src/shared_components/color_mapping/categorical_color_mapping.tsx",
+ "deprecated": false,
+ "trackAdoption": false,
+ "returnComment": [],
+ "children": []
+ },
+ {
+ "parentPluginId": "@kbn/coloring",
+ "id": "def-common.CategoricalColorMapping.Unnamed",
+ "type": "Function",
+ "tags": [],
+ "label": "Constructor",
+ "description": [],
+ "signature": [
+ "any"
+ ],
+ "path": "packages/kbn-coloring/src/shared_components/color_mapping/categorical_color_mapping.tsx",
+ "deprecated": false,
+ "trackAdoption": false,
+ "children": [
+ {
+ "parentPluginId": "@kbn/coloring",
+ "id": "def-common.CategoricalColorMapping.Unnamed.$1",
+ "type": "Object",
+ "tags": [],
+ "label": "props",
+ "description": [],
+ "signature": [
+ {
+ "pluginId": "@kbn/coloring",
+ "scope": "common",
+ "docId": "kibKbnColoringPluginApi",
+ "section": "def-common.ColorMappingProps",
+ "text": "ColorMappingProps"
+ }
+ ],
+ "path": "packages/kbn-coloring/src/shared_components/color_mapping/categorical_color_mapping.tsx",
+ "deprecated": false,
+ "trackAdoption": false,
+ "isRequired": true
+ }
+ ],
+ "returnComment": []
+ },
+ {
+ "parentPluginId": "@kbn/coloring",
+ "id": "def-common.CategoricalColorMapping.componentWillUnmount",
+ "type": "Function",
+ "tags": [],
+ "label": "componentWillUnmount",
+ "description": [],
+ "signature": [
+ "() => void"
+ ],
+ "path": "packages/kbn-coloring/src/shared_components/color_mapping/categorical_color_mapping.tsx",
+ "deprecated": false,
+ "trackAdoption": false,
+ "children": [],
+ "returnComment": []
+ },
+ {
+ "parentPluginId": "@kbn/coloring",
+ "id": "def-common.CategoricalColorMapping.componentDidUpdate",
+ "type": "Function",
+ "tags": [],
+ "label": "componentDidUpdate",
+ "description": [],
+ "signature": [
+ "(prevProps: Readonly<",
+ {
+ "pluginId": "@kbn/coloring",
+ "scope": "common",
+ "docId": "kibKbnColoringPluginApi",
+ "section": "def-common.ColorMappingProps",
+ "text": "ColorMappingProps"
+ },
+ ">) => void"
+ ],
+ "path": "packages/kbn-coloring/src/shared_components/color_mapping/categorical_color_mapping.tsx",
+ "deprecated": false,
+ "trackAdoption": false,
+ "children": [
+ {
+ "parentPluginId": "@kbn/coloring",
+ "id": "def-common.CategoricalColorMapping.componentDidUpdate.$1",
+ "type": "Object",
+ "tags": [],
+ "label": "prevProps",
+ "description": [],
+ "signature": [
+ "Readonly<",
+ {
+ "pluginId": "@kbn/coloring",
+ "scope": "common",
+ "docId": "kibKbnColoringPluginApi",
+ "section": "def-common.ColorMappingProps",
+ "text": "ColorMappingProps"
+ },
+ ">"
+ ],
+ "path": "packages/kbn-coloring/src/shared_components/color_mapping/categorical_color_mapping.tsx",
+ "deprecated": false,
+ "trackAdoption": false,
+ "isRequired": true
+ }
+ ],
+ "returnComment": []
+ },
+ {
+ "parentPluginId": "@kbn/coloring",
+ "id": "def-common.CategoricalColorMapping.render",
+ "type": "Function",
+ "tags": [],
+ "label": "render",
+ "description": [],
+ "signature": [
+ "() => JSX.Element"
+ ],
+ "path": "packages/kbn-coloring/src/shared_components/color_mapping/categorical_color_mapping.tsx",
+ "deprecated": false,
+ "trackAdoption": false,
+ "children": [],
+ "returnComment": []
+ }
+ ],
+ "initialIsOpen": false
+ }
+ ],
"functions": [
{
"parentPluginId": "@kbn/coloring",
@@ -239,32 +429,126 @@
},
{
"parentPluginId": "@kbn/coloring",
- "id": "def-common.getColorAlpha",
+ "id": "def-common.getAssignmentColor",
"type": "Function",
"tags": [],
- "label": "getColorAlpha",
+ "label": "getAssignmentColor",
"description": [],
"signature": [
- "(color?: string | null | undefined) => number"
+ "(colorMode: ",
+ "CategoricalColorMode",
+ " | ",
+ "GradientColorMode",
+ ", color: ",
+ "CategoricalColor",
+ " | ",
+ "ColorCode",
+ " | ",
+ "GradientColor",
+ ", getPaletteFn: (paletteId: string) => ",
+ "CategoricalPalette",
+ ", isDarkMode: boolean, index: number, total: number) => string"
],
- "path": "packages/kbn-coloring/src/color_manipulation/index.ts",
+ "path": "packages/kbn-coloring/src/shared_components/color_mapping/color/color_handling.ts",
"deprecated": false,
"trackAdoption": false,
"children": [
{
"parentPluginId": "@kbn/coloring",
- "id": "def-common.getColorAlpha.$1",
+ "id": "def-common.getAssignmentColor.$1",
+ "type": "CompoundType",
+ "tags": [],
+ "label": "colorMode",
+ "description": [],
+ "signature": [
+ "CategoricalColorMode",
+ " | ",
+ "GradientColorMode"
+ ],
+ "path": "packages/kbn-coloring/src/shared_components/color_mapping/color/color_handling.ts",
+ "deprecated": false,
+ "trackAdoption": false,
+ "isRequired": true
+ },
+ {
+ "parentPluginId": "@kbn/coloring",
+ "id": "def-common.getAssignmentColor.$2",
"type": "CompoundType",
"tags": [],
"label": "color",
"description": [],
"signature": [
- "string | null | undefined"
+ "CategoricalColor",
+ " | ",
+ "ColorCode",
+ " | ",
+ "GradientColor"
],
- "path": "packages/kbn-coloring/src/color_manipulation/index.ts",
+ "path": "packages/kbn-coloring/src/shared_components/color_mapping/color/color_handling.ts",
"deprecated": false,
"trackAdoption": false,
- "isRequired": false
+ "isRequired": true
+ },
+ {
+ "parentPluginId": "@kbn/coloring",
+ "id": "def-common.getAssignmentColor.$3",
+ "type": "Function",
+ "tags": [],
+ "label": "getPaletteFn",
+ "description": [],
+ "signature": [
+ "(paletteId: string) => ",
+ "CategoricalPalette"
+ ],
+ "path": "packages/kbn-coloring/src/shared_components/color_mapping/color/color_handling.ts",
+ "deprecated": false,
+ "trackAdoption": false,
+ "isRequired": true
+ },
+ {
+ "parentPluginId": "@kbn/coloring",
+ "id": "def-common.getAssignmentColor.$4",
+ "type": "boolean",
+ "tags": [],
+ "label": "isDarkMode",
+ "description": [],
+ "signature": [
+ "boolean"
+ ],
+ "path": "packages/kbn-coloring/src/shared_components/color_mapping/color/color_handling.ts",
+ "deprecated": false,
+ "trackAdoption": false,
+ "isRequired": true
+ },
+ {
+ "parentPluginId": "@kbn/coloring",
+ "id": "def-common.getAssignmentColor.$5",
+ "type": "number",
+ "tags": [],
+ "label": "index",
+ "description": [],
+ "signature": [
+ "number"
+ ],
+ "path": "packages/kbn-coloring/src/shared_components/color_mapping/color/color_handling.ts",
+ "deprecated": false,
+ "trackAdoption": false,
+ "isRequired": true
+ },
+ {
+ "parentPluginId": "@kbn/coloring",
+ "id": "def-common.getAssignmentColor.$6",
+ "type": "number",
+ "tags": [],
+ "label": "total",
+ "description": [],
+ "signature": [
+ "number"
+ ],
+ "path": "packages/kbn-coloring/src/shared_components/color_mapping/color/color_handling.ts",
+ "deprecated": false,
+ "trackAdoption": false,
+ "isRequired": true
}
],
"returnComment": [],
@@ -272,58 +556,68 @@
},
{
"parentPluginId": "@kbn/coloring",
- "id": "def-common.getDataMinMax",
+ "id": "def-common.getColor",
"type": "Function",
"tags": [],
- "label": "getDataMinMax",
+ "label": "getColor",
"description": [],
"signature": [
- "(rangeType: \"number\" | \"percent\" | undefined, dataBounds: ",
- {
- "pluginId": "@kbn/coloring",
- "scope": "common",
- "docId": "kibKbnColoringPluginApi",
- "section": "def-common.DataBounds",
- "text": "DataBounds"
- },
- ") => { min: number; max: number; }"
+ "(color: ",
+ "CategoricalColor",
+ " | ",
+ "ColorCode",
+ ", getPaletteFn: (paletteId: string) => ",
+ "CategoricalPalette",
+ ", isDarkMode: boolean) => string"
],
- "path": "packages/kbn-coloring/src/palettes/utils.ts",
+ "path": "packages/kbn-coloring/src/shared_components/color_mapping/color/color_handling.ts",
"deprecated": false,
"trackAdoption": false,
"children": [
{
"parentPluginId": "@kbn/coloring",
- "id": "def-common.getDataMinMax.$1",
+ "id": "def-common.getColor.$1",
"type": "CompoundType",
"tags": [],
- "label": "rangeType",
+ "label": "color",
"description": [],
"signature": [
- "\"number\" | \"percent\" | undefined"
+ "CategoricalColor",
+ " | ",
+ "ColorCode"
],
- "path": "packages/kbn-coloring/src/palettes/utils.ts",
+ "path": "packages/kbn-coloring/src/shared_components/color_mapping/color/color_handling.ts",
"deprecated": false,
"trackAdoption": false,
- "isRequired": false
+ "isRequired": true
},
{
"parentPluginId": "@kbn/coloring",
- "id": "def-common.getDataMinMax.$2",
- "type": "Object",
+ "id": "def-common.getColor.$2",
+ "type": "Function",
"tags": [],
- "label": "dataBounds",
+ "label": "getPaletteFn",
"description": [],
"signature": [
- {
- "pluginId": "@kbn/coloring",
- "scope": "common",
- "docId": "kibKbnColoringPluginApi",
- "section": "def-common.DataBounds",
- "text": "DataBounds"
- }
+ "(paletteId: string) => ",
+ "CategoricalPalette"
],
- "path": "packages/kbn-coloring/src/palettes/utils.ts",
+ "path": "packages/kbn-coloring/src/shared_components/color_mapping/color/color_handling.ts",
+ "deprecated": false,
+ "trackAdoption": false,
+ "isRequired": true
+ },
+ {
+ "parentPluginId": "@kbn/coloring",
+ "id": "def-common.getColor.$3",
+ "type": "boolean",
+ "tags": [],
+ "label": "isDarkMode",
+ "description": [],
+ "signature": [
+ "boolean"
+ ],
+ "path": "packages/kbn-coloring/src/shared_components/color_mapping/color/color_handling.ts",
"deprecated": false,
"trackAdoption": false,
"isRequired": true
@@ -334,36 +628,29 @@
},
{
"parentPluginId": "@kbn/coloring",
- "id": "def-common.getFallbackDataBounds",
+ "id": "def-common.getColorAlpha",
"type": "Function",
"tags": [],
- "label": "getFallbackDataBounds",
+ "label": "getColorAlpha",
"description": [],
"signature": [
- "(rangeType?: \"number\" | \"percent\" | undefined) => ",
- {
- "pluginId": "@kbn/coloring",
- "scope": "common",
- "docId": "kibKbnColoringPluginApi",
- "section": "def-common.DataBounds",
- "text": "DataBounds"
- }
+ "(color?: string | null | undefined) => number"
],
- "path": "packages/kbn-coloring/src/palettes/utils.ts",
+ "path": "packages/kbn-coloring/src/color_manipulation/index.ts",
"deprecated": false,
"trackAdoption": false,
"children": [
{
"parentPluginId": "@kbn/coloring",
- "id": "def-common.getFallbackDataBounds.$1",
+ "id": "def-common.getColorAlpha.$1",
"type": "CompoundType",
"tags": [],
- "label": "rangeType",
+ "label": "color",
"description": [],
"signature": [
- "\"number\" | \"percent\" | undefined"
+ "string | null | undefined"
],
- "path": "packages/kbn-coloring/src/palettes/utils.ts",
+ "path": "packages/kbn-coloring/src/color_manipulation/index.ts",
"deprecated": false,
"trackAdoption": false,
"isRequired": false
@@ -374,160 +661,147 @@
},
{
"parentPluginId": "@kbn/coloring",
- "id": "def-common.getPaletteStops",
+ "id": "def-common.getColorFactory",
"type": "Function",
"tags": [],
- "label": "getPaletteStops",
- "description": [
- "\nThis is a generic function to compute stops from the current parameters."
- ],
+ "label": "getColorFactory",
+ "description": [],
"signature": [
- "(palettes: ",
- {
- "pluginId": "@kbn/coloring",
- "scope": "common",
- "docId": "kibKbnColoringPluginApi",
- "section": "def-common.PaletteRegistry",
- "text": "PaletteRegistry"
- },
- ", activePaletteParams: ",
- {
- "pluginId": "@kbn/coloring",
- "scope": "common",
- "docId": "kibKbnColoringPluginApi",
- "section": "def-common.CustomPaletteParams",
- "text": "CustomPaletteParams"
- },
- ", {\n prevPalette,\n dataBounds,\n mapFromMinValue,\n defaultPaletteName,\n }: { prevPalette?: string | undefined; dataBounds: ",
+ "(model: ",
+ "Config",
+ ", getPaletteFn: (paletteId: string) => ",
+ "CategoricalPalette",
+ ", isDarkMode: boolean, data: ",
{
"pluginId": "@kbn/coloring",
"scope": "common",
"docId": "kibKbnColoringPluginApi",
- "section": "def-common.DataBounds",
- "text": "DataBounds"
+ "section": "def-common.ColorMappingInputData",
+ "text": "ColorMappingInputData"
},
- "; mapFromMinValue?: boolean | undefined; defaultPaletteName?: string | undefined; }) => { stop: number; color: string; }[]"
+ ") => (category: string | string[]) => string"
],
- "path": "packages/kbn-coloring/src/palettes/utils.ts",
+ "path": "packages/kbn-coloring/src/shared_components/color_mapping/color/color_handling.ts",
"deprecated": false,
"trackAdoption": false,
"children": [
{
"parentPluginId": "@kbn/coloring",
- "id": "def-common.getPaletteStops.$1",
+ "id": "def-common.getColorFactory.$1",
"type": "Object",
"tags": [],
- "label": "palettes",
+ "label": "model",
"description": [],
"signature": [
- {
- "pluginId": "@kbn/coloring",
- "scope": "common",
- "docId": "kibKbnColoringPluginApi",
- "section": "def-common.PaletteRegistry",
- "text": "PaletteRegistry"
- }
+ "Config"
],
- "path": "packages/kbn-coloring/src/palettes/utils.ts",
+ "path": "packages/kbn-coloring/src/shared_components/color_mapping/color/color_handling.ts",
"deprecated": false,
"trackAdoption": false,
"isRequired": true
},
{
"parentPluginId": "@kbn/coloring",
- "id": "def-common.getPaletteStops.$2",
- "type": "Object",
+ "id": "def-common.getColorFactory.$2",
+ "type": "Function",
"tags": [],
- "label": "activePaletteParams",
+ "label": "getPaletteFn",
+ "description": [],
+ "signature": [
+ "(paletteId: string) => ",
+ "CategoricalPalette"
+ ],
+ "path": "packages/kbn-coloring/src/shared_components/color_mapping/color/color_handling.ts",
+ "deprecated": false,
+ "trackAdoption": false,
+ "isRequired": true
+ },
+ {
+ "parentPluginId": "@kbn/coloring",
+ "id": "def-common.getColorFactory.$3",
+ "type": "boolean",
+ "tags": [],
+ "label": "isDarkMode",
+ "description": [],
+ "signature": [
+ "boolean"
+ ],
+ "path": "packages/kbn-coloring/src/shared_components/color_mapping/color/color_handling.ts",
+ "deprecated": false,
+ "trackAdoption": false,
+ "isRequired": true
+ },
+ {
+ "parentPluginId": "@kbn/coloring",
+ "id": "def-common.getColorFactory.$4",
+ "type": "CompoundType",
+ "tags": [],
+ "label": "data",
"description": [],
"signature": [
{
"pluginId": "@kbn/coloring",
"scope": "common",
"docId": "kibKbnColoringPluginApi",
- "section": "def-common.CustomPaletteParams",
- "text": "CustomPaletteParams"
+ "section": "def-common.ColorMappingInputData",
+ "text": "ColorMappingInputData"
}
],
- "path": "packages/kbn-coloring/src/palettes/utils.ts",
+ "path": "packages/kbn-coloring/src/shared_components/color_mapping/color/color_handling.ts",
+ "deprecated": false,
+ "trackAdoption": false,
+ "isRequired": true
+ }
+ ],
+ "returnComment": [],
+ "initialIsOpen": false
+ },
+ {
+ "parentPluginId": "@kbn/coloring",
+ "id": "def-common.getColorsFromMapping",
+ "type": "Function",
+ "tags": [],
+ "label": "getColorsFromMapping",
+ "description": [],
+ "signature": [
+ "(isDarkMode: boolean, colorMappings: ",
+ "Config",
+ " | undefined) => string[]"
+ ],
+ "path": "packages/kbn-coloring/src/shared_components/color_mapping/config/default_color_mapping.ts",
+ "deprecated": false,
+ "trackAdoption": false,
+ "children": [
+ {
+ "parentPluginId": "@kbn/coloring",
+ "id": "def-common.getColorsFromMapping.$1",
+ "type": "boolean",
+ "tags": [],
+ "label": "isDarkMode",
+ "description": [],
+ "signature": [
+ "boolean"
+ ],
+ "path": "packages/kbn-coloring/src/shared_components/color_mapping/config/default_color_mapping.ts",
"deprecated": false,
"trackAdoption": false,
"isRequired": true
},
{
"parentPluginId": "@kbn/coloring",
- "id": "def-common.getPaletteStops.$3",
+ "id": "def-common.getColorsFromMapping.$2",
"type": "Object",
"tags": [],
- "label": "{\n prevPalette,\n dataBounds,\n mapFromMinValue,\n defaultPaletteName,\n }",
+ "label": "colorMappings",
"description": [],
- "path": "packages/kbn-coloring/src/palettes/utils.ts",
+ "signature": [
+ "Config",
+ " | undefined"
+ ],
+ "path": "packages/kbn-coloring/src/shared_components/color_mapping/config/default_color_mapping.ts",
"deprecated": false,
"trackAdoption": false,
- "children": [
- {
- "parentPluginId": "@kbn/coloring",
- "id": "def-common.getPaletteStops.$3.prevPalette",
- "type": "string",
- "tags": [],
- "label": "prevPalette",
- "description": [],
- "signature": [
- "string | undefined"
- ],
- "path": "packages/kbn-coloring/src/palettes/utils.ts",
- "deprecated": false,
- "trackAdoption": false
- },
- {
- "parentPluginId": "@kbn/coloring",
- "id": "def-common.getPaletteStops.$3.dataBounds",
- "type": "Object",
- "tags": [],
- "label": "dataBounds",
- "description": [],
- "signature": [
- {
- "pluginId": "@kbn/coloring",
- "scope": "common",
- "docId": "kibKbnColoringPluginApi",
- "section": "def-common.DataBounds",
- "text": "DataBounds"
- }
- ],
- "path": "packages/kbn-coloring/src/palettes/utils.ts",
- "deprecated": false,
- "trackAdoption": false
- },
- {
- "parentPluginId": "@kbn/coloring",
- "id": "def-common.getPaletteStops.$3.mapFromMinValue",
- "type": "CompoundType",
- "tags": [],
- "label": "mapFromMinValue",
- "description": [],
- "signature": [
- "boolean | undefined"
- ],
- "path": "packages/kbn-coloring/src/palettes/utils.ts",
- "deprecated": false,
- "trackAdoption": false
- },
- {
- "parentPluginId": "@kbn/coloring",
- "id": "def-common.getPaletteStops.$3.defaultPaletteName",
- "type": "string",
- "tags": [],
- "label": "defaultPaletteName",
- "description": [],
- "signature": [
- "string | undefined"
- ],
- "path": "packages/kbn-coloring/src/palettes/utils.ts",
- "deprecated": false,
- "trackAdoption": false
- }
- ]
+ "isRequired": false
}
],
"returnComment": [],
@@ -535,29 +809,21 @@
},
{
"parentPluginId": "@kbn/coloring",
- "id": "def-common.getStepValue",
+ "id": "def-common.getDataMinMax",
"type": "Function",
"tags": [],
- "label": "getStepValue",
+ "label": "getDataMinMax",
"description": [],
"signature": [
- "(colorStops: ",
- {
- "pluginId": "@kbn/coloring",
- "scope": "common",
- "docId": "kibKbnColoringPluginApi",
- "section": "def-common.ColorStop",
- "text": "ColorStop"
- },
- "[], newColorStops: ",
+ "(rangeType: \"number\" | \"percent\" | undefined, dataBounds: ",
{
"pluginId": "@kbn/coloring",
"scope": "common",
"docId": "kibKbnColoringPluginApi",
- "section": "def-common.ColorStop",
- "text": "ColorStop"
+ "section": "def-common.DataBounds",
+ "text": "DataBounds"
},
- "[], max: number) => number"
+ ") => { min: number; max: number; }"
],
"path": "packages/kbn-coloring/src/palettes/utils.ts",
"deprecated": false,
@@ -565,57 +831,34 @@
"children": [
{
"parentPluginId": "@kbn/coloring",
- "id": "def-common.getStepValue.$1",
- "type": "Array",
+ "id": "def-common.getDataMinMax.$1",
+ "type": "CompoundType",
"tags": [],
- "label": "colorStops",
+ "label": "rangeType",
"description": [],
"signature": [
- {
- "pluginId": "@kbn/coloring",
- "scope": "common",
- "docId": "kibKbnColoringPluginApi",
- "section": "def-common.ColorStop",
- "text": "ColorStop"
- },
- "[]"
+ "\"number\" | \"percent\" | undefined"
],
"path": "packages/kbn-coloring/src/palettes/utils.ts",
"deprecated": false,
"trackAdoption": false,
- "isRequired": true
+ "isRequired": false
},
{
"parentPluginId": "@kbn/coloring",
- "id": "def-common.getStepValue.$2",
- "type": "Array",
+ "id": "def-common.getDataMinMax.$2",
+ "type": "Object",
"tags": [],
- "label": "newColorStops",
+ "label": "dataBounds",
"description": [],
"signature": [
{
"pluginId": "@kbn/coloring",
"scope": "common",
"docId": "kibKbnColoringPluginApi",
- "section": "def-common.ColorStop",
- "text": "ColorStop"
- },
- "[]"
- ],
- "path": "packages/kbn-coloring/src/palettes/utils.ts",
- "deprecated": false,
- "trackAdoption": false,
- "isRequired": true
- },
- {
- "parentPluginId": "@kbn/coloring",
- "id": "def-common.getStepValue.$3",
- "type": "number",
- "tags": [],
- "label": "max",
- "description": [],
- "signature": [
- "number"
+ "section": "def-common.DataBounds",
+ "text": "DataBounds"
+ }
],
"path": "packages/kbn-coloring/src/palettes/utils.ts",
"deprecated": false,
@@ -628,29 +871,36 @@
},
{
"parentPluginId": "@kbn/coloring",
- "id": "def-common.isValidColor",
+ "id": "def-common.getFallbackDataBounds",
"type": "Function",
"tags": [],
- "label": "isValidColor",
+ "label": "getFallbackDataBounds",
"description": [],
"signature": [
- "(colorString: string | undefined) => boolean"
+ "(rangeType?: \"number\" | \"percent\" | undefined) => ",
+ {
+ "pluginId": "@kbn/coloring",
+ "scope": "common",
+ "docId": "kibKbnColoringPluginApi",
+ "section": "def-common.DataBounds",
+ "text": "DataBounds"
+ }
],
- "path": "packages/kbn-coloring/src/color_manipulation/index.ts",
+ "path": "packages/kbn-coloring/src/palettes/utils.ts",
"deprecated": false,
"trackAdoption": false,
"children": [
{
"parentPluginId": "@kbn/coloring",
- "id": "def-common.isValidColor.$1",
- "type": "string",
+ "id": "def-common.getFallbackDataBounds.$1",
+ "type": "CompoundType",
"tags": [],
- "label": "colorString",
+ "label": "rangeType",
"description": [],
"signature": [
- "string | undefined"
+ "\"number\" | \"percent\" | undefined"
],
- "path": "packages/kbn-coloring/src/color_manipulation/index.ts",
+ "path": "packages/kbn-coloring/src/palettes/utils.ts",
"deprecated": false,
"trackAdoption": false,
"isRequired": false
@@ -661,44 +911,64 @@
},
{
"parentPluginId": "@kbn/coloring",
- "id": "def-common.makeColorWithAlpha",
+ "id": "def-common.getGradientColorScale",
"type": "Function",
"tags": [],
- "label": "makeColorWithAlpha",
+ "label": "getGradientColorScale",
"description": [],
"signature": [
- "(color: string, newAlpha: number) => chroma.Color"
+ "(colorMode: ",
+ "GradientColorMode",
+ ", getPaletteFn: (paletteId: string) => ",
+ "CategoricalPalette",
+ ", isDarkMode: boolean) => (value: number) => string"
],
- "path": "packages/kbn-coloring/src/color_manipulation/index.ts",
+ "path": "packages/kbn-coloring/src/shared_components/color_mapping/color/color_handling.ts",
"deprecated": false,
"trackAdoption": false,
"children": [
{
"parentPluginId": "@kbn/coloring",
- "id": "def-common.makeColorWithAlpha.$1",
- "type": "string",
+ "id": "def-common.getGradientColorScale.$1",
+ "type": "Object",
"tags": [],
- "label": "color",
+ "label": "colorMode",
"description": [],
"signature": [
- "string"
+ "GradientColorMode"
],
- "path": "packages/kbn-coloring/src/color_manipulation/index.ts",
+ "path": "packages/kbn-coloring/src/shared_components/color_mapping/color/color_handling.ts",
"deprecated": false,
"trackAdoption": false,
"isRequired": true
},
{
"parentPluginId": "@kbn/coloring",
- "id": "def-common.makeColorWithAlpha.$2",
- "type": "number",
+ "id": "def-common.getGradientColorScale.$2",
+ "type": "Function",
"tags": [],
- "label": "newAlpha",
+ "label": "getPaletteFn",
"description": [],
"signature": [
- "number"
+ "(paletteId: string) => ",
+ "CategoricalPalette"
],
- "path": "packages/kbn-coloring/src/color_manipulation/index.ts",
+ "path": "packages/kbn-coloring/src/shared_components/color_mapping/color/color_handling.ts",
+ "deprecated": false,
+ "trackAdoption": false,
+ "isRequired": true
+ },
+ {
+ "parentPluginId": "@kbn/coloring",
+ "id": "def-common.getGradientColorScale.$3",
+ "type": "boolean",
+ "tags": [],
+ "label": "isDarkMode",
+ "description": [],
+ "signature": [
+ "boolean"
+ ],
+ "path": "packages/kbn-coloring/src/shared_components/color_mapping/color/color_handling.ts",
"deprecated": false,
"trackAdoption": false,
"isRequired": true
@@ -709,21 +979,147 @@
},
{
"parentPluginId": "@kbn/coloring",
- "id": "def-common.remapStopsByNewInterval",
+ "id": "def-common.getPalette",
"type": "Function",
"tags": [],
- "label": "remapStopsByNewInterval",
+ "label": "getPalette",
+ "description": [
+ "\nThis function should be instanciated once at the root of the component with the available palettes and\na choosed default one and shared across components to keep a single point of truth of the available palettes and the default\none."
+ ],
+ "signature": [
+ "(palettes: Map, defaultPalette: ",
+ "CategoricalPalette",
+ ") => (paletteId: string) => ",
+ "CategoricalPalette"
+ ],
+ "path": "packages/kbn-coloring/src/shared_components/color_mapping/palettes/index.ts",
+ "deprecated": false,
+ "trackAdoption": false,
+ "children": [
+ {
+ "parentPluginId": "@kbn/coloring",
+ "id": "def-common.getPalette.$1",
+ "type": "Object",
+ "tags": [],
+ "label": "palettes",
+ "description": [],
+ "signature": [
+ "Map"
+ ],
+ "path": "packages/kbn-coloring/src/shared_components/color_mapping/palettes/index.ts",
+ "deprecated": false,
+ "trackAdoption": false,
+ "isRequired": true
+ },
+ {
+ "parentPluginId": "@kbn/coloring",
+ "id": "def-common.getPalette.$2",
+ "type": "Object",
+ "tags": [],
+ "label": "defaultPalette",
+ "description": [],
+ "signature": [
+ "CategoricalPalette"
+ ],
+ "path": "packages/kbn-coloring/src/shared_components/color_mapping/palettes/index.ts",
+ "deprecated": false,
+ "trackAdoption": false,
+ "isRequired": true
+ }
+ ],
+ "returnComment": [],
+ "initialIsOpen": false
+ },
+ {
+ "parentPluginId": "@kbn/coloring",
+ "id": "def-common.getPaletteColors",
+ "type": "Function",
+ "tags": [],
+ "label": "getPaletteColors",
"description": [],
"signature": [
- "(controlStops: ",
+ "(isDarkMode: boolean, colorMappings: ",
+ "Config",
+ " | undefined) => string[]"
+ ],
+ "path": "packages/kbn-coloring/src/shared_components/color_mapping/config/default_color_mapping.ts",
+ "deprecated": false,
+ "trackAdoption": false,
+ "children": [
+ {
+ "parentPluginId": "@kbn/coloring",
+ "id": "def-common.getPaletteColors.$1",
+ "type": "boolean",
+ "tags": [],
+ "label": "isDarkMode",
+ "description": [],
+ "signature": [
+ "boolean"
+ ],
+ "path": "packages/kbn-coloring/src/shared_components/color_mapping/config/default_color_mapping.ts",
+ "deprecated": false,
+ "trackAdoption": false,
+ "isRequired": true
+ },
+ {
+ "parentPluginId": "@kbn/coloring",
+ "id": "def-common.getPaletteColors.$2",
+ "type": "Object",
+ "tags": [],
+ "label": "colorMappings",
+ "description": [],
+ "signature": [
+ "Config",
+ " | undefined"
+ ],
+ "path": "packages/kbn-coloring/src/shared_components/color_mapping/config/default_color_mapping.ts",
+ "deprecated": false,
+ "trackAdoption": false,
+ "isRequired": false
+ }
+ ],
+ "returnComment": [],
+ "initialIsOpen": false
+ },
+ {
+ "parentPluginId": "@kbn/coloring",
+ "id": "def-common.getPaletteStops",
+ "type": "Function",
+ "tags": [],
+ "label": "getPaletteStops",
+ "description": [
+ "\nThis is a generic function to compute stops from the current parameters."
+ ],
+ "signature": [
+ "(palettes: ",
{
"pluginId": "@kbn/coloring",
"scope": "common",
"docId": "kibKbnColoringPluginApi",
- "section": "def-common.ColorStop",
- "text": "ColorStop"
+ "section": "def-common.PaletteRegistry",
+ "text": "PaletteRegistry"
},
- "[], {\n newInterval,\n oldInterval,\n newMin,\n oldMin,\n }: { newInterval: number; oldInterval: number; newMin: number; oldMin: number; }) => { color: string; stop: number; }[]"
+ ", activePaletteParams: ",
+ {
+ "pluginId": "@kbn/coloring",
+ "scope": "common",
+ "docId": "kibKbnColoringPluginApi",
+ "section": "def-common.CustomPaletteParams",
+ "text": "CustomPaletteParams"
+ },
+ ", {\n prevPalette,\n dataBounds,\n mapFromMinValue,\n defaultPaletteName,\n }: { prevPalette?: string | undefined; dataBounds: ",
+ {
+ "pluginId": "@kbn/coloring",
+ "scope": "common",
+ "docId": "kibKbnColoringPluginApi",
+ "section": "def-common.DataBounds",
+ "text": "DataBounds"
+ },
+ "; mapFromMinValue?: boolean | undefined; defaultPaletteName?: string | undefined; }) => { stop: number; color: string; }[]"
],
"path": "packages/kbn-coloring/src/palettes/utils.ts",
"deprecated": false,
@@ -731,20 +1127,19 @@
"children": [
{
"parentPluginId": "@kbn/coloring",
- "id": "def-common.remapStopsByNewInterval.$1",
- "type": "Array",
+ "id": "def-common.getPaletteStops.$1",
+ "type": "Object",
"tags": [],
- "label": "controlStops",
+ "label": "palettes",
"description": [],
"signature": [
{
"pluginId": "@kbn/coloring",
"scope": "common",
"docId": "kibKbnColoringPluginApi",
- "section": "def-common.ColorStop",
- "text": "ColorStop"
- },
- "[]"
+ "section": "def-common.PaletteRegistry",
+ "text": "PaletteRegistry"
+ }
],
"path": "packages/kbn-coloring/src/palettes/utils.ts",
"deprecated": false,
@@ -753,10 +1148,31 @@
},
{
"parentPluginId": "@kbn/coloring",
- "id": "def-common.remapStopsByNewInterval.$2",
+ "id": "def-common.getPaletteStops.$2",
"type": "Object",
"tags": [],
- "label": "{\n newInterval,\n oldInterval,\n newMin,\n oldMin,\n }",
+ "label": "activePaletteParams",
+ "description": [],
+ "signature": [
+ {
+ "pluginId": "@kbn/coloring",
+ "scope": "common",
+ "docId": "kibKbnColoringPluginApi",
+ "section": "def-common.CustomPaletteParams",
+ "text": "CustomPaletteParams"
+ }
+ ],
+ "path": "packages/kbn-coloring/src/palettes/utils.ts",
+ "deprecated": false,
+ "trackAdoption": false,
+ "isRequired": true
+ },
+ {
+ "parentPluginId": "@kbn/coloring",
+ "id": "def-common.getPaletteStops.$3",
+ "type": "Object",
+ "tags": [],
+ "label": "{\n prevPalette,\n dataBounds,\n mapFromMinValue,\n defaultPaletteName,\n }",
"description": [],
"path": "packages/kbn-coloring/src/palettes/utils.ts",
"deprecated": false,
@@ -764,44 +1180,62 @@
"children": [
{
"parentPluginId": "@kbn/coloring",
- "id": "def-common.remapStopsByNewInterval.$2.newInterval",
- "type": "number",
+ "id": "def-common.getPaletteStops.$3.prevPalette",
+ "type": "string",
"tags": [],
- "label": "newInterval",
+ "label": "prevPalette",
"description": [],
+ "signature": [
+ "string | undefined"
+ ],
"path": "packages/kbn-coloring/src/palettes/utils.ts",
"deprecated": false,
"trackAdoption": false
},
{
"parentPluginId": "@kbn/coloring",
- "id": "def-common.remapStopsByNewInterval.$2.oldInterval",
- "type": "number",
+ "id": "def-common.getPaletteStops.$3.dataBounds",
+ "type": "Object",
"tags": [],
- "label": "oldInterval",
+ "label": "dataBounds",
"description": [],
+ "signature": [
+ {
+ "pluginId": "@kbn/coloring",
+ "scope": "common",
+ "docId": "kibKbnColoringPluginApi",
+ "section": "def-common.DataBounds",
+ "text": "DataBounds"
+ }
+ ],
"path": "packages/kbn-coloring/src/palettes/utils.ts",
"deprecated": false,
"trackAdoption": false
},
{
"parentPluginId": "@kbn/coloring",
- "id": "def-common.remapStopsByNewInterval.$2.newMin",
- "type": "number",
+ "id": "def-common.getPaletteStops.$3.mapFromMinValue",
+ "type": "CompoundType",
"tags": [],
- "label": "newMin",
+ "label": "mapFromMinValue",
"description": [],
+ "signature": [
+ "boolean | undefined"
+ ],
"path": "packages/kbn-coloring/src/palettes/utils.ts",
"deprecated": false,
"trackAdoption": false
},
{
"parentPluginId": "@kbn/coloring",
- "id": "def-common.remapStopsByNewInterval.$2.oldMin",
- "type": "number",
+ "id": "def-common.getPaletteStops.$3.defaultPaletteName",
+ "type": "string",
"tags": [],
- "label": "oldMin",
+ "label": "defaultPaletteName",
"description": [],
+ "signature": [
+ "string | undefined"
+ ],
"path": "packages/kbn-coloring/src/palettes/utils.ts",
"deprecated": false,
"trackAdoption": false
@@ -814,13 +1248,13 @@
},
{
"parentPluginId": "@kbn/coloring",
- "id": "def-common.reversePalette",
+ "id": "def-common.getStepValue",
"type": "Function",
"tags": [],
- "label": "reversePalette",
+ "label": "getStepValue",
"description": [],
"signature": [
- "(paletteColorRepresentation: ",
+ "(colorStops: ",
{
"pluginId": "@kbn/coloring",
"scope": "common",
@@ -828,7 +1262,15 @@
"section": "def-common.ColorStop",
"text": "ColorStop"
},
- "[]) => { color: string; stop: number; }[]"
+ "[], newColorStops: ",
+ {
+ "pluginId": "@kbn/coloring",
+ "scope": "common",
+ "docId": "kibKbnColoringPluginApi",
+ "section": "def-common.ColorStop",
+ "text": "ColorStop"
+ },
+ "[], max: number) => number"
],
"path": "packages/kbn-coloring/src/palettes/utils.ts",
"deprecated": false,
@@ -836,10 +1278,10 @@
"children": [
{
"parentPluginId": "@kbn/coloring",
- "id": "def-common.reversePalette.$1",
+ "id": "def-common.getStepValue.$1",
"type": "Array",
"tags": [],
- "label": "paletteColorRepresentation",
+ "label": "colorStops",
"description": [],
"signature": [
{
@@ -855,87 +1297,13 @@
"deprecated": false,
"trackAdoption": false,
"isRequired": true
- }
- ],
- "returnComment": [],
- "initialIsOpen": false
- },
- {
- "parentPluginId": "@kbn/coloring",
- "id": "def-common.roundValue",
- "type": "Function",
- "tags": [],
- "label": "roundValue",
- "description": [],
- "signature": [
- "(value: number, fractionDigits: number) => number"
- ],
- "path": "packages/kbn-coloring/src/palettes/utils.ts",
- "deprecated": false,
- "trackAdoption": false,
- "children": [
+ },
{
"parentPluginId": "@kbn/coloring",
- "id": "def-common.roundValue.$1",
- "type": "number",
+ "id": "def-common.getStepValue.$2",
+ "type": "Array",
"tags": [],
- "label": "value",
- "description": [],
- "signature": [
- "number"
- ],
- "path": "packages/kbn-coloring/src/palettes/utils.ts",
- "deprecated": false,
- "trackAdoption": false,
- "isRequired": true
- },
- {
- "parentPluginId": "@kbn/coloring",
- "id": "def-common.roundValue.$2",
- "type": "number",
- "tags": [],
- "label": "fractionDigits",
- "description": [],
- "signature": [
- "number"
- ],
- "path": "packages/kbn-coloring/src/palettes/utils.ts",
- "deprecated": false,
- "trackAdoption": false,
- "isRequired": true
- }
- ],
- "returnComment": [],
- "initialIsOpen": false
- },
- {
- "parentPluginId": "@kbn/coloring",
- "id": "def-common.shiftPalette",
- "type": "Function",
- "tags": [],
- "label": "shiftPalette",
- "description": [],
- "signature": [
- "(stops: ",
- {
- "pluginId": "@kbn/coloring",
- "scope": "common",
- "docId": "kibKbnColoringPluginApi",
- "section": "def-common.ColorStop",
- "text": "ColorStop"
- },
- "[], max: number) => { stop: number; color: string; }[]"
- ],
- "path": "packages/kbn-coloring/src/palettes/utils.ts",
- "deprecated": false,
- "trackAdoption": false,
- "children": [
- {
- "parentPluginId": "@kbn/coloring",
- "id": "def-common.shiftPalette.$1",
- "type": "Array",
- "tags": [],
- "label": "stops",
+ "label": "newColorStops",
"description": [],
"signature": [
{
@@ -954,7 +1322,7 @@
},
{
"parentPluginId": "@kbn/coloring",
- "id": "def-common.shiftPalette.$2",
+ "id": "def-common.getStepValue.$3",
"type": "number",
"tags": [],
"label": "max",
@@ -970,268 +1338,317 @@
],
"returnComment": [],
"initialIsOpen": false
- }
- ],
- "interfaces": [
+ },
{
"parentPluginId": "@kbn/coloring",
- "id": "def-common.ChartColorConfiguration",
- "type": "Interface",
+ "id": "def-common.isValidColor",
+ "type": "Function",
"tags": [],
- "label": "ChartColorConfiguration",
- "description": [
- "\nInformation about the structure of a chart to determine the color of a series within it."
+ "label": "isValidColor",
+ "description": [],
+ "signature": [
+ "(colorString: string | undefined) => boolean"
],
- "path": "packages/kbn-coloring/src/palettes/types.ts",
+ "path": "packages/kbn-coloring/src/color_manipulation/index.ts",
"deprecated": false,
"trackAdoption": false,
"children": [
{
"parentPluginId": "@kbn/coloring",
- "id": "def-common.ChartColorConfiguration.totalSeries",
- "type": "number",
- "tags": [],
- "label": "totalSeries",
- "description": [
- "\nOverall number of series in the current chart"
- ],
- "signature": [
- "number | undefined"
- ],
- "path": "packages/kbn-coloring/src/palettes/types.ts",
- "deprecated": false,
- "trackAdoption": false
- },
- {
- "parentPluginId": "@kbn/coloring",
- "id": "def-common.ChartColorConfiguration.maxDepth",
- "type": "number",
- "tags": [],
- "label": "maxDepth",
- "description": [
- "\nMax nesting depth of the series tree"
- ],
- "signature": [
- "number | undefined"
- ],
- "path": "packages/kbn-coloring/src/palettes/types.ts",
- "deprecated": false,
- "trackAdoption": false
- },
- {
- "parentPluginId": "@kbn/coloring",
- "id": "def-common.ChartColorConfiguration.behindText",
- "type": "CompoundType",
- "tags": [],
- "label": "behindText",
- "description": [
- "\nFlag whether the color will be used behind text. The palette can use this information to\nadjust colors for better a11y. Might be ignored depending on the palette."
- ],
- "signature": [
- "boolean | undefined"
- ],
- "path": "packages/kbn-coloring/src/palettes/types.ts",
- "deprecated": false,
- "trackAdoption": false
- },
- {
- "parentPluginId": "@kbn/coloring",
- "id": "def-common.ChartColorConfiguration.syncColors",
- "type": "CompoundType",
+ "id": "def-common.isValidColor.$1",
+ "type": "string",
"tags": [],
- "label": "syncColors",
- "description": [
- "\nFlag whether a color assignment to a given key should be remembered and re-used the next time the key shows up.\nThis setting might be ignored based on the palette."
- ],
+ "label": "colorString",
+ "description": [],
"signature": [
- "boolean | undefined"
+ "string | undefined"
],
- "path": "packages/kbn-coloring/src/palettes/types.ts",
+ "path": "packages/kbn-coloring/src/color_manipulation/index.ts",
"deprecated": false,
- "trackAdoption": false
+ "trackAdoption": false,
+ "isRequired": false
}
],
+ "returnComment": [],
"initialIsOpen": false
},
{
"parentPluginId": "@kbn/coloring",
- "id": "def-common.ColorStop",
- "type": "Interface",
+ "id": "def-common.makeColorWithAlpha",
+ "type": "Function",
"tags": [],
- "label": "ColorStop",
+ "label": "makeColorWithAlpha",
"description": [],
- "path": "packages/kbn-coloring/src/palettes/types.ts",
+ "signature": [
+ "(color: string, newAlpha: number) => chroma.Color"
+ ],
+ "path": "packages/kbn-coloring/src/color_manipulation/index.ts",
"deprecated": false,
"trackAdoption": false,
"children": [
{
"parentPluginId": "@kbn/coloring",
- "id": "def-common.ColorStop.color",
+ "id": "def-common.makeColorWithAlpha.$1",
"type": "string",
"tags": [],
"label": "color",
"description": [],
- "path": "packages/kbn-coloring/src/palettes/types.ts",
+ "signature": [
+ "string"
+ ],
+ "path": "packages/kbn-coloring/src/color_manipulation/index.ts",
"deprecated": false,
- "trackAdoption": false
+ "trackAdoption": false,
+ "isRequired": true
},
{
"parentPluginId": "@kbn/coloring",
- "id": "def-common.ColorStop.stop",
+ "id": "def-common.makeColorWithAlpha.$2",
"type": "number",
"tags": [],
- "label": "stop",
+ "label": "newAlpha",
"description": [],
- "path": "packages/kbn-coloring/src/palettes/types.ts",
+ "signature": [
+ "number"
+ ],
+ "path": "packages/kbn-coloring/src/color_manipulation/index.ts",
"deprecated": false,
- "trackAdoption": false
+ "trackAdoption": false,
+ "isRequired": true
}
],
+ "returnComment": [],
"initialIsOpen": false
},
{
"parentPluginId": "@kbn/coloring",
- "id": "def-common.CustomPaletteParams",
- "type": "Interface",
+ "id": "def-common.remapStopsByNewInterval",
+ "type": "Function",
"tags": [],
- "label": "CustomPaletteParams",
+ "label": "remapStopsByNewInterval",
"description": [],
- "path": "packages/kbn-coloring/src/palettes/types.ts",
+ "signature": [
+ "(controlStops: ",
+ {
+ "pluginId": "@kbn/coloring",
+ "scope": "common",
+ "docId": "kibKbnColoringPluginApi",
+ "section": "def-common.ColorStop",
+ "text": "ColorStop"
+ },
+ "[], {\n newInterval,\n oldInterval,\n newMin,\n oldMin,\n }: { newInterval: number; oldInterval: number; newMin: number; oldMin: number; }) => { color: string; stop: number; }[]"
+ ],
+ "path": "packages/kbn-coloring/src/palettes/utils.ts",
"deprecated": false,
"trackAdoption": false,
"children": [
{
"parentPluginId": "@kbn/coloring",
- "id": "def-common.CustomPaletteParams.name",
- "type": "string",
- "tags": [],
- "label": "name",
- "description": [],
- "signature": [
- "string | undefined"
- ],
- "path": "packages/kbn-coloring/src/palettes/types.ts",
- "deprecated": false,
- "trackAdoption": false
- },
- {
- "parentPluginId": "@kbn/coloring",
- "id": "def-common.CustomPaletteParams.reverse",
- "type": "CompoundType",
- "tags": [],
- "label": "reverse",
- "description": [],
- "signature": [
- "boolean | undefined"
- ],
- "path": "packages/kbn-coloring/src/palettes/types.ts",
- "deprecated": false,
- "trackAdoption": false
- },
- {
- "parentPluginId": "@kbn/coloring",
- "id": "def-common.CustomPaletteParams.rangeType",
- "type": "CompoundType",
- "tags": [],
- "label": "rangeType",
- "description": [],
- "signature": [
- "\"number\" | \"percent\" | undefined"
- ],
- "path": "packages/kbn-coloring/src/palettes/types.ts",
- "deprecated": false,
- "trackAdoption": false
- },
- {
- "parentPluginId": "@kbn/coloring",
- "id": "def-common.CustomPaletteParams.continuity",
- "type": "CompoundType",
+ "id": "def-common.remapStopsByNewInterval.$1",
+ "type": "Array",
"tags": [],
- "label": "continuity",
+ "label": "controlStops",
"description": [],
"signature": [
{
"pluginId": "@kbn/coloring",
"scope": "common",
"docId": "kibKbnColoringPluginApi",
- "section": "def-common.PaletteContinuity",
- "text": "PaletteContinuity"
+ "section": "def-common.ColorStop",
+ "text": "ColorStop"
},
- " | undefined"
+ "[]"
],
- "path": "packages/kbn-coloring/src/palettes/types.ts",
+ "path": "packages/kbn-coloring/src/palettes/utils.ts",
"deprecated": false,
- "trackAdoption": false
+ "trackAdoption": false,
+ "isRequired": true
},
{
"parentPluginId": "@kbn/coloring",
- "id": "def-common.CustomPaletteParams.progression",
- "type": "string",
+ "id": "def-common.remapStopsByNewInterval.$2",
+ "type": "Object",
"tags": [],
- "label": "progression",
+ "label": "{\n newInterval,\n oldInterval,\n newMin,\n oldMin,\n }",
"description": [],
- "signature": [
- "\"fixed\" | undefined"
- ],
- "path": "packages/kbn-coloring/src/palettes/types.ts",
+ "path": "packages/kbn-coloring/src/palettes/utils.ts",
"deprecated": false,
- "trackAdoption": false
+ "trackAdoption": false,
+ "children": [
+ {
+ "parentPluginId": "@kbn/coloring",
+ "id": "def-common.remapStopsByNewInterval.$2.newInterval",
+ "type": "number",
+ "tags": [],
+ "label": "newInterval",
+ "description": [],
+ "path": "packages/kbn-coloring/src/palettes/utils.ts",
+ "deprecated": false,
+ "trackAdoption": false
+ },
+ {
+ "parentPluginId": "@kbn/coloring",
+ "id": "def-common.remapStopsByNewInterval.$2.oldInterval",
+ "type": "number",
+ "tags": [],
+ "label": "oldInterval",
+ "description": [],
+ "path": "packages/kbn-coloring/src/palettes/utils.ts",
+ "deprecated": false,
+ "trackAdoption": false
+ },
+ {
+ "parentPluginId": "@kbn/coloring",
+ "id": "def-common.remapStopsByNewInterval.$2.newMin",
+ "type": "number",
+ "tags": [],
+ "label": "newMin",
+ "description": [],
+ "path": "packages/kbn-coloring/src/palettes/utils.ts",
+ "deprecated": false,
+ "trackAdoption": false
+ },
+ {
+ "parentPluginId": "@kbn/coloring",
+ "id": "def-common.remapStopsByNewInterval.$2.oldMin",
+ "type": "number",
+ "tags": [],
+ "label": "oldMin",
+ "description": [],
+ "path": "packages/kbn-coloring/src/palettes/utils.ts",
+ "deprecated": false,
+ "trackAdoption": false
+ }
+ ]
+ }
+ ],
+ "returnComment": [],
+ "initialIsOpen": false
+ },
+ {
+ "parentPluginId": "@kbn/coloring",
+ "id": "def-common.reversePalette",
+ "type": "Function",
+ "tags": [],
+ "label": "reversePalette",
+ "description": [],
+ "signature": [
+ "(paletteColorRepresentation: ",
+ {
+ "pluginId": "@kbn/coloring",
+ "scope": "common",
+ "docId": "kibKbnColoringPluginApi",
+ "section": "def-common.ColorStop",
+ "text": "ColorStop"
},
+ "[]) => { color: string; stop: number; }[]"
+ ],
+ "path": "packages/kbn-coloring/src/palettes/utils.ts",
+ "deprecated": false,
+ "trackAdoption": false,
+ "children": [
{
"parentPluginId": "@kbn/coloring",
- "id": "def-common.CustomPaletteParams.rangeMin",
- "type": "number",
+ "id": "def-common.reversePalette.$1",
+ "type": "Array",
"tags": [],
- "label": "rangeMin",
+ "label": "paletteColorRepresentation",
"description": [],
"signature": [
- "number | undefined"
+ {
+ "pluginId": "@kbn/coloring",
+ "scope": "common",
+ "docId": "kibKbnColoringPluginApi",
+ "section": "def-common.ColorStop",
+ "text": "ColorStop"
+ },
+ "[]"
],
- "path": "packages/kbn-coloring/src/palettes/types.ts",
+ "path": "packages/kbn-coloring/src/palettes/utils.ts",
"deprecated": false,
- "trackAdoption": false
- },
+ "trackAdoption": false,
+ "isRequired": true
+ }
+ ],
+ "returnComment": [],
+ "initialIsOpen": false
+ },
+ {
+ "parentPluginId": "@kbn/coloring",
+ "id": "def-common.roundValue",
+ "type": "Function",
+ "tags": [],
+ "label": "roundValue",
+ "description": [],
+ "signature": [
+ "(value: number, fractionDigits: number) => number"
+ ],
+ "path": "packages/kbn-coloring/src/palettes/utils.ts",
+ "deprecated": false,
+ "trackAdoption": false,
+ "children": [
{
"parentPluginId": "@kbn/coloring",
- "id": "def-common.CustomPaletteParams.rangeMax",
+ "id": "def-common.roundValue.$1",
"type": "number",
"tags": [],
- "label": "rangeMax",
+ "label": "value",
"description": [],
"signature": [
- "number | undefined"
+ "number"
],
- "path": "packages/kbn-coloring/src/palettes/types.ts",
+ "path": "packages/kbn-coloring/src/palettes/utils.ts",
"deprecated": false,
- "trackAdoption": false
+ "trackAdoption": false,
+ "isRequired": true
},
{
"parentPluginId": "@kbn/coloring",
- "id": "def-common.CustomPaletteParams.stops",
- "type": "Array",
+ "id": "def-common.roundValue.$2",
+ "type": "number",
"tags": [],
- "label": "stops",
+ "label": "fractionDigits",
"description": [],
"signature": [
- {
- "pluginId": "@kbn/coloring",
- "scope": "common",
- "docId": "kibKbnColoringPluginApi",
- "section": "def-common.ColorStop",
- "text": "ColorStop"
- },
- "[] | undefined"
+ "number"
],
- "path": "packages/kbn-coloring/src/palettes/types.ts",
+ "path": "packages/kbn-coloring/src/palettes/utils.ts",
"deprecated": false,
- "trackAdoption": false
+ "trackAdoption": false,
+ "isRequired": true
+ }
+ ],
+ "returnComment": [],
+ "initialIsOpen": false
+ },
+ {
+ "parentPluginId": "@kbn/coloring",
+ "id": "def-common.shiftPalette",
+ "type": "Function",
+ "tags": [],
+ "label": "shiftPalette",
+ "description": [],
+ "signature": [
+ "(stops: ",
+ {
+ "pluginId": "@kbn/coloring",
+ "scope": "common",
+ "docId": "kibKbnColoringPluginApi",
+ "section": "def-common.ColorStop",
+ "text": "ColorStop"
},
+ "[], max: number) => { stop: number; color: string; }[]"
+ ],
+ "path": "packages/kbn-coloring/src/palettes/utils.ts",
+ "deprecated": false,
+ "trackAdoption": false,
+ "children": [
{
"parentPluginId": "@kbn/coloring",
- "id": "def-common.CustomPaletteParams.colorStops",
+ "id": "def-common.shiftPalette.$1",
"type": "Array",
"tags": [],
- "label": "colorStops",
+ "label": "stops",
"description": [],
"signature": [
{
@@ -1241,83 +1658,104 @@
"section": "def-common.ColorStop",
"text": "ColorStop"
},
- "[] | undefined"
- ],
- "path": "packages/kbn-coloring/src/palettes/types.ts",
- "deprecated": false,
- "trackAdoption": false
- },
- {
- "parentPluginId": "@kbn/coloring",
- "id": "def-common.CustomPaletteParams.steps",
- "type": "number",
- "tags": [],
- "label": "steps",
- "description": [],
- "signature": [
- "number | undefined"
+ "[]"
],
- "path": "packages/kbn-coloring/src/palettes/types.ts",
+ "path": "packages/kbn-coloring/src/palettes/utils.ts",
"deprecated": false,
- "trackAdoption": false
+ "trackAdoption": false,
+ "isRequired": true
},
{
"parentPluginId": "@kbn/coloring",
- "id": "def-common.CustomPaletteParams.maxSteps",
+ "id": "def-common.shiftPalette.$2",
"type": "number",
"tags": [],
- "label": "maxSteps",
+ "label": "max",
"description": [],
"signature": [
- "number | undefined"
+ "number"
],
- "path": "packages/kbn-coloring/src/palettes/types.ts",
+ "path": "packages/kbn-coloring/src/palettes/utils.ts",
"deprecated": false,
- "trackAdoption": false
+ "trackAdoption": false,
+ "isRequired": true
}
],
+ "returnComment": [],
"initialIsOpen": false
- },
+ }
+ ],
+ "interfaces": [
{
"parentPluginId": "@kbn/coloring",
- "id": "def-common.DataBounds",
+ "id": "def-common.ChartColorConfiguration",
"type": "Interface",
"tags": [],
- "label": "DataBounds",
- "description": [],
+ "label": "ChartColorConfiguration",
+ "description": [
+ "\nInformation about the structure of a chart to determine the color of a series within it."
+ ],
"path": "packages/kbn-coloring/src/palettes/types.ts",
"deprecated": false,
"trackAdoption": false,
"children": [
{
"parentPluginId": "@kbn/coloring",
- "id": "def-common.DataBounds.min",
+ "id": "def-common.ChartColorConfiguration.totalSeries",
"type": "number",
"tags": [],
- "label": "min",
- "description": [],
+ "label": "totalSeries",
+ "description": [
+ "\nOverall number of series in the current chart"
+ ],
+ "signature": [
+ "number | undefined"
+ ],
"path": "packages/kbn-coloring/src/palettes/types.ts",
"deprecated": false,
"trackAdoption": false
},
{
"parentPluginId": "@kbn/coloring",
- "id": "def-common.DataBounds.max",
+ "id": "def-common.ChartColorConfiguration.maxDepth",
"type": "number",
"tags": [],
- "label": "max",
- "description": [],
+ "label": "maxDepth",
+ "description": [
+ "\nMax nesting depth of the series tree"
+ ],
+ "signature": [
+ "number | undefined"
+ ],
"path": "packages/kbn-coloring/src/palettes/types.ts",
"deprecated": false,
"trackAdoption": false
},
{
"parentPluginId": "@kbn/coloring",
- "id": "def-common.DataBounds.fallback",
+ "id": "def-common.ChartColorConfiguration.behindText",
"type": "CompoundType",
"tags": [],
- "label": "fallback",
- "description": [],
+ "label": "behindText",
+ "description": [
+ "\nFlag whether the color will be used behind text. The palette can use this information to\nadjust colors for better a11y. Might be ignored depending on the palette."
+ ],
+ "signature": [
+ "boolean | undefined"
+ ],
+ "path": "packages/kbn-coloring/src/palettes/types.ts",
+ "deprecated": false,
+ "trackAdoption": false
+ },
+ {
+ "parentPluginId": "@kbn/coloring",
+ "id": "def-common.ChartColorConfiguration.syncColors",
+ "type": "CompoundType",
+ "tags": [],
+ "label": "syncColors",
+ "description": [
+ "\nFlag whether a color assignment to a given key should be remembered and re-used the next time the key shows up.\nThis setting might be ignored based on the palette."
+ ],
"signature": [
"boolean | undefined"
],
@@ -1330,392 +1768,191 @@
},
{
"parentPluginId": "@kbn/coloring",
- "id": "def-common.PaletteDefinition",
+ "id": "def-common.ColorMappingProps",
"type": "Interface",
"tags": [],
- "label": "PaletteDefinition",
+ "label": "ColorMappingProps",
"description": [
- "\nDefinition of a global palette.\n\nA palette controls the appearance of Lens charts on an editor level.\nThe palette wont get reset when switching charts.\n\nA palette can hold internal state (e.g. for customizations) and also includes\nan editor component to edit the internal state."
- ],
- "signature": [
- {
- "pluginId": "@kbn/coloring",
- "scope": "common",
- "docId": "kibKbnColoringPluginApi",
- "section": "def-common.PaletteDefinition",
- "text": "PaletteDefinition"
- },
- ""
+ "\nThe props of the CategoricalColorMapping component"
],
- "path": "packages/kbn-coloring/src/palettes/types.ts",
+ "path": "packages/kbn-coloring/src/shared_components/color_mapping/categorical_color_mapping.tsx",
"deprecated": false,
"trackAdoption": false,
"children": [
{
"parentPluginId": "@kbn/coloring",
- "id": "def-common.PaletteDefinition.id",
- "type": "string",
+ "id": "def-common.ColorMappingProps.model",
+ "type": "Object",
"tags": [],
- "label": "id",
+ "label": "model",
"description": [
- "\nUnique id of the palette (this will be persisted along with the visualization state)"
+ "The initial color mapping model, usually coming from a the visualization saved object"
],
- "path": "packages/kbn-coloring/src/palettes/types.ts",
+ "signature": [
+ "Config"
+ ],
+ "path": "packages/kbn-coloring/src/shared_components/color_mapping/categorical_color_mapping.tsx",
"deprecated": false,
"trackAdoption": false
},
{
"parentPluginId": "@kbn/coloring",
- "id": "def-common.PaletteDefinition.title",
- "type": "string",
+ "id": "def-common.ColorMappingProps.palettes",
+ "type": "Object",
"tags": [],
- "label": "title",
+ "label": "palettes",
"description": [
- "\nUser facing title (should be i18n-ized)"
+ "A map of paletteId and palette configuration"
],
- "path": "packages/kbn-coloring/src/palettes/types.ts",
+ "signature": [
+ "Map"
+ ],
+ "path": "packages/kbn-coloring/src/shared_components/color_mapping/categorical_color_mapping.tsx",
"deprecated": false,
"trackAdoption": false
},
{
"parentPluginId": "@kbn/coloring",
- "id": "def-common.PaletteDefinition.internal",
+ "id": "def-common.ColorMappingProps.data",
"type": "CompoundType",
"tags": [],
- "label": "internal",
+ "label": "data",
"description": [
- "\nFlag indicating whether users should be able to pick this palette manually."
+ "A data description of what needs to be colored"
],
"signature": [
- "boolean | undefined"
+ "{ type: \"categories\"; categories: (string | string[])[]; } | { type: \"ranges\"; min: number; max: number; bins: number; }"
],
- "path": "packages/kbn-coloring/src/palettes/types.ts",
+ "path": "packages/kbn-coloring/src/shared_components/color_mapping/categorical_color_mapping.tsx",
"deprecated": false,
"trackAdoption": false
},
{
"parentPluginId": "@kbn/coloring",
- "id": "def-common.PaletteDefinition.toExpression",
- "type": "Function",
+ "id": "def-common.ColorMappingProps.isDarkMode",
+ "type": "boolean",
"tags": [],
- "label": "toExpression",
+ "label": "isDarkMode",
"description": [
- "\nSerialize the internal state of the palette into an expression function.\nThis function should be used to pass the palette to the expression function applying color and other styles"
- ],
- "signature": [
- "(state?: T | undefined) => ",
- {
- "pluginId": "@kbn/interpreter",
- "scope": "common",
- "docId": "kibKbnInterpreterPluginApi",
- "section": "def-common.Ast",
- "text": "Ast"
- }
+ "Theme dark mode"
],
- "path": "packages/kbn-coloring/src/palettes/types.ts",
+ "path": "packages/kbn-coloring/src/shared_components/color_mapping/categorical_color_mapping.tsx",
"deprecated": false,
- "trackAdoption": false,
- "children": [
- {
- "parentPluginId": "@kbn/coloring",
- "id": "def-common.PaletteDefinition.toExpression.$1",
- "type": "Uncategorized",
- "tags": [],
- "label": "state",
- "description": [
- "The internal state of the palette"
- ],
- "signature": [
- "T | undefined"
- ],
- "path": "packages/kbn-coloring/src/palettes/types.ts",
- "deprecated": false,
- "trackAdoption": false,
- "isRequired": false
- }
- ],
- "returnComment": []
+ "trackAdoption": false
},
{
"parentPluginId": "@kbn/coloring",
- "id": "def-common.PaletteDefinition.getCategoricalColor",
- "type": "Function",
+ "id": "def-common.ColorMappingProps.specialTokens",
+ "type": "Object",
"tags": [],
- "label": "getCategoricalColor",
+ "label": "specialTokens",
"description": [
- "\nColor a series according to the internal rules of the palette."
+ "A map between original and formatted tokens used to handle special cases, like the Other bucket and the empty bucket"
],
"signature": [
- "(series: ",
- {
- "pluginId": "@kbn/coloring",
- "scope": "common",
- "docId": "kibKbnColoringPluginApi",
- "section": "def-common.SeriesLayer",
- "text": "SeriesLayer"
- },
- "[], chartConfiguration?: ",
- {
- "pluginId": "@kbn/coloring",
- "scope": "common",
- "docId": "kibKbnColoringPluginApi",
- "section": "def-common.ChartColorConfiguration",
- "text": "ChartColorConfiguration"
- },
- " | undefined, state?: T | undefined) => string | null"
+ "Map"
],
- "path": "packages/kbn-coloring/src/palettes/types.ts",
+ "path": "packages/kbn-coloring/src/shared_components/color_mapping/categorical_color_mapping.tsx",
"deprecated": false,
- "trackAdoption": false,
- "children": [
- {
- "parentPluginId": "@kbn/coloring",
- "id": "def-common.PaletteDefinition.getCategoricalColor.$1",
- "type": "Array",
- "tags": [],
- "label": "series",
- "description": [
- "The current series along with its ancestors."
- ],
- "signature": [
- {
- "pluginId": "@kbn/coloring",
- "scope": "common",
- "docId": "kibKbnColoringPluginApi",
- "section": "def-common.SeriesLayer",
- "text": "SeriesLayer"
- },
- "[]"
- ],
- "path": "packages/kbn-coloring/src/palettes/types.ts",
- "deprecated": false,
- "trackAdoption": false,
- "isRequired": true
- },
- {
- "parentPluginId": "@kbn/coloring",
- "id": "def-common.PaletteDefinition.getCategoricalColor.$2",
- "type": "Object",
- "tags": [],
- "label": "chartConfiguration",
- "description": [],
- "signature": [
- {
- "pluginId": "@kbn/coloring",
- "scope": "common",
- "docId": "kibKbnColoringPluginApi",
- "section": "def-common.ChartColorConfiguration",
- "text": "ChartColorConfiguration"
- },
- " | undefined"
- ],
- "path": "packages/kbn-coloring/src/palettes/types.ts",
- "deprecated": false,
- "trackAdoption": false,
- "isRequired": false
- },
- {
- "parentPluginId": "@kbn/coloring",
- "id": "def-common.PaletteDefinition.getCategoricalColor.$3",
- "type": "Uncategorized",
- "tags": [],
- "label": "state",
- "description": [
- "The internal state of the palette"
- ],
- "signature": [
- "T | undefined"
- ],
- "path": "packages/kbn-coloring/src/palettes/types.ts",
- "deprecated": false,
- "trackAdoption": false,
- "isRequired": false
- }
- ],
- "returnComment": []
+ "trackAdoption": false
},
{
"parentPluginId": "@kbn/coloring",
- "id": "def-common.PaletteDefinition.getCategoricalColors",
+ "id": "def-common.ColorMappingProps.onModelUpdate",
"type": "Function",
"tags": [],
- "label": "getCategoricalColors",
+ "label": "onModelUpdate",
"description": [
- "\nGet a spectrum of colors of the current palette.\nThis can be used if the chart wants to control color assignment locally."
+ "A function called at every change in the model"
],
"signature": [
- "(size: number, state?: T | undefined) => string[]"
+ "(model: ",
+ "Config",
+ ") => void"
],
- "path": "packages/kbn-coloring/src/palettes/types.ts",
+ "path": "packages/kbn-coloring/src/shared_components/color_mapping/categorical_color_mapping.tsx",
"deprecated": false,
"trackAdoption": false,
"children": [
{
"parentPluginId": "@kbn/coloring",
- "id": "def-common.PaletteDefinition.getCategoricalColors.$1",
- "type": "number",
+ "id": "def-common.ColorMappingProps.onModelUpdate.$1",
+ "type": "Object",
"tags": [],
- "label": "size",
+ "label": "model",
"description": [],
"signature": [
- "number"
+ "Config"
],
- "path": "packages/kbn-coloring/src/palettes/types.ts",
+ "path": "packages/kbn-coloring/src/shared_components/color_mapping/categorical_color_mapping.tsx",
"deprecated": false,
"trackAdoption": false,
"isRequired": true
- },
- {
- "parentPluginId": "@kbn/coloring",
- "id": "def-common.PaletteDefinition.getCategoricalColors.$2",
- "type": "Uncategorized",
- "tags": [],
- "label": "state",
- "description": [],
- "signature": [
- "T | undefined"
- ],
- "path": "packages/kbn-coloring/src/palettes/types.ts",
- "deprecated": false,
- "trackAdoption": false,
- "isRequired": false
}
],
"returnComment": []
- },
+ }
+ ],
+ "initialIsOpen": false
+ },
+ {
+ "parentPluginId": "@kbn/coloring",
+ "id": "def-common.ColorStop",
+ "type": "Interface",
+ "tags": [],
+ "label": "ColorStop",
+ "description": [],
+ "path": "packages/kbn-coloring/src/palettes/types.ts",
+ "deprecated": false,
+ "trackAdoption": false,
+ "children": [
{
"parentPluginId": "@kbn/coloring",
- "id": "def-common.PaletteDefinition.canDynamicColoring",
- "type": "CompoundType",
+ "id": "def-common.ColorStop.color",
+ "type": "string",
"tags": [],
- "label": "canDynamicColoring",
- "description": [
- "\nDefine whether a palette supports dynamic coloring (i.e. gradient colors mapped to number values)"
- ],
- "signature": [
- "boolean | undefined"
- ],
+ "label": "color",
+ "description": [],
"path": "packages/kbn-coloring/src/palettes/types.ts",
"deprecated": false,
"trackAdoption": false
},
{
"parentPluginId": "@kbn/coloring",
- "id": "def-common.PaletteDefinition.getColorForValue",
- "type": "Function",
+ "id": "def-common.ColorStop.stop",
+ "type": "number",
"tags": [],
- "label": "getColorForValue",
- "description": [
- "\nGet the assigned color for the given value based on its data domain and state settings.\nThis can be used for dynamic coloring based on uniform color distribution or custom stops."
- ],
- "signature": [
- "((value: number | undefined, state: T, { min, max }: { min: number; max: number; }) => string | undefined) | undefined"
- ],
+ "label": "stop",
+ "description": [],
"path": "packages/kbn-coloring/src/palettes/types.ts",
"deprecated": false,
- "trackAdoption": false,
- "children": [
- {
- "parentPluginId": "@kbn/coloring",
- "id": "def-common.PaletteDefinition.getColorForValue.$1",
- "type": "number",
- "tags": [],
- "label": "value",
- "description": [],
- "signature": [
- "number | undefined"
- ],
- "path": "packages/kbn-coloring/src/palettes/types.ts",
- "deprecated": false,
- "trackAdoption": false,
- "isRequired": false
- },
- {
- "parentPluginId": "@kbn/coloring",
- "id": "def-common.PaletteDefinition.getColorForValue.$2",
- "type": "Uncategorized",
- "tags": [],
- "label": "state",
- "description": [],
- "signature": [
- "T"
- ],
- "path": "packages/kbn-coloring/src/palettes/types.ts",
- "deprecated": false,
- "trackAdoption": false,
- "isRequired": true
- },
- {
- "parentPluginId": "@kbn/coloring",
- "id": "def-common.PaletteDefinition.getColorForValue.$3",
- "type": "Object",
- "tags": [],
- "label": "{ min, max }",
- "description": [],
- "path": "packages/kbn-coloring/src/palettes/types.ts",
- "deprecated": false,
- "trackAdoption": false,
- "children": [
- {
- "parentPluginId": "@kbn/coloring",
- "id": "def-common.PaletteDefinition.getColorForValue.$3.min",
- "type": "number",
- "tags": [],
- "label": "min",
- "description": [],
- "path": "packages/kbn-coloring/src/palettes/types.ts",
- "deprecated": false,
- "trackAdoption": false
- },
- {
- "parentPluginId": "@kbn/coloring",
- "id": "def-common.PaletteDefinition.getColorForValue.$3.max",
- "type": "number",
- "tags": [],
- "label": "max",
- "description": [],
- "path": "packages/kbn-coloring/src/palettes/types.ts",
- "deprecated": false,
- "trackAdoption": false
- }
- ]
- }
- ],
- "returnComment": []
+ "trackAdoption": false
}
],
"initialIsOpen": false
},
{
"parentPluginId": "@kbn/coloring",
- "id": "def-common.PaletteOutput",
+ "id": "def-common.CustomPaletteParams",
"type": "Interface",
"tags": [],
- "label": "PaletteOutput",
+ "label": "CustomPaletteParams",
"description": [],
- "signature": [
- {
- "pluginId": "@kbn/coloring",
- "scope": "common",
- "docId": "kibKbnColoringPluginApi",
- "section": "def-common.PaletteOutput",
- "text": "PaletteOutput"
- },
- ""
- ],
"path": "packages/kbn-coloring/src/palettes/types.ts",
"deprecated": false,
"trackAdoption": false,
"children": [
{
"parentPluginId": "@kbn/coloring",
- "id": "def-common.PaletteOutput.type",
- "type": "CompoundType",
+ "id": "def-common.CustomPaletteParams.name",
+ "type": "string",
"tags": [],
- "label": "type",
+ "label": "name",
"description": [],
"signature": [
- "\"palette\" | \"system_palette\""
+ "string | undefined"
],
"path": "packages/kbn-coloring/src/palettes/types.ts",
"deprecated": false,
@@ -1723,131 +1960,132 @@
},
{
"parentPluginId": "@kbn/coloring",
- "id": "def-common.PaletteOutput.name",
- "type": "string",
+ "id": "def-common.CustomPaletteParams.reverse",
+ "type": "CompoundType",
"tags": [],
- "label": "name",
+ "label": "reverse",
"description": [],
+ "signature": [
+ "boolean | undefined"
+ ],
"path": "packages/kbn-coloring/src/palettes/types.ts",
"deprecated": false,
"trackAdoption": false
},
{
"parentPluginId": "@kbn/coloring",
- "id": "def-common.PaletteOutput.params",
- "type": "Uncategorized",
+ "id": "def-common.CustomPaletteParams.rangeType",
+ "type": "CompoundType",
"tags": [],
- "label": "params",
+ "label": "rangeType",
"description": [],
"signature": [
- "T | undefined"
+ "\"number\" | \"percent\" | undefined"
],
"path": "packages/kbn-coloring/src/palettes/types.ts",
"deprecated": false,
"trackAdoption": false
- }
- ],
- "initialIsOpen": false
- },
- {
- "parentPluginId": "@kbn/coloring",
- "id": "def-common.PaletteRegistry",
- "type": "Interface",
- "tags": [],
- "label": "PaletteRegistry",
- "description": [],
- "path": "packages/kbn-coloring/src/palettes/types.ts",
- "deprecated": false,
- "trackAdoption": false,
- "children": [
+ },
{
"parentPluginId": "@kbn/coloring",
- "id": "def-common.PaletteRegistry.get",
- "type": "Function",
+ "id": "def-common.CustomPaletteParams.continuity",
+ "type": "CompoundType",
"tags": [],
- "label": "get",
+ "label": "continuity",
"description": [],
"signature": [
- "(name: string) => ",
{
"pluginId": "@kbn/coloring",
"scope": "common",
"docId": "kibKbnColoringPluginApi",
- "section": "def-common.PaletteDefinition",
- "text": "PaletteDefinition"
+ "section": "def-common.PaletteContinuity",
+ "text": "PaletteContinuity"
},
- ""
+ " | undefined"
],
"path": "packages/kbn-coloring/src/palettes/types.ts",
"deprecated": false,
- "trackAdoption": false,
- "children": [
- {
- "parentPluginId": "@kbn/coloring",
- "id": "def-common.PaletteRegistry.get.$1",
- "type": "string",
- "tags": [],
- "label": "name",
- "description": [],
- "signature": [
- "string"
- ],
- "path": "packages/kbn-coloring/src/palettes/types.ts",
- "deprecated": false,
- "trackAdoption": false,
- "isRequired": true
- }
+ "trackAdoption": false
+ },
+ {
+ "parentPluginId": "@kbn/coloring",
+ "id": "def-common.CustomPaletteParams.progression",
+ "type": "string",
+ "tags": [],
+ "label": "progression",
+ "description": [],
+ "signature": [
+ "\"fixed\" | undefined"
],
- "returnComment": []
+ "path": "packages/kbn-coloring/src/palettes/types.ts",
+ "deprecated": false,
+ "trackAdoption": false
},
{
"parentPluginId": "@kbn/coloring",
- "id": "def-common.PaletteRegistry.getAll",
- "type": "Function",
+ "id": "def-common.CustomPaletteParams.rangeMin",
+ "type": "number",
"tags": [],
- "label": "getAll",
+ "label": "rangeMin",
+ "description": [],
+ "signature": [
+ "number | undefined"
+ ],
+ "path": "packages/kbn-coloring/src/palettes/types.ts",
+ "deprecated": false,
+ "trackAdoption": false
+ },
+ {
+ "parentPluginId": "@kbn/coloring",
+ "id": "def-common.CustomPaletteParams.rangeMax",
+ "type": "number",
+ "tags": [],
+ "label": "rangeMax",
+ "description": [],
+ "signature": [
+ "number | undefined"
+ ],
+ "path": "packages/kbn-coloring/src/palettes/types.ts",
+ "deprecated": false,
+ "trackAdoption": false
+ },
+ {
+ "parentPluginId": "@kbn/coloring",
+ "id": "def-common.CustomPaletteParams.stops",
+ "type": "Array",
+ "tags": [],
+ "label": "stops",
"description": [],
"signature": [
- "() => ",
{
"pluginId": "@kbn/coloring",
"scope": "common",
"docId": "kibKbnColoringPluginApi",
- "section": "def-common.PaletteDefinition",
- "text": "PaletteDefinition"
+ "section": "def-common.ColorStop",
+ "text": "ColorStop"
},
- "[]"
+ "[] | undefined"
],
"path": "packages/kbn-coloring/src/palettes/types.ts",
"deprecated": false,
- "trackAdoption": false,
- "children": [],
- "returnComment": []
- }
- ],
- "initialIsOpen": false
- },
- {
- "parentPluginId": "@kbn/coloring",
- "id": "def-common.SeriesLayer",
- "type": "Interface",
- "tags": [],
- "label": "SeriesLayer",
- "description": [
- "\nInformation about a series in a chart used to determine its color.\nSeries layers can be nested, this means each series layer can have an ancestor."
- ],
- "path": "packages/kbn-coloring/src/palettes/types.ts",
- "deprecated": false,
- "trackAdoption": false,
- "children": [
+ "trackAdoption": false
+ },
{
"parentPluginId": "@kbn/coloring",
- "id": "def-common.SeriesLayer.name",
- "type": "string",
+ "id": "def-common.CustomPaletteParams.colorStops",
+ "type": "Array",
"tags": [],
- "label": "name",
- "description": [
- "\nName of the series (can be used for lookup-based coloring)"
+ "label": "colorStops",
+ "description": [],
+ "signature": [
+ {
+ "pluginId": "@kbn/coloring",
+ "scope": "common",
+ "docId": "kibKbnColoringPluginApi",
+ "section": "def-common.ColorStop",
+ "text": "ColorStop"
+ },
+ "[] | undefined"
],
"path": "packages/kbn-coloring/src/palettes/types.ts",
"deprecated": false,
@@ -1855,12 +2093,13 @@
},
{
"parentPluginId": "@kbn/coloring",
- "id": "def-common.SeriesLayer.rankAtDepth",
+ "id": "def-common.CustomPaletteParams.steps",
"type": "number",
"tags": [],
- "label": "rankAtDepth",
- "description": [
- "\nRank of the series compared to siblings with the same ancestor"
+ "label": "steps",
+ "description": [],
+ "signature": [
+ "number | undefined"
],
"path": "packages/kbn-coloring/src/palettes/types.ts",
"deprecated": false,
@@ -1868,11 +2107,616 @@
},
{
"parentPluginId": "@kbn/coloring",
- "id": "def-common.SeriesLayer.totalSeriesAtDepth",
+ "id": "def-common.CustomPaletteParams.maxSteps",
"type": "number",
"tags": [],
- "label": "totalSeriesAtDepth",
- "description": [
+ "label": "maxSteps",
+ "description": [],
+ "signature": [
+ "number | undefined"
+ ],
+ "path": "packages/kbn-coloring/src/palettes/types.ts",
+ "deprecated": false,
+ "trackAdoption": false
+ }
+ ],
+ "initialIsOpen": false
+ },
+ {
+ "parentPluginId": "@kbn/coloring",
+ "id": "def-common.DataBounds",
+ "type": "Interface",
+ "tags": [],
+ "label": "DataBounds",
+ "description": [],
+ "path": "packages/kbn-coloring/src/palettes/types.ts",
+ "deprecated": false,
+ "trackAdoption": false,
+ "children": [
+ {
+ "parentPluginId": "@kbn/coloring",
+ "id": "def-common.DataBounds.min",
+ "type": "number",
+ "tags": [],
+ "label": "min",
+ "description": [],
+ "path": "packages/kbn-coloring/src/palettes/types.ts",
+ "deprecated": false,
+ "trackAdoption": false
+ },
+ {
+ "parentPluginId": "@kbn/coloring",
+ "id": "def-common.DataBounds.max",
+ "type": "number",
+ "tags": [],
+ "label": "max",
+ "description": [],
+ "path": "packages/kbn-coloring/src/palettes/types.ts",
+ "deprecated": false,
+ "trackAdoption": false
+ },
+ {
+ "parentPluginId": "@kbn/coloring",
+ "id": "def-common.DataBounds.fallback",
+ "type": "CompoundType",
+ "tags": [],
+ "label": "fallback",
+ "description": [],
+ "signature": [
+ "boolean | undefined"
+ ],
+ "path": "packages/kbn-coloring/src/palettes/types.ts",
+ "deprecated": false,
+ "trackAdoption": false
+ }
+ ],
+ "initialIsOpen": false
+ },
+ {
+ "parentPluginId": "@kbn/coloring",
+ "id": "def-common.PaletteDefinition",
+ "type": "Interface",
+ "tags": [],
+ "label": "PaletteDefinition",
+ "description": [
+ "\nDefinition of a global palette.\n\nA palette controls the appearance of Lens charts on an editor level.\nThe palette wont get reset when switching charts.\n\nA palette can hold internal state (e.g. for customizations) and also includes\nan editor component to edit the internal state."
+ ],
+ "signature": [
+ {
+ "pluginId": "@kbn/coloring",
+ "scope": "common",
+ "docId": "kibKbnColoringPluginApi",
+ "section": "def-common.PaletteDefinition",
+ "text": "PaletteDefinition"
+ },
+ ""
+ ],
+ "path": "packages/kbn-coloring/src/palettes/types.ts",
+ "deprecated": false,
+ "trackAdoption": false,
+ "children": [
+ {
+ "parentPluginId": "@kbn/coloring",
+ "id": "def-common.PaletteDefinition.id",
+ "type": "string",
+ "tags": [],
+ "label": "id",
+ "description": [
+ "\nUnique id of the palette (this will be persisted along with the visualization state)"
+ ],
+ "path": "packages/kbn-coloring/src/palettes/types.ts",
+ "deprecated": false,
+ "trackAdoption": false
+ },
+ {
+ "parentPluginId": "@kbn/coloring",
+ "id": "def-common.PaletteDefinition.title",
+ "type": "string",
+ "tags": [],
+ "label": "title",
+ "description": [
+ "\nUser facing title (should be i18n-ized)"
+ ],
+ "path": "packages/kbn-coloring/src/palettes/types.ts",
+ "deprecated": false,
+ "trackAdoption": false
+ },
+ {
+ "parentPluginId": "@kbn/coloring",
+ "id": "def-common.PaletteDefinition.internal",
+ "type": "CompoundType",
+ "tags": [],
+ "label": "internal",
+ "description": [
+ "\nFlag indicating whether users should be able to pick this palette manually."
+ ],
+ "signature": [
+ "boolean | undefined"
+ ],
+ "path": "packages/kbn-coloring/src/palettes/types.ts",
+ "deprecated": false,
+ "trackAdoption": false
+ },
+ {
+ "parentPluginId": "@kbn/coloring",
+ "id": "def-common.PaletteDefinition.toExpression",
+ "type": "Function",
+ "tags": [],
+ "label": "toExpression",
+ "description": [
+ "\nSerialize the internal state of the palette into an expression function.\nThis function should be used to pass the palette to the expression function applying color and other styles"
+ ],
+ "signature": [
+ "(state?: T | undefined) => ",
+ {
+ "pluginId": "@kbn/interpreter",
+ "scope": "common",
+ "docId": "kibKbnInterpreterPluginApi",
+ "section": "def-common.Ast",
+ "text": "Ast"
+ }
+ ],
+ "path": "packages/kbn-coloring/src/palettes/types.ts",
+ "deprecated": false,
+ "trackAdoption": false,
+ "children": [
+ {
+ "parentPluginId": "@kbn/coloring",
+ "id": "def-common.PaletteDefinition.toExpression.$1",
+ "type": "Uncategorized",
+ "tags": [],
+ "label": "state",
+ "description": [
+ "The internal state of the palette"
+ ],
+ "signature": [
+ "T | undefined"
+ ],
+ "path": "packages/kbn-coloring/src/palettes/types.ts",
+ "deprecated": false,
+ "trackAdoption": false,
+ "isRequired": false
+ }
+ ],
+ "returnComment": []
+ },
+ {
+ "parentPluginId": "@kbn/coloring",
+ "id": "def-common.PaletteDefinition.getCategoricalColor",
+ "type": "Function",
+ "tags": [],
+ "label": "getCategoricalColor",
+ "description": [
+ "\nColor a series according to the internal rules of the palette."
+ ],
+ "signature": [
+ "(series: ",
+ {
+ "pluginId": "@kbn/coloring",
+ "scope": "common",
+ "docId": "kibKbnColoringPluginApi",
+ "section": "def-common.SeriesLayer",
+ "text": "SeriesLayer"
+ },
+ "[], chartConfiguration?: ",
+ {
+ "pluginId": "@kbn/coloring",
+ "scope": "common",
+ "docId": "kibKbnColoringPluginApi",
+ "section": "def-common.ChartColorConfiguration",
+ "text": "ChartColorConfiguration"
+ },
+ " | undefined, state?: T | undefined) => string | null"
+ ],
+ "path": "packages/kbn-coloring/src/palettes/types.ts",
+ "deprecated": false,
+ "trackAdoption": false,
+ "children": [
+ {
+ "parentPluginId": "@kbn/coloring",
+ "id": "def-common.PaletteDefinition.getCategoricalColor.$1",
+ "type": "Array",
+ "tags": [],
+ "label": "series",
+ "description": [
+ "The current series along with its ancestors."
+ ],
+ "signature": [
+ {
+ "pluginId": "@kbn/coloring",
+ "scope": "common",
+ "docId": "kibKbnColoringPluginApi",
+ "section": "def-common.SeriesLayer",
+ "text": "SeriesLayer"
+ },
+ "[]"
+ ],
+ "path": "packages/kbn-coloring/src/palettes/types.ts",
+ "deprecated": false,
+ "trackAdoption": false,
+ "isRequired": true
+ },
+ {
+ "parentPluginId": "@kbn/coloring",
+ "id": "def-common.PaletteDefinition.getCategoricalColor.$2",
+ "type": "Object",
+ "tags": [],
+ "label": "chartConfiguration",
+ "description": [],
+ "signature": [
+ {
+ "pluginId": "@kbn/coloring",
+ "scope": "common",
+ "docId": "kibKbnColoringPluginApi",
+ "section": "def-common.ChartColorConfiguration",
+ "text": "ChartColorConfiguration"
+ },
+ " | undefined"
+ ],
+ "path": "packages/kbn-coloring/src/palettes/types.ts",
+ "deprecated": false,
+ "trackAdoption": false,
+ "isRequired": false
+ },
+ {
+ "parentPluginId": "@kbn/coloring",
+ "id": "def-common.PaletteDefinition.getCategoricalColor.$3",
+ "type": "Uncategorized",
+ "tags": [],
+ "label": "state",
+ "description": [
+ "The internal state of the palette"
+ ],
+ "signature": [
+ "T | undefined"
+ ],
+ "path": "packages/kbn-coloring/src/palettes/types.ts",
+ "deprecated": false,
+ "trackAdoption": false,
+ "isRequired": false
+ }
+ ],
+ "returnComment": []
+ },
+ {
+ "parentPluginId": "@kbn/coloring",
+ "id": "def-common.PaletteDefinition.getCategoricalColors",
+ "type": "Function",
+ "tags": [],
+ "label": "getCategoricalColors",
+ "description": [
+ "\nGet a spectrum of colors of the current palette.\nThis can be used if the chart wants to control color assignment locally."
+ ],
+ "signature": [
+ "(size: number, state?: T | undefined) => string[]"
+ ],
+ "path": "packages/kbn-coloring/src/palettes/types.ts",
+ "deprecated": false,
+ "trackAdoption": false,
+ "children": [
+ {
+ "parentPluginId": "@kbn/coloring",
+ "id": "def-common.PaletteDefinition.getCategoricalColors.$1",
+ "type": "number",
+ "tags": [],
+ "label": "size",
+ "description": [],
+ "signature": [
+ "number"
+ ],
+ "path": "packages/kbn-coloring/src/palettes/types.ts",
+ "deprecated": false,
+ "trackAdoption": false,
+ "isRequired": true
+ },
+ {
+ "parentPluginId": "@kbn/coloring",
+ "id": "def-common.PaletteDefinition.getCategoricalColors.$2",
+ "type": "Uncategorized",
+ "tags": [],
+ "label": "state",
+ "description": [],
+ "signature": [
+ "T | undefined"
+ ],
+ "path": "packages/kbn-coloring/src/palettes/types.ts",
+ "deprecated": false,
+ "trackAdoption": false,
+ "isRequired": false
+ }
+ ],
+ "returnComment": []
+ },
+ {
+ "parentPluginId": "@kbn/coloring",
+ "id": "def-common.PaletteDefinition.canDynamicColoring",
+ "type": "CompoundType",
+ "tags": [],
+ "label": "canDynamicColoring",
+ "description": [
+ "\nDefine whether a palette supports dynamic coloring (i.e. gradient colors mapped to number values)"
+ ],
+ "signature": [
+ "boolean | undefined"
+ ],
+ "path": "packages/kbn-coloring/src/palettes/types.ts",
+ "deprecated": false,
+ "trackAdoption": false
+ },
+ {
+ "parentPluginId": "@kbn/coloring",
+ "id": "def-common.PaletteDefinition.getColorForValue",
+ "type": "Function",
+ "tags": [],
+ "label": "getColorForValue",
+ "description": [
+ "\nGet the assigned color for the given value based on its data domain and state settings.\nThis can be used for dynamic coloring based on uniform color distribution or custom stops."
+ ],
+ "signature": [
+ "((value: number | undefined, state: T, { min, max }: { min: number; max: number; }) => string | undefined) | undefined"
+ ],
+ "path": "packages/kbn-coloring/src/palettes/types.ts",
+ "deprecated": false,
+ "trackAdoption": false,
+ "children": [
+ {
+ "parentPluginId": "@kbn/coloring",
+ "id": "def-common.PaletteDefinition.getColorForValue.$1",
+ "type": "number",
+ "tags": [],
+ "label": "value",
+ "description": [],
+ "signature": [
+ "number | undefined"
+ ],
+ "path": "packages/kbn-coloring/src/palettes/types.ts",
+ "deprecated": false,
+ "trackAdoption": false,
+ "isRequired": false
+ },
+ {
+ "parentPluginId": "@kbn/coloring",
+ "id": "def-common.PaletteDefinition.getColorForValue.$2",
+ "type": "Uncategorized",
+ "tags": [],
+ "label": "state",
+ "description": [],
+ "signature": [
+ "T"
+ ],
+ "path": "packages/kbn-coloring/src/palettes/types.ts",
+ "deprecated": false,
+ "trackAdoption": false,
+ "isRequired": true
+ },
+ {
+ "parentPluginId": "@kbn/coloring",
+ "id": "def-common.PaletteDefinition.getColorForValue.$3",
+ "type": "Object",
+ "tags": [],
+ "label": "{ min, max }",
+ "description": [],
+ "path": "packages/kbn-coloring/src/palettes/types.ts",
+ "deprecated": false,
+ "trackAdoption": false,
+ "children": [
+ {
+ "parentPluginId": "@kbn/coloring",
+ "id": "def-common.PaletteDefinition.getColorForValue.$3.min",
+ "type": "number",
+ "tags": [],
+ "label": "min",
+ "description": [],
+ "path": "packages/kbn-coloring/src/palettes/types.ts",
+ "deprecated": false,
+ "trackAdoption": false
+ },
+ {
+ "parentPluginId": "@kbn/coloring",
+ "id": "def-common.PaletteDefinition.getColorForValue.$3.max",
+ "type": "number",
+ "tags": [],
+ "label": "max",
+ "description": [],
+ "path": "packages/kbn-coloring/src/palettes/types.ts",
+ "deprecated": false,
+ "trackAdoption": false
+ }
+ ]
+ }
+ ],
+ "returnComment": []
+ }
+ ],
+ "initialIsOpen": false
+ },
+ {
+ "parentPluginId": "@kbn/coloring",
+ "id": "def-common.PaletteOutput",
+ "type": "Interface",
+ "tags": [],
+ "label": "PaletteOutput",
+ "description": [],
+ "signature": [
+ {
+ "pluginId": "@kbn/coloring",
+ "scope": "common",
+ "docId": "kibKbnColoringPluginApi",
+ "section": "def-common.PaletteOutput",
+ "text": "PaletteOutput"
+ },
+ ""
+ ],
+ "path": "packages/kbn-coloring/src/palettes/types.ts",
+ "deprecated": false,
+ "trackAdoption": false,
+ "children": [
+ {
+ "parentPluginId": "@kbn/coloring",
+ "id": "def-common.PaletteOutput.type",
+ "type": "CompoundType",
+ "tags": [],
+ "label": "type",
+ "description": [],
+ "signature": [
+ "\"palette\" | \"system_palette\""
+ ],
+ "path": "packages/kbn-coloring/src/palettes/types.ts",
+ "deprecated": false,
+ "trackAdoption": false
+ },
+ {
+ "parentPluginId": "@kbn/coloring",
+ "id": "def-common.PaletteOutput.name",
+ "type": "string",
+ "tags": [],
+ "label": "name",
+ "description": [],
+ "path": "packages/kbn-coloring/src/palettes/types.ts",
+ "deprecated": false,
+ "trackAdoption": false
+ },
+ {
+ "parentPluginId": "@kbn/coloring",
+ "id": "def-common.PaletteOutput.params",
+ "type": "Uncategorized",
+ "tags": [],
+ "label": "params",
+ "description": [],
+ "signature": [
+ "T | undefined"
+ ],
+ "path": "packages/kbn-coloring/src/palettes/types.ts",
+ "deprecated": false,
+ "trackAdoption": false
+ }
+ ],
+ "initialIsOpen": false
+ },
+ {
+ "parentPluginId": "@kbn/coloring",
+ "id": "def-common.PaletteRegistry",
+ "type": "Interface",
+ "tags": [],
+ "label": "PaletteRegistry",
+ "description": [],
+ "path": "packages/kbn-coloring/src/palettes/types.ts",
+ "deprecated": false,
+ "trackAdoption": false,
+ "children": [
+ {
+ "parentPluginId": "@kbn/coloring",
+ "id": "def-common.PaletteRegistry.get",
+ "type": "Function",
+ "tags": [],
+ "label": "get",
+ "description": [],
+ "signature": [
+ "(name: string) => ",
+ {
+ "pluginId": "@kbn/coloring",
+ "scope": "common",
+ "docId": "kibKbnColoringPluginApi",
+ "section": "def-common.PaletteDefinition",
+ "text": "PaletteDefinition"
+ },
+ ""
+ ],
+ "path": "packages/kbn-coloring/src/palettes/types.ts",
+ "deprecated": false,
+ "trackAdoption": false,
+ "children": [
+ {
+ "parentPluginId": "@kbn/coloring",
+ "id": "def-common.PaletteRegistry.get.$1",
+ "type": "string",
+ "tags": [],
+ "label": "name",
+ "description": [],
+ "signature": [
+ "string"
+ ],
+ "path": "packages/kbn-coloring/src/palettes/types.ts",
+ "deprecated": false,
+ "trackAdoption": false,
+ "isRequired": true
+ }
+ ],
+ "returnComment": []
+ },
+ {
+ "parentPluginId": "@kbn/coloring",
+ "id": "def-common.PaletteRegistry.getAll",
+ "type": "Function",
+ "tags": [],
+ "label": "getAll",
+ "description": [],
+ "signature": [
+ "() => ",
+ {
+ "pluginId": "@kbn/coloring",
+ "scope": "common",
+ "docId": "kibKbnColoringPluginApi",
+ "section": "def-common.PaletteDefinition",
+ "text": "PaletteDefinition"
+ },
+ "[]"
+ ],
+ "path": "packages/kbn-coloring/src/palettes/types.ts",
+ "deprecated": false,
+ "trackAdoption": false,
+ "children": [],
+ "returnComment": []
+ }
+ ],
+ "initialIsOpen": false
+ },
+ {
+ "parentPluginId": "@kbn/coloring",
+ "id": "def-common.SeriesLayer",
+ "type": "Interface",
+ "tags": [],
+ "label": "SeriesLayer",
+ "description": [
+ "\nInformation about a series in a chart used to determine its color.\nSeries layers can be nested, this means each series layer can have an ancestor."
+ ],
+ "path": "packages/kbn-coloring/src/palettes/types.ts",
+ "deprecated": false,
+ "trackAdoption": false,
+ "children": [
+ {
+ "parentPluginId": "@kbn/coloring",
+ "id": "def-common.SeriesLayer.name",
+ "type": "string",
+ "tags": [],
+ "label": "name",
+ "description": [
+ "\nName of the series (can be used for lookup-based coloring)"
+ ],
+ "path": "packages/kbn-coloring/src/palettes/types.ts",
+ "deprecated": false,
+ "trackAdoption": false
+ },
+ {
+ "parentPluginId": "@kbn/coloring",
+ "id": "def-common.SeriesLayer.rankAtDepth",
+ "type": "number",
+ "tags": [],
+ "label": "rankAtDepth",
+ "description": [
+ "\nRank of the series compared to siblings with the same ancestor"
+ ],
+ "path": "packages/kbn-coloring/src/palettes/types.ts",
+ "deprecated": false,
+ "trackAdoption": false
+ },
+ {
+ "parentPluginId": "@kbn/coloring",
+ "id": "def-common.SeriesLayer.totalSeriesAtDepth",
+ "type": "number",
+ "tags": [],
+ "label": "totalSeriesAtDepth",
+ "description": [
"\nTotal number of series with the same ancestor"
],
"path": "packages/kbn-coloring/src/palettes/types.ts",
@@ -1881,19 +2725,126 @@
}
],
"initialIsOpen": false
- }
- ],
- "enums": [],
- "misc": [
+ }
+ ],
+ "enums": [],
+ "misc": [
+ {
+ "parentPluginId": "@kbn/coloring",
+ "id": "def-common.ColorMappingInputData",
+ "type": "Type",
+ "tags": [],
+ "label": "ColorMappingInputData",
+ "description": [
+ "\nA configuration object that is required to populate correctly the visible categories\nor the ranges in the CategoricalColorMapping component"
+ ],
+ "signature": [
+ "{ type: \"categories\"; categories: (string | string[])[]; } | { type: \"ranges\"; min: number; max: number; bins: number; }"
+ ],
+ "path": "packages/kbn-coloring/src/shared_components/color_mapping/categorical_color_mapping.tsx",
+ "deprecated": false,
+ "trackAdoption": false,
+ "initialIsOpen": false
+ },
+ {
+ "parentPluginId": "@kbn/coloring",
+ "id": "def-common.CUSTOM_PALETTE",
+ "type": "string",
+ "tags": [],
+ "label": "CUSTOM_PALETTE",
+ "description": [],
+ "signature": [
+ "\"custom\""
+ ],
+ "path": "packages/kbn-coloring/src/palettes/constants.ts",
+ "deprecated": false,
+ "trackAdoption": false,
+ "initialIsOpen": false
+ },
+ {
+ "parentPluginId": "@kbn/coloring",
+ "id": "def-common.DEFAULT_COLOR_STEPS",
+ "type": "number",
+ "tags": [],
+ "label": "DEFAULT_COLOR_STEPS",
+ "description": [],
+ "signature": [
+ "5"
+ ],
+ "path": "packages/kbn-coloring/src/palettes/constants.ts",
+ "deprecated": false,
+ "trackAdoption": false,
+ "initialIsOpen": false
+ },
+ {
+ "parentPluginId": "@kbn/coloring",
+ "id": "def-common.DEFAULT_CONTINUITY",
+ "type": "string",
+ "tags": [],
+ "label": "DEFAULT_CONTINUITY",
+ "description": [],
+ "signature": [
+ "\"above\""
+ ],
+ "path": "packages/kbn-coloring/src/palettes/constants.ts",
+ "deprecated": false,
+ "trackAdoption": false,
+ "initialIsOpen": false
+ },
+ {
+ "parentPluginId": "@kbn/coloring",
+ "id": "def-common.DEFAULT_MAX_STOP",
+ "type": "number",
+ "tags": [],
+ "label": "DEFAULT_MAX_STOP",
+ "description": [],
+ "signature": [
+ "100"
+ ],
+ "path": "packages/kbn-coloring/src/palettes/constants.ts",
+ "deprecated": false,
+ "trackAdoption": false,
+ "initialIsOpen": false
+ },
+ {
+ "parentPluginId": "@kbn/coloring",
+ "id": "def-common.DEFAULT_MIN_STOP",
+ "type": "number",
+ "tags": [],
+ "label": "DEFAULT_MIN_STOP",
+ "description": [],
+ "signature": [
+ "0"
+ ],
+ "path": "packages/kbn-coloring/src/palettes/constants.ts",
+ "deprecated": false,
+ "trackAdoption": false,
+ "initialIsOpen": false
+ },
+ {
+ "parentPluginId": "@kbn/coloring",
+ "id": "def-common.DEFAULT_PALETTE_NAME",
+ "type": "string",
+ "tags": [],
+ "label": "DEFAULT_PALETTE_NAME",
+ "description": [],
+ "signature": [
+ "\"positive\""
+ ],
+ "path": "packages/kbn-coloring/src/palettes/constants.ts",
+ "deprecated": false,
+ "trackAdoption": false,
+ "initialIsOpen": false
+ },
{
"parentPluginId": "@kbn/coloring",
- "id": "def-common.CUSTOM_PALETTE",
+ "id": "def-common.DEFAULT_RANGE_TYPE",
"type": "string",
"tags": [],
- "label": "CUSTOM_PALETTE",
+ "label": "DEFAULT_RANGE_TYPE",
"description": [],
"signature": [
- "\"custom\""
+ "\"percent\""
],
"path": "packages/kbn-coloring/src/palettes/constants.ts",
"deprecated": false,
@@ -1902,28 +2853,43 @@
},
{
"parentPluginId": "@kbn/coloring",
- "id": "def-common.DEFAULT_COLOR_STEPS",
- "type": "number",
+ "id": "def-common.ELASTIC_BRAND_PALETTE_COLORS",
+ "type": "Array",
"tags": [],
- "label": "DEFAULT_COLOR_STEPS",
+ "label": "ELASTIC_BRAND_PALETTE_COLORS",
"description": [],
"signature": [
- "5"
+ "string[]"
],
- "path": "packages/kbn-coloring/src/palettes/constants.ts",
+ "path": "packages/kbn-coloring/src/shared_components/color_mapping/palettes/elastic_brand.ts",
"deprecated": false,
"trackAdoption": false,
"initialIsOpen": false
},
{
"parentPluginId": "@kbn/coloring",
- "id": "def-common.DEFAULT_CONTINUITY",
+ "id": "def-common.EUI_AMSTERDAM_PALETTE_COLORS",
+ "type": "Array",
+ "tags": [],
+ "label": "EUI_AMSTERDAM_PALETTE_COLORS",
+ "description": [],
+ "signature": [
+ "string[]"
+ ],
+ "path": "packages/kbn-coloring/src/shared_components/color_mapping/palettes/eui_amsterdam.ts",
+ "deprecated": false,
+ "trackAdoption": false,
+ "initialIsOpen": false
+ },
+ {
+ "parentPluginId": "@kbn/coloring",
+ "id": "def-common.FIXED_PROGRESSION",
"type": "string",
"tags": [],
- "label": "DEFAULT_CONTINUITY",
+ "label": "FIXED_PROGRESSION",
"description": [],
"signature": [
- "\"above\""
+ "\"fixed\""
],
"path": "packages/kbn-coloring/src/palettes/constants.ts",
"deprecated": false,
@@ -1932,134 +2898,620 @@
},
{
"parentPluginId": "@kbn/coloring",
- "id": "def-common.DEFAULT_MAX_STOP",
- "type": "number",
+ "id": "def-common.KIBANA_V7_LEGACY_PALETTE_COLORS",
+ "type": "Array",
"tags": [],
- "label": "DEFAULT_MAX_STOP",
+ "label": "KIBANA_V7_LEGACY_PALETTE_COLORS",
"description": [],
"signature": [
- "100"
+ "string[]"
],
- "path": "packages/kbn-coloring/src/palettes/constants.ts",
+ "path": "packages/kbn-coloring/src/shared_components/color_mapping/palettes/kibana_legacy.ts",
"deprecated": false,
"trackAdoption": false,
"initialIsOpen": false
},
{
"parentPluginId": "@kbn/coloring",
- "id": "def-common.DEFAULT_MIN_STOP",
- "type": "number",
+ "id": "def-common.NEUTRAL_COLOR_DARK",
+ "type": "Array",
"tags": [],
- "label": "DEFAULT_MIN_STOP",
+ "label": "NEUTRAL_COLOR_DARK",
"description": [],
"signature": [
- "0"
+ "string[]"
],
- "path": "packages/kbn-coloring/src/palettes/constants.ts",
+ "path": "packages/kbn-coloring/src/shared_components/color_mapping/palettes/neutral.ts",
"deprecated": false,
"trackAdoption": false,
"initialIsOpen": false
},
{
"parentPluginId": "@kbn/coloring",
- "id": "def-common.DEFAULT_PALETTE_NAME",
- "type": "string",
+ "id": "def-common.NEUTRAL_COLOR_LIGHT",
+ "type": "Array",
"tags": [],
- "label": "DEFAULT_PALETTE_NAME",
+ "label": "NEUTRAL_COLOR_LIGHT",
"description": [],
"signature": [
- "\"positive\""
+ "string[]"
],
- "path": "packages/kbn-coloring/src/palettes/constants.ts",
+ "path": "packages/kbn-coloring/src/shared_components/color_mapping/palettes/neutral.ts",
+ "deprecated": false,
+ "trackAdoption": false,
+ "initialIsOpen": false
+ },
+ {
+ "parentPluginId": "@kbn/coloring",
+ "id": "def-common.PaletteContinuity",
+ "type": "Type",
+ "tags": [],
+ "label": "PaletteContinuity",
+ "description": [],
+ "signature": [
+ "\"none\" | \"all\" | \"above\" | \"below\""
+ ],
+ "path": "packages/kbn-coloring/src/palettes/types.ts",
+ "deprecated": false,
+ "trackAdoption": false,
+ "initialIsOpen": false
+ },
+ {
+ "parentPluginId": "@kbn/coloring",
+ "id": "def-common.RequiredPaletteParamTypes",
+ "type": "Type",
+ "tags": [],
+ "label": "RequiredPaletteParamTypes",
+ "description": [],
+ "signature": [
+ "{ reverse: boolean; name: string; rangeType: \"number\" | \"percent\"; continuity: ",
+ {
+ "pluginId": "@kbn/coloring",
+ "scope": "common",
+ "docId": "kibKbnColoringPluginApi",
+ "section": "def-common.PaletteContinuity",
+ "text": "PaletteContinuity"
+ },
+ "; progression: \"fixed\"; rangeMin: number; rangeMax: number; stops: ",
+ {
+ "pluginId": "@kbn/coloring",
+ "scope": "common",
+ "docId": "kibKbnColoringPluginApi",
+ "section": "def-common.ColorStop",
+ "text": "ColorStop"
+ },
+ "[]; colorStops: ",
+ {
+ "pluginId": "@kbn/coloring",
+ "scope": "common",
+ "docId": "kibKbnColoringPluginApi",
+ "section": "def-common.ColorStop",
+ "text": "ColorStop"
+ },
+ "[]; steps: number; maxSteps?: number | undefined; }"
+ ],
+ "path": "packages/kbn-coloring/src/palettes/types.ts",
+ "deprecated": false,
+ "trackAdoption": false,
+ "initialIsOpen": false
+ }
+ ],
+ "objects": [
+ {
+ "parentPluginId": "@kbn/coloring",
+ "id": "def-common.AVAILABLE_PALETTES",
+ "type": "Object",
+ "tags": [],
+ "label": "AVAILABLE_PALETTES",
+ "description": [],
+ "signature": [
+ "Map"
+ ],
+ "path": "packages/kbn-coloring/src/shared_components/color_mapping/palettes/index.ts",
+ "deprecated": false,
+ "trackAdoption": false,
+ "initialIsOpen": false
+ },
+ {
+ "parentPluginId": "@kbn/coloring",
+ "id": "def-common.DEFAULT_COLOR_MAPPING_CONFIG",
+ "type": "Object",
+ "tags": [],
+ "label": "DEFAULT_COLOR_MAPPING_CONFIG",
+ "description": [
+ "\nThe default color mapping used in Kibana, starts with the EUI color palette"
+ ],
+ "path": "packages/kbn-coloring/src/shared_components/color_mapping/config/default_color_mapping.ts",
+ "deprecated": false,
+ "trackAdoption": false,
+ "children": [
+ {
+ "parentPluginId": "@kbn/coloring",
+ "id": "def-common.DEFAULT_COLOR_MAPPING_CONFIG.assignmentMode",
+ "type": "string",
+ "tags": [],
+ "label": "assignmentMode",
+ "description": [],
+ "signature": [
+ "\"auto\""
+ ],
+ "path": "packages/kbn-coloring/src/shared_components/color_mapping/config/default_color_mapping.ts",
+ "deprecated": false,
+ "trackAdoption": false
+ },
+ {
+ "parentPluginId": "@kbn/coloring",
+ "id": "def-common.DEFAULT_COLOR_MAPPING_CONFIG.assignments",
+ "type": "Array",
+ "tags": [],
+ "label": "assignments",
+ "description": [],
+ "signature": [
+ "never[]"
+ ],
+ "path": "packages/kbn-coloring/src/shared_components/color_mapping/config/default_color_mapping.ts",
+ "deprecated": false,
+ "trackAdoption": false
+ },
+ {
+ "parentPluginId": "@kbn/coloring",
+ "id": "def-common.DEFAULT_COLOR_MAPPING_CONFIG.specialAssignments",
+ "type": "Array",
+ "tags": [],
+ "label": "specialAssignments",
+ "description": [],
+ "signature": [
+ "{ rule: { type: \"other\"; }; color: { type: \"categorical\"; paletteId: string; colorIndex: number; }; touched: false; }[]"
+ ],
+ "path": "packages/kbn-coloring/src/shared_components/color_mapping/config/default_color_mapping.ts",
+ "deprecated": false,
+ "trackAdoption": false
+ },
+ {
+ "parentPluginId": "@kbn/coloring",
+ "id": "def-common.DEFAULT_COLOR_MAPPING_CONFIG.paletteId",
+ "type": "string",
+ "tags": [],
+ "label": "paletteId",
+ "description": [],
+ "path": "packages/kbn-coloring/src/shared_components/color_mapping/config/default_color_mapping.ts",
+ "deprecated": false,
+ "trackAdoption": false
+ },
+ {
+ "parentPluginId": "@kbn/coloring",
+ "id": "def-common.DEFAULT_COLOR_MAPPING_CONFIG.colorMode",
+ "type": "Object",
+ "tags": [],
+ "label": "colorMode",
+ "description": [],
+ "path": "packages/kbn-coloring/src/shared_components/color_mapping/config/default_color_mapping.ts",
+ "deprecated": false,
+ "trackAdoption": false,
+ "children": [
+ {
+ "parentPluginId": "@kbn/coloring",
+ "id": "def-common.DEFAULT_COLOR_MAPPING_CONFIG.colorMode.type",
+ "type": "string",
+ "tags": [],
+ "label": "type",
+ "description": [],
+ "signature": [
+ "\"categorical\""
+ ],
+ "path": "packages/kbn-coloring/src/shared_components/color_mapping/config/default_color_mapping.ts",
+ "deprecated": false,
+ "trackAdoption": false
+ }
+ ]
+ }
+ ],
+ "initialIsOpen": false
+ },
+ {
+ "parentPluginId": "@kbn/coloring",
+ "id": "def-common.ElasticBrandPalette",
+ "type": "Object",
+ "tags": [],
+ "label": "ElasticBrandPalette",
+ "description": [],
+ "path": "packages/kbn-coloring/src/shared_components/color_mapping/palettes/elastic_brand.ts",
"deprecated": false,
"trackAdoption": false,
+ "children": [
+ {
+ "parentPluginId": "@kbn/coloring",
+ "id": "def-common.ElasticBrandPalette.id",
+ "type": "string",
+ "tags": [],
+ "label": "id",
+ "description": [],
+ "path": "packages/kbn-coloring/src/shared_components/color_mapping/palettes/elastic_brand.ts",
+ "deprecated": false,
+ "trackAdoption": false
+ },
+ {
+ "parentPluginId": "@kbn/coloring",
+ "id": "def-common.ElasticBrandPalette.name",
+ "type": "string",
+ "tags": [],
+ "label": "name",
+ "description": [],
+ "path": "packages/kbn-coloring/src/shared_components/color_mapping/palettes/elastic_brand.ts",
+ "deprecated": false,
+ "trackAdoption": false
+ },
+ {
+ "parentPluginId": "@kbn/coloring",
+ "id": "def-common.ElasticBrandPalette.colorCount",
+ "type": "number",
+ "tags": [],
+ "label": "colorCount",
+ "description": [],
+ "path": "packages/kbn-coloring/src/shared_components/color_mapping/palettes/elastic_brand.ts",
+ "deprecated": false,
+ "trackAdoption": false
+ },
+ {
+ "parentPluginId": "@kbn/coloring",
+ "id": "def-common.ElasticBrandPalette.type",
+ "type": "string",
+ "tags": [],
+ "label": "type",
+ "description": [],
+ "signature": [
+ "\"categorical\""
+ ],
+ "path": "packages/kbn-coloring/src/shared_components/color_mapping/palettes/elastic_brand.ts",
+ "deprecated": false,
+ "trackAdoption": false
+ },
+ {
+ "parentPluginId": "@kbn/coloring",
+ "id": "def-common.ElasticBrandPalette.getColor",
+ "type": "Function",
+ "tags": [],
+ "label": "getColor",
+ "description": [],
+ "signature": [
+ "(valueInRange: number) => string"
+ ],
+ "path": "packages/kbn-coloring/src/shared_components/color_mapping/palettes/elastic_brand.ts",
+ "deprecated": false,
+ "trackAdoption": false,
+ "children": [
+ {
+ "parentPluginId": "@kbn/coloring",
+ "id": "def-common.ElasticBrandPalette.getColor.$1",
+ "type": "number",
+ "tags": [],
+ "label": "valueInRange",
+ "description": [],
+ "signature": [
+ "number"
+ ],
+ "path": "packages/kbn-coloring/src/shared_components/color_mapping/palettes/elastic_brand.ts",
+ "deprecated": false,
+ "trackAdoption": false,
+ "isRequired": true
+ }
+ ],
+ "returnComment": []
+ }
+ ],
"initialIsOpen": false
},
{
"parentPluginId": "@kbn/coloring",
- "id": "def-common.DEFAULT_RANGE_TYPE",
- "type": "string",
+ "id": "def-common.EUIAmsterdamColorBlindPalette",
+ "type": "Object",
"tags": [],
- "label": "DEFAULT_RANGE_TYPE",
+ "label": "EUIAmsterdamColorBlindPalette",
"description": [],
- "signature": [
- "\"percent\""
- ],
- "path": "packages/kbn-coloring/src/palettes/constants.ts",
+ "path": "packages/kbn-coloring/src/shared_components/color_mapping/palettes/eui_amsterdam.ts",
"deprecated": false,
"trackAdoption": false,
+ "children": [
+ {
+ "parentPluginId": "@kbn/coloring",
+ "id": "def-common.EUIAmsterdamColorBlindPalette.id",
+ "type": "string",
+ "tags": [],
+ "label": "id",
+ "description": [],
+ "path": "packages/kbn-coloring/src/shared_components/color_mapping/palettes/eui_amsterdam.ts",
+ "deprecated": false,
+ "trackAdoption": false
+ },
+ {
+ "parentPluginId": "@kbn/coloring",
+ "id": "def-common.EUIAmsterdamColorBlindPalette.name",
+ "type": "string",
+ "tags": [],
+ "label": "name",
+ "description": [],
+ "path": "packages/kbn-coloring/src/shared_components/color_mapping/palettes/eui_amsterdam.ts",
+ "deprecated": false,
+ "trackAdoption": false
+ },
+ {
+ "parentPluginId": "@kbn/coloring",
+ "id": "def-common.EUIAmsterdamColorBlindPalette.colorCount",
+ "type": "number",
+ "tags": [],
+ "label": "colorCount",
+ "description": [],
+ "path": "packages/kbn-coloring/src/shared_components/color_mapping/palettes/eui_amsterdam.ts",
+ "deprecated": false,
+ "trackAdoption": false
+ },
+ {
+ "parentPluginId": "@kbn/coloring",
+ "id": "def-common.EUIAmsterdamColorBlindPalette.type",
+ "type": "string",
+ "tags": [],
+ "label": "type",
+ "description": [],
+ "signature": [
+ "\"categorical\""
+ ],
+ "path": "packages/kbn-coloring/src/shared_components/color_mapping/palettes/eui_amsterdam.ts",
+ "deprecated": false,
+ "trackAdoption": false
+ },
+ {
+ "parentPluginId": "@kbn/coloring",
+ "id": "def-common.EUIAmsterdamColorBlindPalette.getColor",
+ "type": "Function",
+ "tags": [],
+ "label": "getColor",
+ "description": [],
+ "signature": [
+ "(valueInRange: number) => string"
+ ],
+ "path": "packages/kbn-coloring/src/shared_components/color_mapping/palettes/eui_amsterdam.ts",
+ "deprecated": false,
+ "trackAdoption": false,
+ "children": [
+ {
+ "parentPluginId": "@kbn/coloring",
+ "id": "def-common.EUIAmsterdamColorBlindPalette.getColor.$1",
+ "type": "number",
+ "tags": [],
+ "label": "valueInRange",
+ "description": [],
+ "signature": [
+ "number"
+ ],
+ "path": "packages/kbn-coloring/src/shared_components/color_mapping/palettes/eui_amsterdam.ts",
+ "deprecated": false,
+ "trackAdoption": false,
+ "isRequired": true
+ }
+ ],
+ "returnComment": []
+ }
+ ],
"initialIsOpen": false
},
{
"parentPluginId": "@kbn/coloring",
- "id": "def-common.FIXED_PROGRESSION",
- "type": "string",
+ "id": "def-common.KibanaV7LegacyPalette",
+ "type": "Object",
"tags": [],
- "label": "FIXED_PROGRESSION",
+ "label": "KibanaV7LegacyPalette",
"description": [],
- "signature": [
- "\"fixed\""
- ],
- "path": "packages/kbn-coloring/src/palettes/constants.ts",
+ "path": "packages/kbn-coloring/src/shared_components/color_mapping/palettes/kibana_legacy.ts",
"deprecated": false,
"trackAdoption": false,
+ "children": [
+ {
+ "parentPluginId": "@kbn/coloring",
+ "id": "def-common.KibanaV7LegacyPalette.id",
+ "type": "string",
+ "tags": [],
+ "label": "id",
+ "description": [],
+ "path": "packages/kbn-coloring/src/shared_components/color_mapping/palettes/kibana_legacy.ts",
+ "deprecated": false,
+ "trackAdoption": false
+ },
+ {
+ "parentPluginId": "@kbn/coloring",
+ "id": "def-common.KibanaV7LegacyPalette.name",
+ "type": "string",
+ "tags": [],
+ "label": "name",
+ "description": [],
+ "path": "packages/kbn-coloring/src/shared_components/color_mapping/palettes/kibana_legacy.ts",
+ "deprecated": false,
+ "trackAdoption": false
+ },
+ {
+ "parentPluginId": "@kbn/coloring",
+ "id": "def-common.KibanaV7LegacyPalette.colorCount",
+ "type": "number",
+ "tags": [],
+ "label": "colorCount",
+ "description": [],
+ "path": "packages/kbn-coloring/src/shared_components/color_mapping/palettes/kibana_legacy.ts",
+ "deprecated": false,
+ "trackAdoption": false
+ },
+ {
+ "parentPluginId": "@kbn/coloring",
+ "id": "def-common.KibanaV7LegacyPalette.type",
+ "type": "string",
+ "tags": [],
+ "label": "type",
+ "description": [],
+ "signature": [
+ "\"categorical\""
+ ],
+ "path": "packages/kbn-coloring/src/shared_components/color_mapping/palettes/kibana_legacy.ts",
+ "deprecated": false,
+ "trackAdoption": false
+ },
+ {
+ "parentPluginId": "@kbn/coloring",
+ "id": "def-common.KibanaV7LegacyPalette.getColor",
+ "type": "Function",
+ "tags": [],
+ "label": "getColor",
+ "description": [],
+ "signature": [
+ "(valueInRange: number) => string"
+ ],
+ "path": "packages/kbn-coloring/src/shared_components/color_mapping/palettes/kibana_legacy.ts",
+ "deprecated": false,
+ "trackAdoption": false,
+ "children": [
+ {
+ "parentPluginId": "@kbn/coloring",
+ "id": "def-common.KibanaV7LegacyPalette.getColor.$1",
+ "type": "number",
+ "tags": [],
+ "label": "valueInRange",
+ "description": [],
+ "signature": [
+ "number"
+ ],
+ "path": "packages/kbn-coloring/src/shared_components/color_mapping/palettes/kibana_legacy.ts",
+ "deprecated": false,
+ "trackAdoption": false,
+ "isRequired": true
+ }
+ ],
+ "returnComment": []
+ }
+ ],
"initialIsOpen": false
},
{
"parentPluginId": "@kbn/coloring",
- "id": "def-common.PaletteContinuity",
- "type": "Type",
+ "id": "def-common.NeutralPalette",
+ "type": "Object",
"tags": [],
- "label": "PaletteContinuity",
+ "label": "NeutralPalette",
"description": [],
- "signature": [
- "\"none\" | \"all\" | \"above\" | \"below\""
- ],
- "path": "packages/kbn-coloring/src/palettes/types.ts",
+ "path": "packages/kbn-coloring/src/shared_components/color_mapping/palettes/neutral.ts",
"deprecated": false,
"trackAdoption": false,
+ "children": [
+ {
+ "parentPluginId": "@kbn/coloring",
+ "id": "def-common.NeutralPalette.id",
+ "type": "string",
+ "tags": [],
+ "label": "id",
+ "description": [],
+ "path": "packages/kbn-coloring/src/shared_components/color_mapping/palettes/neutral.ts",
+ "deprecated": false,
+ "trackAdoption": false
+ },
+ {
+ "parentPluginId": "@kbn/coloring",
+ "id": "def-common.NeutralPalette.name",
+ "type": "string",
+ "tags": [],
+ "label": "name",
+ "description": [],
+ "path": "packages/kbn-coloring/src/shared_components/color_mapping/palettes/neutral.ts",
+ "deprecated": false,
+ "trackAdoption": false
+ },
+ {
+ "parentPluginId": "@kbn/coloring",
+ "id": "def-common.NeutralPalette.colorCount",
+ "type": "number",
+ "tags": [],
+ "label": "colorCount",
+ "description": [],
+ "path": "packages/kbn-coloring/src/shared_components/color_mapping/palettes/neutral.ts",
+ "deprecated": false,
+ "trackAdoption": false
+ },
+ {
+ "parentPluginId": "@kbn/coloring",
+ "id": "def-common.NeutralPalette.type",
+ "type": "string",
+ "tags": [],
+ "label": "type",
+ "description": [],
+ "signature": [
+ "\"categorical\""
+ ],
+ "path": "packages/kbn-coloring/src/shared_components/color_mapping/palettes/neutral.ts",
+ "deprecated": false,
+ "trackAdoption": false
+ },
+ {
+ "parentPluginId": "@kbn/coloring",
+ "id": "def-common.NeutralPalette.getColor",
+ "type": "Function",
+ "tags": [],
+ "label": "getColor",
+ "description": [],
+ "signature": [
+ "(valueInRange: number, isDarkMode: boolean) => string"
+ ],
+ "path": "packages/kbn-coloring/src/shared_components/color_mapping/palettes/neutral.ts",
+ "deprecated": false,
+ "trackAdoption": false,
+ "children": [
+ {
+ "parentPluginId": "@kbn/coloring",
+ "id": "def-common.NeutralPalette.getColor.$1",
+ "type": "number",
+ "tags": [],
+ "label": "valueInRange",
+ "description": [],
+ "signature": [
+ "number"
+ ],
+ "path": "packages/kbn-coloring/src/shared_components/color_mapping/palettes/neutral.ts",
+ "deprecated": false,
+ "trackAdoption": false,
+ "isRequired": true
+ },
+ {
+ "parentPluginId": "@kbn/coloring",
+ "id": "def-common.NeutralPalette.getColor.$2",
+ "type": "boolean",
+ "tags": [],
+ "label": "isDarkMode",
+ "description": [],
+ "signature": [
+ "boolean"
+ ],
+ "path": "packages/kbn-coloring/src/shared_components/color_mapping/palettes/neutral.ts",
+ "deprecated": false,
+ "trackAdoption": false,
+ "isRequired": true
+ }
+ ],
+ "returnComment": []
+ }
+ ],
"initialIsOpen": false
},
{
"parentPluginId": "@kbn/coloring",
- "id": "def-common.RequiredPaletteParamTypes",
- "type": "Type",
+ "id": "def-common.SPECIAL_TOKENS_STRING_CONVERTION",
+ "type": "Object",
"tags": [],
- "label": "RequiredPaletteParamTypes",
+ "label": "SPECIAL_TOKENS_STRING_CONVERTION",
"description": [],
"signature": [
- "{ reverse: boolean; name: string; rangeType: \"number\" | \"percent\"; continuity: ",
- {
- "pluginId": "@kbn/coloring",
- "scope": "common",
- "docId": "kibKbnColoringPluginApi",
- "section": "def-common.PaletteContinuity",
- "text": "PaletteContinuity"
- },
- "; progression: \"fixed\"; rangeMin: number; rangeMax: number; stops: ",
- {
- "pluginId": "@kbn/coloring",
- "scope": "common",
- "docId": "kibKbnColoringPluginApi",
- "section": "def-common.ColorStop",
- "text": "ColorStop"
- },
- "[]; colorStops: ",
- {
- "pluginId": "@kbn/coloring",
- "scope": "common",
- "docId": "kibKbnColoringPluginApi",
- "section": "def-common.ColorStop",
- "text": "ColorStop"
- },
- "[]; steps: number; maxSteps?: number | undefined; }"
+ "Map"
],
- "path": "packages/kbn-coloring/src/palettes/types.ts",
+ "path": "packages/kbn-coloring/src/shared_components/color_mapping/color/rule_matching.ts",
"deprecated": false,
"trackAdoption": false,
"initialIsOpen": false
}
- ],
- "objects": []
+ ]
}
}
\ No newline at end of file
diff --git a/api_docs/kbn_coloring.mdx b/api_docs/kbn_coloring.mdx
index bdd3b49c0565b..fa51e1a9f842c 100644
--- a/api_docs/kbn_coloring.mdx
+++ b/api_docs/kbn_coloring.mdx
@@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-coloring
title: "@kbn/coloring"
image: https://source.unsplash.com/400x175/?github
description: API docs for the @kbn/coloring plugin
-date: 2023-09-28
+date: 2023-09-29
tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/coloring']
---
import kbnColoringObj from './kbn_coloring.devdocs.json';
@@ -21,13 +21,19 @@ Contact [@elastic/kibana-visualizations](https://github.com/orgs/elastic/teams/k
| Public API count | Any count | Items lacking comments | Missing exports |
|-------------------|-----------|------------------------|-----------------|
-| 116 | 0 | 90 | 1 |
+| 206 | 0 | 169 | 8 |
## Common
+### Objects
+
+
### Functions
+### Classes
+
+
### Interfaces
diff --git a/api_docs/kbn_config.mdx b/api_docs/kbn_config.mdx
index 922a04674ff80..0973106d52365 100644
--- a/api_docs/kbn_config.mdx
+++ b/api_docs/kbn_config.mdx
@@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-config
title: "@kbn/config"
image: https://source.unsplash.com/400x175/?github
description: API docs for the @kbn/config plugin
-date: 2023-09-28
+date: 2023-09-29
tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/config']
---
import kbnConfigObj from './kbn_config.devdocs.json';
diff --git a/api_docs/kbn_config_mocks.mdx b/api_docs/kbn_config_mocks.mdx
index 592bf9ea4897f..75e397b9fdcd8 100644
--- a/api_docs/kbn_config_mocks.mdx
+++ b/api_docs/kbn_config_mocks.mdx
@@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-config-mocks
title: "@kbn/config-mocks"
image: https://source.unsplash.com/400x175/?github
description: API docs for the @kbn/config-mocks plugin
-date: 2023-09-28
+date: 2023-09-29
tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/config-mocks']
---
import kbnConfigMocksObj from './kbn_config_mocks.devdocs.json';
diff --git a/api_docs/kbn_config_schema.mdx b/api_docs/kbn_config_schema.mdx
index 97be862ab5a26..87db3115f8a44 100644
--- a/api_docs/kbn_config_schema.mdx
+++ b/api_docs/kbn_config_schema.mdx
@@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-config-schema
title: "@kbn/config-schema"
image: https://source.unsplash.com/400x175/?github
description: API docs for the @kbn/config-schema plugin
-date: 2023-09-28
+date: 2023-09-29
tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/config-schema']
---
import kbnConfigSchemaObj from './kbn_config_schema.devdocs.json';
diff --git a/api_docs/kbn_content_management_content_editor.mdx b/api_docs/kbn_content_management_content_editor.mdx
index 7cb613c139af1..bd2fe72e4e640 100644
--- a/api_docs/kbn_content_management_content_editor.mdx
+++ b/api_docs/kbn_content_management_content_editor.mdx
@@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-content-management-content-editor
title: "@kbn/content-management-content-editor"
image: https://source.unsplash.com/400x175/?github
description: API docs for the @kbn/content-management-content-editor plugin
-date: 2023-09-28
+date: 2023-09-29
tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/content-management-content-editor']
---
import kbnContentManagementContentEditorObj from './kbn_content_management_content_editor.devdocs.json';
diff --git a/api_docs/kbn_content_management_tabbed_table_list_view.mdx b/api_docs/kbn_content_management_tabbed_table_list_view.mdx
index 1890f2283fe09..e880fcd1c169e 100644
--- a/api_docs/kbn_content_management_tabbed_table_list_view.mdx
+++ b/api_docs/kbn_content_management_tabbed_table_list_view.mdx
@@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-content-management-tabbed-table-list-view
title: "@kbn/content-management-tabbed-table-list-view"
image: https://source.unsplash.com/400x175/?github
description: API docs for the @kbn/content-management-tabbed-table-list-view plugin
-date: 2023-09-28
+date: 2023-09-29
tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/content-management-tabbed-table-list-view']
---
import kbnContentManagementTabbedTableListViewObj from './kbn_content_management_tabbed_table_list_view.devdocs.json';
diff --git a/api_docs/kbn_content_management_table_list_view.mdx b/api_docs/kbn_content_management_table_list_view.mdx
index bb796b11a5873..ae4d41e709cc9 100644
--- a/api_docs/kbn_content_management_table_list_view.mdx
+++ b/api_docs/kbn_content_management_table_list_view.mdx
@@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-content-management-table-list-view
title: "@kbn/content-management-table-list-view"
image: https://source.unsplash.com/400x175/?github
description: API docs for the @kbn/content-management-table-list-view plugin
-date: 2023-09-28
+date: 2023-09-29
tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/content-management-table-list-view']
---
import kbnContentManagementTableListViewObj from './kbn_content_management_table_list_view.devdocs.json';
diff --git a/api_docs/kbn_content_management_table_list_view_table.mdx b/api_docs/kbn_content_management_table_list_view_table.mdx
index 9251b84da18a4..cd53d86e63fba 100644
--- a/api_docs/kbn_content_management_table_list_view_table.mdx
+++ b/api_docs/kbn_content_management_table_list_view_table.mdx
@@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-content-management-table-list-view-table
title: "@kbn/content-management-table-list-view-table"
image: https://source.unsplash.com/400x175/?github
description: API docs for the @kbn/content-management-table-list-view-table plugin
-date: 2023-09-28
+date: 2023-09-29
tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/content-management-table-list-view-table']
---
import kbnContentManagementTableListViewTableObj from './kbn_content_management_table_list_view_table.devdocs.json';
diff --git a/api_docs/kbn_content_management_utils.devdocs.json b/api_docs/kbn_content_management_utils.devdocs.json
index 966c526f89231..545ea911e0490 100644
--- a/api_docs/kbn_content_management_utils.devdocs.json
+++ b/api_docs/kbn_content_management_utils.devdocs.json
@@ -74,7 +74,7 @@
"id": "def-common.SOContentStorage.Unnamed.$1",
"type": "Object",
"tags": [],
- "label": "{\n savedObjectType,\n cmServicesDefinition,\n createArgsToSoCreateOptions,\n updateArgsToSoUpdateOptions,\n searchArgsToSOFindOptions,\n enableMSearch,\n allowedSavedObjectAttributes,\n mSearchAdditionalSearchFields,\n }",
+ "label": "{\n savedObjectType,\n cmServicesDefinition,\n createArgsToSoCreateOptions,\n updateArgsToSoUpdateOptions,\n searchArgsToSOFindOptions,\n enableMSearch,\n allowedSavedObjectAttributes,\n mSearchAdditionalSearchFields,\n logger,\n throwOnResultValidationError,\n }",
"description": [],
"signature": [
{
@@ -2879,6 +2879,37 @@
"path": "packages/kbn-content-management-utils/src/saved_object_content_storage.ts",
"deprecated": false,
"trackAdoption": false
+ },
+ {
+ "parentPluginId": "@kbn/content-management-utils",
+ "id": "def-common.SOContentStorageConstrutorParams.logger",
+ "type": "Object",
+ "tags": [],
+ "label": "logger",
+ "description": [],
+ "signature": [
+ {
+ "pluginId": "@kbn/logging",
+ "scope": "common",
+ "docId": "kibKbnLoggingPluginApi",
+ "section": "def-common.Logger",
+ "text": "Logger"
+ }
+ ],
+ "path": "packages/kbn-content-management-utils/src/saved_object_content_storage.ts",
+ "deprecated": false,
+ "trackAdoption": false
+ },
+ {
+ "parentPluginId": "@kbn/content-management-utils",
+ "id": "def-common.SOContentStorageConstrutorParams.throwOnResultValidationError",
+ "type": "boolean",
+ "tags": [],
+ "label": "throwOnResultValidationError",
+ "description": [],
+ "path": "packages/kbn-content-management-utils/src/saved_object_content_storage.ts",
+ "deprecated": false,
+ "trackAdoption": false
}
],
"initialIsOpen": false
diff --git a/api_docs/kbn_content_management_utils.mdx b/api_docs/kbn_content_management_utils.mdx
index d4cebb9c0bf3e..30f5ee8852fa9 100644
--- a/api_docs/kbn_content_management_utils.mdx
+++ b/api_docs/kbn_content_management_utils.mdx
@@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-content-management-utils
title: "@kbn/content-management-utils"
image: https://source.unsplash.com/400x175/?github
description: API docs for the @kbn/content-management-utils plugin
-date: 2023-09-28
+date: 2023-09-29
tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/content-management-utils']
---
import kbnContentManagementUtilsObj from './kbn_content_management_utils.devdocs.json';
@@ -21,7 +21,7 @@ Contact [@elastic/kibana-data-discovery](https://github.com/orgs/elastic/teams/k
| Public API count | Any count | Items lacking comments | Missing exports |
|-------------------|-----------|------------------------|-----------------|
-| 189 | 1 | 124 | 0 |
+| 191 | 1 | 126 | 0 |
## Common
diff --git a/api_docs/kbn_core_analytics_browser.mdx b/api_docs/kbn_core_analytics_browser.mdx
index d4533e8a3ca29..80105cee5b984 100644
--- a/api_docs/kbn_core_analytics_browser.mdx
+++ b/api_docs/kbn_core_analytics_browser.mdx
@@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-core-analytics-browser
title: "@kbn/core-analytics-browser"
image: https://source.unsplash.com/400x175/?github
description: API docs for the @kbn/core-analytics-browser plugin
-date: 2023-09-28
+date: 2023-09-29
tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/core-analytics-browser']
---
import kbnCoreAnalyticsBrowserObj from './kbn_core_analytics_browser.devdocs.json';
diff --git a/api_docs/kbn_core_analytics_browser_internal.mdx b/api_docs/kbn_core_analytics_browser_internal.mdx
index 79d0dacbb6976..2bf8096861e66 100644
--- a/api_docs/kbn_core_analytics_browser_internal.mdx
+++ b/api_docs/kbn_core_analytics_browser_internal.mdx
@@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-core-analytics-browser-internal
title: "@kbn/core-analytics-browser-internal"
image: https://source.unsplash.com/400x175/?github
description: API docs for the @kbn/core-analytics-browser-internal plugin
-date: 2023-09-28
+date: 2023-09-29
tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/core-analytics-browser-internal']
---
import kbnCoreAnalyticsBrowserInternalObj from './kbn_core_analytics_browser_internal.devdocs.json';
diff --git a/api_docs/kbn_core_analytics_browser_mocks.mdx b/api_docs/kbn_core_analytics_browser_mocks.mdx
index 36cb7ba1c0d91..c4347ddf1b74a 100644
--- a/api_docs/kbn_core_analytics_browser_mocks.mdx
+++ b/api_docs/kbn_core_analytics_browser_mocks.mdx
@@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-core-analytics-browser-mocks
title: "@kbn/core-analytics-browser-mocks"
image: https://source.unsplash.com/400x175/?github
description: API docs for the @kbn/core-analytics-browser-mocks plugin
-date: 2023-09-28
+date: 2023-09-29
tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/core-analytics-browser-mocks']
---
import kbnCoreAnalyticsBrowserMocksObj from './kbn_core_analytics_browser_mocks.devdocs.json';
diff --git a/api_docs/kbn_core_analytics_server.mdx b/api_docs/kbn_core_analytics_server.mdx
index 6309657c04668..4e96886c05842 100644
--- a/api_docs/kbn_core_analytics_server.mdx
+++ b/api_docs/kbn_core_analytics_server.mdx
@@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-core-analytics-server
title: "@kbn/core-analytics-server"
image: https://source.unsplash.com/400x175/?github
description: API docs for the @kbn/core-analytics-server plugin
-date: 2023-09-28
+date: 2023-09-29
tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/core-analytics-server']
---
import kbnCoreAnalyticsServerObj from './kbn_core_analytics_server.devdocs.json';
diff --git a/api_docs/kbn_core_analytics_server_internal.mdx b/api_docs/kbn_core_analytics_server_internal.mdx
index 0a3412e046074..88a51e0672da8 100644
--- a/api_docs/kbn_core_analytics_server_internal.mdx
+++ b/api_docs/kbn_core_analytics_server_internal.mdx
@@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-core-analytics-server-internal
title: "@kbn/core-analytics-server-internal"
image: https://source.unsplash.com/400x175/?github
description: API docs for the @kbn/core-analytics-server-internal plugin
-date: 2023-09-28
+date: 2023-09-29
tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/core-analytics-server-internal']
---
import kbnCoreAnalyticsServerInternalObj from './kbn_core_analytics_server_internal.devdocs.json';
diff --git a/api_docs/kbn_core_analytics_server_mocks.mdx b/api_docs/kbn_core_analytics_server_mocks.mdx
index 26b1fba642918..4459c1ed06626 100644
--- a/api_docs/kbn_core_analytics_server_mocks.mdx
+++ b/api_docs/kbn_core_analytics_server_mocks.mdx
@@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-core-analytics-server-mocks
title: "@kbn/core-analytics-server-mocks"
image: https://source.unsplash.com/400x175/?github
description: API docs for the @kbn/core-analytics-server-mocks plugin
-date: 2023-09-28
+date: 2023-09-29
tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/core-analytics-server-mocks']
---
import kbnCoreAnalyticsServerMocksObj from './kbn_core_analytics_server_mocks.devdocs.json';
diff --git a/api_docs/kbn_core_application_browser.devdocs.json b/api_docs/kbn_core_application_browser.devdocs.json
index 20496e028aadf..3a19d55a1ffda 100644
--- a/api_docs/kbn_core_application_browser.devdocs.json
+++ b/api_docs/kbn_core_application_browser.devdocs.json
@@ -1170,14 +1170,14 @@
"plugin": "@kbn/core-application-browser-internal",
"path": "packages/core/application/core-application-browser-internal/src/ui/app_container.tsx"
},
- {
- "plugin": "management",
- "path": "src/plugins/management/public/application.tsx"
- },
{
"plugin": "@kbn/core-application-browser-mocks",
"path": "packages/core/application/core-application-browser-mocks/src/application_service.mock.ts"
},
+ {
+ "plugin": "management",
+ "path": "src/plugins/management/public/application.tsx"
+ },
{
"plugin": "fleet",
"path": "x-pack/plugins/fleet/public/applications/integrations/index.tsx"
diff --git a/api_docs/kbn_core_application_browser.mdx b/api_docs/kbn_core_application_browser.mdx
index 8ebb8fb09de65..9c405809354a7 100644
--- a/api_docs/kbn_core_application_browser.mdx
+++ b/api_docs/kbn_core_application_browser.mdx
@@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-core-application-browser
title: "@kbn/core-application-browser"
image: https://source.unsplash.com/400x175/?github
description: API docs for the @kbn/core-application-browser plugin
-date: 2023-09-28
+date: 2023-09-29
tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/core-application-browser']
---
import kbnCoreApplicationBrowserObj from './kbn_core_application_browser.devdocs.json';
diff --git a/api_docs/kbn_core_application_browser_internal.mdx b/api_docs/kbn_core_application_browser_internal.mdx
index 39aebf4ffbb82..e02e3dd8fdd67 100644
--- a/api_docs/kbn_core_application_browser_internal.mdx
+++ b/api_docs/kbn_core_application_browser_internal.mdx
@@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-core-application-browser-internal
title: "@kbn/core-application-browser-internal"
image: https://source.unsplash.com/400x175/?github
description: API docs for the @kbn/core-application-browser-internal plugin
-date: 2023-09-28
+date: 2023-09-29
tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/core-application-browser-internal']
---
import kbnCoreApplicationBrowserInternalObj from './kbn_core_application_browser_internal.devdocs.json';
diff --git a/api_docs/kbn_core_application_browser_mocks.mdx b/api_docs/kbn_core_application_browser_mocks.mdx
index a6aacb26293bb..329b391f9e783 100644
--- a/api_docs/kbn_core_application_browser_mocks.mdx
+++ b/api_docs/kbn_core_application_browser_mocks.mdx
@@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-core-application-browser-mocks
title: "@kbn/core-application-browser-mocks"
image: https://source.unsplash.com/400x175/?github
description: API docs for the @kbn/core-application-browser-mocks plugin
-date: 2023-09-28
+date: 2023-09-29
tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/core-application-browser-mocks']
---
import kbnCoreApplicationBrowserMocksObj from './kbn_core_application_browser_mocks.devdocs.json';
diff --git a/api_docs/kbn_core_application_common.mdx b/api_docs/kbn_core_application_common.mdx
index 3a957dde7e4e9..924bb81945c3b 100644
--- a/api_docs/kbn_core_application_common.mdx
+++ b/api_docs/kbn_core_application_common.mdx
@@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-core-application-common
title: "@kbn/core-application-common"
image: https://source.unsplash.com/400x175/?github
description: API docs for the @kbn/core-application-common plugin
-date: 2023-09-28
+date: 2023-09-29
tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/core-application-common']
---
import kbnCoreApplicationCommonObj from './kbn_core_application_common.devdocs.json';
diff --git a/api_docs/kbn_core_apps_browser_internal.mdx b/api_docs/kbn_core_apps_browser_internal.mdx
index 0d8658fe737d0..80a7d30c1486c 100644
--- a/api_docs/kbn_core_apps_browser_internal.mdx
+++ b/api_docs/kbn_core_apps_browser_internal.mdx
@@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-core-apps-browser-internal
title: "@kbn/core-apps-browser-internal"
image: https://source.unsplash.com/400x175/?github
description: API docs for the @kbn/core-apps-browser-internal plugin
-date: 2023-09-28
+date: 2023-09-29
tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/core-apps-browser-internal']
---
import kbnCoreAppsBrowserInternalObj from './kbn_core_apps_browser_internal.devdocs.json';
diff --git a/api_docs/kbn_core_apps_browser_mocks.mdx b/api_docs/kbn_core_apps_browser_mocks.mdx
index 478e7174601ec..5f1be86cb3fbd 100644
--- a/api_docs/kbn_core_apps_browser_mocks.mdx
+++ b/api_docs/kbn_core_apps_browser_mocks.mdx
@@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-core-apps-browser-mocks
title: "@kbn/core-apps-browser-mocks"
image: https://source.unsplash.com/400x175/?github
description: API docs for the @kbn/core-apps-browser-mocks plugin
-date: 2023-09-28
+date: 2023-09-29
tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/core-apps-browser-mocks']
---
import kbnCoreAppsBrowserMocksObj from './kbn_core_apps_browser_mocks.devdocs.json';
diff --git a/api_docs/kbn_core_apps_server_internal.mdx b/api_docs/kbn_core_apps_server_internal.mdx
index ebc951ec9dd25..811f4dce0cafe 100644
--- a/api_docs/kbn_core_apps_server_internal.mdx
+++ b/api_docs/kbn_core_apps_server_internal.mdx
@@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-core-apps-server-internal
title: "@kbn/core-apps-server-internal"
image: https://source.unsplash.com/400x175/?github
description: API docs for the @kbn/core-apps-server-internal plugin
-date: 2023-09-28
+date: 2023-09-29
tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/core-apps-server-internal']
---
import kbnCoreAppsServerInternalObj from './kbn_core_apps_server_internal.devdocs.json';
diff --git a/api_docs/kbn_core_base_browser_mocks.mdx b/api_docs/kbn_core_base_browser_mocks.mdx
index 5180cf1af8416..ec6e595bc7760 100644
--- a/api_docs/kbn_core_base_browser_mocks.mdx
+++ b/api_docs/kbn_core_base_browser_mocks.mdx
@@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-core-base-browser-mocks
title: "@kbn/core-base-browser-mocks"
image: https://source.unsplash.com/400x175/?github
description: API docs for the @kbn/core-base-browser-mocks plugin
-date: 2023-09-28
+date: 2023-09-29
tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/core-base-browser-mocks']
---
import kbnCoreBaseBrowserMocksObj from './kbn_core_base_browser_mocks.devdocs.json';
diff --git a/api_docs/kbn_core_base_common.mdx b/api_docs/kbn_core_base_common.mdx
index 39f937c122185..312fb39d6ab83 100644
--- a/api_docs/kbn_core_base_common.mdx
+++ b/api_docs/kbn_core_base_common.mdx
@@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-core-base-common
title: "@kbn/core-base-common"
image: https://source.unsplash.com/400x175/?github
description: API docs for the @kbn/core-base-common plugin
-date: 2023-09-28
+date: 2023-09-29
tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/core-base-common']
---
import kbnCoreBaseCommonObj from './kbn_core_base_common.devdocs.json';
diff --git a/api_docs/kbn_core_base_server_internal.mdx b/api_docs/kbn_core_base_server_internal.mdx
index 31a1d4182c3c0..fd0cd5bc0561a 100644
--- a/api_docs/kbn_core_base_server_internal.mdx
+++ b/api_docs/kbn_core_base_server_internal.mdx
@@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-core-base-server-internal
title: "@kbn/core-base-server-internal"
image: https://source.unsplash.com/400x175/?github
description: API docs for the @kbn/core-base-server-internal plugin
-date: 2023-09-28
+date: 2023-09-29
tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/core-base-server-internal']
---
import kbnCoreBaseServerInternalObj from './kbn_core_base_server_internal.devdocs.json';
diff --git a/api_docs/kbn_core_base_server_mocks.mdx b/api_docs/kbn_core_base_server_mocks.mdx
index 5a19bc8be74a2..0b32d438827ed 100644
--- a/api_docs/kbn_core_base_server_mocks.mdx
+++ b/api_docs/kbn_core_base_server_mocks.mdx
@@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-core-base-server-mocks
title: "@kbn/core-base-server-mocks"
image: https://source.unsplash.com/400x175/?github
description: API docs for the @kbn/core-base-server-mocks plugin
-date: 2023-09-28
+date: 2023-09-29
tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/core-base-server-mocks']
---
import kbnCoreBaseServerMocksObj from './kbn_core_base_server_mocks.devdocs.json';
diff --git a/api_docs/kbn_core_capabilities_browser_mocks.mdx b/api_docs/kbn_core_capabilities_browser_mocks.mdx
index b71d5a4556622..4f159e0cdce76 100644
--- a/api_docs/kbn_core_capabilities_browser_mocks.mdx
+++ b/api_docs/kbn_core_capabilities_browser_mocks.mdx
@@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-core-capabilities-browser-mocks
title: "@kbn/core-capabilities-browser-mocks"
image: https://source.unsplash.com/400x175/?github
description: API docs for the @kbn/core-capabilities-browser-mocks plugin
-date: 2023-09-28
+date: 2023-09-29
tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/core-capabilities-browser-mocks']
---
import kbnCoreCapabilitiesBrowserMocksObj from './kbn_core_capabilities_browser_mocks.devdocs.json';
diff --git a/api_docs/kbn_core_capabilities_common.mdx b/api_docs/kbn_core_capabilities_common.mdx
index a1ccb5925ab90..71d5a3b84262c 100644
--- a/api_docs/kbn_core_capabilities_common.mdx
+++ b/api_docs/kbn_core_capabilities_common.mdx
@@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-core-capabilities-common
title: "@kbn/core-capabilities-common"
image: https://source.unsplash.com/400x175/?github
description: API docs for the @kbn/core-capabilities-common plugin
-date: 2023-09-28
+date: 2023-09-29
tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/core-capabilities-common']
---
import kbnCoreCapabilitiesCommonObj from './kbn_core_capabilities_common.devdocs.json';
diff --git a/api_docs/kbn_core_capabilities_server.mdx b/api_docs/kbn_core_capabilities_server.mdx
index c4cf94e48060b..6463c11bfab70 100644
--- a/api_docs/kbn_core_capabilities_server.mdx
+++ b/api_docs/kbn_core_capabilities_server.mdx
@@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-core-capabilities-server
title: "@kbn/core-capabilities-server"
image: https://source.unsplash.com/400x175/?github
description: API docs for the @kbn/core-capabilities-server plugin
-date: 2023-09-28
+date: 2023-09-29
tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/core-capabilities-server']
---
import kbnCoreCapabilitiesServerObj from './kbn_core_capabilities_server.devdocs.json';
diff --git a/api_docs/kbn_core_capabilities_server_mocks.mdx b/api_docs/kbn_core_capabilities_server_mocks.mdx
index b33b1085edc95..e8b02443c4cf1 100644
--- a/api_docs/kbn_core_capabilities_server_mocks.mdx
+++ b/api_docs/kbn_core_capabilities_server_mocks.mdx
@@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-core-capabilities-server-mocks
title: "@kbn/core-capabilities-server-mocks"
image: https://source.unsplash.com/400x175/?github
description: API docs for the @kbn/core-capabilities-server-mocks plugin
-date: 2023-09-28
+date: 2023-09-29
tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/core-capabilities-server-mocks']
---
import kbnCoreCapabilitiesServerMocksObj from './kbn_core_capabilities_server_mocks.devdocs.json';
diff --git a/api_docs/kbn_core_chrome_browser.devdocs.json b/api_docs/kbn_core_chrome_browser.devdocs.json
index be4abc8f65299..54ae388a3ef42 100644
--- a/api_docs/kbn_core_chrome_browser.devdocs.json
+++ b/api_docs/kbn_core_chrome_browser.devdocs.json
@@ -700,6 +700,9 @@
"tags": [],
"label": "href",
"description": [],
+ "signature": [
+ "string | undefined"
+ ],
"path": "packages/core/chrome/core-chrome-browser/src/nav_controls.ts",
"deprecated": false,
"trackAdoption": false
@@ -717,6 +720,36 @@
"path": "packages/core/chrome/core-chrome-browser/src/nav_controls.ts",
"deprecated": false,
"trackAdoption": false
+ },
+ {
+ "parentPluginId": "@kbn/core-chrome-browser",
+ "id": "def-common.ChromeHelpMenuLink.onClick",
+ "type": "Function",
+ "tags": [],
+ "label": "onClick",
+ "description": [],
+ "signature": [
+ "(() => void) | undefined"
+ ],
+ "path": "packages/core/chrome/core-chrome-browser/src/nav_controls.ts",
+ "deprecated": false,
+ "trackAdoption": false,
+ "children": [],
+ "returnComment": []
+ },
+ {
+ "parentPluginId": "@kbn/core-chrome-browser",
+ "id": "def-common.ChromeHelpMenuLink.dataTestSubj",
+ "type": "string",
+ "tags": [],
+ "label": "dataTestSubj",
+ "description": [],
+ "signature": [
+ "string | undefined"
+ ],
+ "path": "packages/core/chrome/core-chrome-browser/src/nav_controls.ts",
+ "deprecated": false,
+ "trackAdoption": false
}
],
"initialIsOpen": false
diff --git a/api_docs/kbn_core_chrome_browser.mdx b/api_docs/kbn_core_chrome_browser.mdx
index 1c7562d3c4a28..59a0cda12361b 100644
--- a/api_docs/kbn_core_chrome_browser.mdx
+++ b/api_docs/kbn_core_chrome_browser.mdx
@@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-core-chrome-browser
title: "@kbn/core-chrome-browser"
image: https://source.unsplash.com/400x175/?github
description: API docs for the @kbn/core-chrome-browser plugin
-date: 2023-09-28
+date: 2023-09-29
tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/core-chrome-browser']
---
import kbnCoreChromeBrowserObj from './kbn_core_chrome_browser.devdocs.json';
@@ -21,7 +21,7 @@ Contact [@elastic/appex-sharedux](https://github.com/orgs/elastic/teams/appex-sh
| Public API count | Any count | Items lacking comments | Missing exports |
|-------------------|-----------|------------------------|-----------------|
-| 170 | 0 | 68 | 1 |
+| 172 | 0 | 70 | 1 |
## Common
diff --git a/api_docs/kbn_core_chrome_browser_mocks.mdx b/api_docs/kbn_core_chrome_browser_mocks.mdx
index 191515f6604d3..8324a6ebe0dfc 100644
--- a/api_docs/kbn_core_chrome_browser_mocks.mdx
+++ b/api_docs/kbn_core_chrome_browser_mocks.mdx
@@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-core-chrome-browser-mocks
title: "@kbn/core-chrome-browser-mocks"
image: https://source.unsplash.com/400x175/?github
description: API docs for the @kbn/core-chrome-browser-mocks plugin
-date: 2023-09-28
+date: 2023-09-29
tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/core-chrome-browser-mocks']
---
import kbnCoreChromeBrowserMocksObj from './kbn_core_chrome_browser_mocks.devdocs.json';
diff --git a/api_docs/kbn_core_config_server_internal.mdx b/api_docs/kbn_core_config_server_internal.mdx
index 88080e02a8983..5e92d75109f5c 100644
--- a/api_docs/kbn_core_config_server_internal.mdx
+++ b/api_docs/kbn_core_config_server_internal.mdx
@@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-core-config-server-internal
title: "@kbn/core-config-server-internal"
image: https://source.unsplash.com/400x175/?github
description: API docs for the @kbn/core-config-server-internal plugin
-date: 2023-09-28
+date: 2023-09-29
tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/core-config-server-internal']
---
import kbnCoreConfigServerInternalObj from './kbn_core_config_server_internal.devdocs.json';
diff --git a/api_docs/kbn_core_custom_branding_browser.mdx b/api_docs/kbn_core_custom_branding_browser.mdx
index e2d167831114d..154d3e7b5e715 100644
--- a/api_docs/kbn_core_custom_branding_browser.mdx
+++ b/api_docs/kbn_core_custom_branding_browser.mdx
@@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-core-custom-branding-browser
title: "@kbn/core-custom-branding-browser"
image: https://source.unsplash.com/400x175/?github
description: API docs for the @kbn/core-custom-branding-browser plugin
-date: 2023-09-28
+date: 2023-09-29
tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/core-custom-branding-browser']
---
import kbnCoreCustomBrandingBrowserObj from './kbn_core_custom_branding_browser.devdocs.json';
diff --git a/api_docs/kbn_core_custom_branding_browser_internal.mdx b/api_docs/kbn_core_custom_branding_browser_internal.mdx
index 83e190da1dfe0..2af4673e2efd5 100644
--- a/api_docs/kbn_core_custom_branding_browser_internal.mdx
+++ b/api_docs/kbn_core_custom_branding_browser_internal.mdx
@@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-core-custom-branding-browser-internal
title: "@kbn/core-custom-branding-browser-internal"
image: https://source.unsplash.com/400x175/?github
description: API docs for the @kbn/core-custom-branding-browser-internal plugin
-date: 2023-09-28
+date: 2023-09-29
tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/core-custom-branding-browser-internal']
---
import kbnCoreCustomBrandingBrowserInternalObj from './kbn_core_custom_branding_browser_internal.devdocs.json';
diff --git a/api_docs/kbn_core_custom_branding_browser_mocks.mdx b/api_docs/kbn_core_custom_branding_browser_mocks.mdx
index 23ff77dd3f0ac..a79ac6f867082 100644
--- a/api_docs/kbn_core_custom_branding_browser_mocks.mdx
+++ b/api_docs/kbn_core_custom_branding_browser_mocks.mdx
@@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-core-custom-branding-browser-mocks
title: "@kbn/core-custom-branding-browser-mocks"
image: https://source.unsplash.com/400x175/?github
description: API docs for the @kbn/core-custom-branding-browser-mocks plugin
-date: 2023-09-28
+date: 2023-09-29
tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/core-custom-branding-browser-mocks']
---
import kbnCoreCustomBrandingBrowserMocksObj from './kbn_core_custom_branding_browser_mocks.devdocs.json';
diff --git a/api_docs/kbn_core_custom_branding_common.mdx b/api_docs/kbn_core_custom_branding_common.mdx
index b7726c6f59946..d762d332ed18a 100644
--- a/api_docs/kbn_core_custom_branding_common.mdx
+++ b/api_docs/kbn_core_custom_branding_common.mdx
@@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-core-custom-branding-common
title: "@kbn/core-custom-branding-common"
image: https://source.unsplash.com/400x175/?github
description: API docs for the @kbn/core-custom-branding-common plugin
-date: 2023-09-28
+date: 2023-09-29
tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/core-custom-branding-common']
---
import kbnCoreCustomBrandingCommonObj from './kbn_core_custom_branding_common.devdocs.json';
diff --git a/api_docs/kbn_core_custom_branding_server.mdx b/api_docs/kbn_core_custom_branding_server.mdx
index 74ce0af21b331..4ad8ee89830cc 100644
--- a/api_docs/kbn_core_custom_branding_server.mdx
+++ b/api_docs/kbn_core_custom_branding_server.mdx
@@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-core-custom-branding-server
title: "@kbn/core-custom-branding-server"
image: https://source.unsplash.com/400x175/?github
description: API docs for the @kbn/core-custom-branding-server plugin
-date: 2023-09-28
+date: 2023-09-29
tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/core-custom-branding-server']
---
import kbnCoreCustomBrandingServerObj from './kbn_core_custom_branding_server.devdocs.json';
diff --git a/api_docs/kbn_core_custom_branding_server_internal.mdx b/api_docs/kbn_core_custom_branding_server_internal.mdx
index 23ce5a0d344bf..0f46fb0c2151b 100644
--- a/api_docs/kbn_core_custom_branding_server_internal.mdx
+++ b/api_docs/kbn_core_custom_branding_server_internal.mdx
@@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-core-custom-branding-server-internal
title: "@kbn/core-custom-branding-server-internal"
image: https://source.unsplash.com/400x175/?github
description: API docs for the @kbn/core-custom-branding-server-internal plugin
-date: 2023-09-28
+date: 2023-09-29
tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/core-custom-branding-server-internal']
---
import kbnCoreCustomBrandingServerInternalObj from './kbn_core_custom_branding_server_internal.devdocs.json';
diff --git a/api_docs/kbn_core_custom_branding_server_mocks.mdx b/api_docs/kbn_core_custom_branding_server_mocks.mdx
index 0df2f3d89c584..b7a0b0feefc78 100644
--- a/api_docs/kbn_core_custom_branding_server_mocks.mdx
+++ b/api_docs/kbn_core_custom_branding_server_mocks.mdx
@@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-core-custom-branding-server-mocks
title: "@kbn/core-custom-branding-server-mocks"
image: https://source.unsplash.com/400x175/?github
description: API docs for the @kbn/core-custom-branding-server-mocks plugin
-date: 2023-09-28
+date: 2023-09-29
tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/core-custom-branding-server-mocks']
---
import kbnCoreCustomBrandingServerMocksObj from './kbn_core_custom_branding_server_mocks.devdocs.json';
diff --git a/api_docs/kbn_core_deprecations_browser.mdx b/api_docs/kbn_core_deprecations_browser.mdx
index cb3c461f38ee0..a34e4260a873d 100644
--- a/api_docs/kbn_core_deprecations_browser.mdx
+++ b/api_docs/kbn_core_deprecations_browser.mdx
@@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-core-deprecations-browser
title: "@kbn/core-deprecations-browser"
image: https://source.unsplash.com/400x175/?github
description: API docs for the @kbn/core-deprecations-browser plugin
-date: 2023-09-28
+date: 2023-09-29
tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/core-deprecations-browser']
---
import kbnCoreDeprecationsBrowserObj from './kbn_core_deprecations_browser.devdocs.json';
diff --git a/api_docs/kbn_core_deprecations_browser_internal.mdx b/api_docs/kbn_core_deprecations_browser_internal.mdx
index a1298bb3b7bf3..7162643cf2823 100644
--- a/api_docs/kbn_core_deprecations_browser_internal.mdx
+++ b/api_docs/kbn_core_deprecations_browser_internal.mdx
@@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-core-deprecations-browser-internal
title: "@kbn/core-deprecations-browser-internal"
image: https://source.unsplash.com/400x175/?github
description: API docs for the @kbn/core-deprecations-browser-internal plugin
-date: 2023-09-28
+date: 2023-09-29
tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/core-deprecations-browser-internal']
---
import kbnCoreDeprecationsBrowserInternalObj from './kbn_core_deprecations_browser_internal.devdocs.json';
diff --git a/api_docs/kbn_core_deprecations_browser_mocks.mdx b/api_docs/kbn_core_deprecations_browser_mocks.mdx
index fbc7d7c427c44..7557e9e825803 100644
--- a/api_docs/kbn_core_deprecations_browser_mocks.mdx
+++ b/api_docs/kbn_core_deprecations_browser_mocks.mdx
@@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-core-deprecations-browser-mocks
title: "@kbn/core-deprecations-browser-mocks"
image: https://source.unsplash.com/400x175/?github
description: API docs for the @kbn/core-deprecations-browser-mocks plugin
-date: 2023-09-28
+date: 2023-09-29
tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/core-deprecations-browser-mocks']
---
import kbnCoreDeprecationsBrowserMocksObj from './kbn_core_deprecations_browser_mocks.devdocs.json';
diff --git a/api_docs/kbn_core_deprecations_common.mdx b/api_docs/kbn_core_deprecations_common.mdx
index 4424ce41db670..72e439815136a 100644
--- a/api_docs/kbn_core_deprecations_common.mdx
+++ b/api_docs/kbn_core_deprecations_common.mdx
@@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-core-deprecations-common
title: "@kbn/core-deprecations-common"
image: https://source.unsplash.com/400x175/?github
description: API docs for the @kbn/core-deprecations-common plugin
-date: 2023-09-28
+date: 2023-09-29
tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/core-deprecations-common']
---
import kbnCoreDeprecationsCommonObj from './kbn_core_deprecations_common.devdocs.json';
diff --git a/api_docs/kbn_core_deprecations_server.mdx b/api_docs/kbn_core_deprecations_server.mdx
index ad60ef30c0fa5..f0b5d3f995c1d 100644
--- a/api_docs/kbn_core_deprecations_server.mdx
+++ b/api_docs/kbn_core_deprecations_server.mdx
@@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-core-deprecations-server
title: "@kbn/core-deprecations-server"
image: https://source.unsplash.com/400x175/?github
description: API docs for the @kbn/core-deprecations-server plugin
-date: 2023-09-28
+date: 2023-09-29
tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/core-deprecations-server']
---
import kbnCoreDeprecationsServerObj from './kbn_core_deprecations_server.devdocs.json';
diff --git a/api_docs/kbn_core_deprecations_server_internal.mdx b/api_docs/kbn_core_deprecations_server_internal.mdx
index 53b91671f8f47..07f535a1bf647 100644
--- a/api_docs/kbn_core_deprecations_server_internal.mdx
+++ b/api_docs/kbn_core_deprecations_server_internal.mdx
@@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-core-deprecations-server-internal
title: "@kbn/core-deprecations-server-internal"
image: https://source.unsplash.com/400x175/?github
description: API docs for the @kbn/core-deprecations-server-internal plugin
-date: 2023-09-28
+date: 2023-09-29
tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/core-deprecations-server-internal']
---
import kbnCoreDeprecationsServerInternalObj from './kbn_core_deprecations_server_internal.devdocs.json';
diff --git a/api_docs/kbn_core_deprecations_server_mocks.mdx b/api_docs/kbn_core_deprecations_server_mocks.mdx
index a56e3b4359ca2..27b0323be7f10 100644
--- a/api_docs/kbn_core_deprecations_server_mocks.mdx
+++ b/api_docs/kbn_core_deprecations_server_mocks.mdx
@@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-core-deprecations-server-mocks
title: "@kbn/core-deprecations-server-mocks"
image: https://source.unsplash.com/400x175/?github
description: API docs for the @kbn/core-deprecations-server-mocks plugin
-date: 2023-09-28
+date: 2023-09-29
tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/core-deprecations-server-mocks']
---
import kbnCoreDeprecationsServerMocksObj from './kbn_core_deprecations_server_mocks.devdocs.json';
diff --git a/api_docs/kbn_core_doc_links_browser.mdx b/api_docs/kbn_core_doc_links_browser.mdx
index f2c525376d8d4..cdd950ff14033 100644
--- a/api_docs/kbn_core_doc_links_browser.mdx
+++ b/api_docs/kbn_core_doc_links_browser.mdx
@@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-core-doc-links-browser
title: "@kbn/core-doc-links-browser"
image: https://source.unsplash.com/400x175/?github
description: API docs for the @kbn/core-doc-links-browser plugin
-date: 2023-09-28
+date: 2023-09-29
tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/core-doc-links-browser']
---
import kbnCoreDocLinksBrowserObj from './kbn_core_doc_links_browser.devdocs.json';
diff --git a/api_docs/kbn_core_doc_links_browser_mocks.mdx b/api_docs/kbn_core_doc_links_browser_mocks.mdx
index 7d7c855cd3d13..bd9ea4fb8955f 100644
--- a/api_docs/kbn_core_doc_links_browser_mocks.mdx
+++ b/api_docs/kbn_core_doc_links_browser_mocks.mdx
@@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-core-doc-links-browser-mocks
title: "@kbn/core-doc-links-browser-mocks"
image: https://source.unsplash.com/400x175/?github
description: API docs for the @kbn/core-doc-links-browser-mocks plugin
-date: 2023-09-28
+date: 2023-09-29
tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/core-doc-links-browser-mocks']
---
import kbnCoreDocLinksBrowserMocksObj from './kbn_core_doc_links_browser_mocks.devdocs.json';
diff --git a/api_docs/kbn_core_doc_links_server.mdx b/api_docs/kbn_core_doc_links_server.mdx
index 9efbbdcdfcbef..ea4311aabbeb8 100644
--- a/api_docs/kbn_core_doc_links_server.mdx
+++ b/api_docs/kbn_core_doc_links_server.mdx
@@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-core-doc-links-server
title: "@kbn/core-doc-links-server"
image: https://source.unsplash.com/400x175/?github
description: API docs for the @kbn/core-doc-links-server plugin
-date: 2023-09-28
+date: 2023-09-29
tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/core-doc-links-server']
---
import kbnCoreDocLinksServerObj from './kbn_core_doc_links_server.devdocs.json';
diff --git a/api_docs/kbn_core_doc_links_server_mocks.mdx b/api_docs/kbn_core_doc_links_server_mocks.mdx
index cb7d1b750f10d..8bb4e3394f635 100644
--- a/api_docs/kbn_core_doc_links_server_mocks.mdx
+++ b/api_docs/kbn_core_doc_links_server_mocks.mdx
@@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-core-doc-links-server-mocks
title: "@kbn/core-doc-links-server-mocks"
image: https://source.unsplash.com/400x175/?github
description: API docs for the @kbn/core-doc-links-server-mocks plugin
-date: 2023-09-28
+date: 2023-09-29
tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/core-doc-links-server-mocks']
---
import kbnCoreDocLinksServerMocksObj from './kbn_core_doc_links_server_mocks.devdocs.json';
diff --git a/api_docs/kbn_core_elasticsearch_client_server_internal.mdx b/api_docs/kbn_core_elasticsearch_client_server_internal.mdx
index d8e3722069bf9..268cb7e7c1857 100644
--- a/api_docs/kbn_core_elasticsearch_client_server_internal.mdx
+++ b/api_docs/kbn_core_elasticsearch_client_server_internal.mdx
@@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-core-elasticsearch-client-server-internal
title: "@kbn/core-elasticsearch-client-server-internal"
image: https://source.unsplash.com/400x175/?github
description: API docs for the @kbn/core-elasticsearch-client-server-internal plugin
-date: 2023-09-28
+date: 2023-09-29
tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/core-elasticsearch-client-server-internal']
---
import kbnCoreElasticsearchClientServerInternalObj from './kbn_core_elasticsearch_client_server_internal.devdocs.json';
diff --git a/api_docs/kbn_core_elasticsearch_client_server_mocks.mdx b/api_docs/kbn_core_elasticsearch_client_server_mocks.mdx
index 0aa926b62157c..a67e62fe3404b 100644
--- a/api_docs/kbn_core_elasticsearch_client_server_mocks.mdx
+++ b/api_docs/kbn_core_elasticsearch_client_server_mocks.mdx
@@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-core-elasticsearch-client-server-mocks
title: "@kbn/core-elasticsearch-client-server-mocks"
image: https://source.unsplash.com/400x175/?github
description: API docs for the @kbn/core-elasticsearch-client-server-mocks plugin
-date: 2023-09-28
+date: 2023-09-29
tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/core-elasticsearch-client-server-mocks']
---
import kbnCoreElasticsearchClientServerMocksObj from './kbn_core_elasticsearch_client_server_mocks.devdocs.json';
diff --git a/api_docs/kbn_core_elasticsearch_server.mdx b/api_docs/kbn_core_elasticsearch_server.mdx
index 7cce4be09ce73..450df17770638 100644
--- a/api_docs/kbn_core_elasticsearch_server.mdx
+++ b/api_docs/kbn_core_elasticsearch_server.mdx
@@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-core-elasticsearch-server
title: "@kbn/core-elasticsearch-server"
image: https://source.unsplash.com/400x175/?github
description: API docs for the @kbn/core-elasticsearch-server plugin
-date: 2023-09-28
+date: 2023-09-29
tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/core-elasticsearch-server']
---
import kbnCoreElasticsearchServerObj from './kbn_core_elasticsearch_server.devdocs.json';
diff --git a/api_docs/kbn_core_elasticsearch_server_internal.mdx b/api_docs/kbn_core_elasticsearch_server_internal.mdx
index de3db14329cbc..38555d64e55a2 100644
--- a/api_docs/kbn_core_elasticsearch_server_internal.mdx
+++ b/api_docs/kbn_core_elasticsearch_server_internal.mdx
@@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-core-elasticsearch-server-internal
title: "@kbn/core-elasticsearch-server-internal"
image: https://source.unsplash.com/400x175/?github
description: API docs for the @kbn/core-elasticsearch-server-internal plugin
-date: 2023-09-28
+date: 2023-09-29
tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/core-elasticsearch-server-internal']
---
import kbnCoreElasticsearchServerInternalObj from './kbn_core_elasticsearch_server_internal.devdocs.json';
diff --git a/api_docs/kbn_core_elasticsearch_server_mocks.mdx b/api_docs/kbn_core_elasticsearch_server_mocks.mdx
index b6a1f74cddad6..31fd80c0ff57f 100644
--- a/api_docs/kbn_core_elasticsearch_server_mocks.mdx
+++ b/api_docs/kbn_core_elasticsearch_server_mocks.mdx
@@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-core-elasticsearch-server-mocks
title: "@kbn/core-elasticsearch-server-mocks"
image: https://source.unsplash.com/400x175/?github
description: API docs for the @kbn/core-elasticsearch-server-mocks plugin
-date: 2023-09-28
+date: 2023-09-29
tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/core-elasticsearch-server-mocks']
---
import kbnCoreElasticsearchServerMocksObj from './kbn_core_elasticsearch_server_mocks.devdocs.json';
diff --git a/api_docs/kbn_core_environment_server_internal.mdx b/api_docs/kbn_core_environment_server_internal.mdx
index 691311e977e5d..c75d22cb5537d 100644
--- a/api_docs/kbn_core_environment_server_internal.mdx
+++ b/api_docs/kbn_core_environment_server_internal.mdx
@@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-core-environment-server-internal
title: "@kbn/core-environment-server-internal"
image: https://source.unsplash.com/400x175/?github
description: API docs for the @kbn/core-environment-server-internal plugin
-date: 2023-09-28
+date: 2023-09-29
tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/core-environment-server-internal']
---
import kbnCoreEnvironmentServerInternalObj from './kbn_core_environment_server_internal.devdocs.json';
diff --git a/api_docs/kbn_core_environment_server_mocks.mdx b/api_docs/kbn_core_environment_server_mocks.mdx
index 80295a3083d69..fbb2baa9d5df4 100644
--- a/api_docs/kbn_core_environment_server_mocks.mdx
+++ b/api_docs/kbn_core_environment_server_mocks.mdx
@@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-core-environment-server-mocks
title: "@kbn/core-environment-server-mocks"
image: https://source.unsplash.com/400x175/?github
description: API docs for the @kbn/core-environment-server-mocks plugin
-date: 2023-09-28
+date: 2023-09-29
tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/core-environment-server-mocks']
---
import kbnCoreEnvironmentServerMocksObj from './kbn_core_environment_server_mocks.devdocs.json';
diff --git a/api_docs/kbn_core_execution_context_browser.mdx b/api_docs/kbn_core_execution_context_browser.mdx
index 634cf3dcbd8bb..a15efa64555c9 100644
--- a/api_docs/kbn_core_execution_context_browser.mdx
+++ b/api_docs/kbn_core_execution_context_browser.mdx
@@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-core-execution-context-browser
title: "@kbn/core-execution-context-browser"
image: https://source.unsplash.com/400x175/?github
description: API docs for the @kbn/core-execution-context-browser plugin
-date: 2023-09-28
+date: 2023-09-29
tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/core-execution-context-browser']
---
import kbnCoreExecutionContextBrowserObj from './kbn_core_execution_context_browser.devdocs.json';
diff --git a/api_docs/kbn_core_execution_context_browser_internal.mdx b/api_docs/kbn_core_execution_context_browser_internal.mdx
index c593bbc12074d..3c7721972b81b 100644
--- a/api_docs/kbn_core_execution_context_browser_internal.mdx
+++ b/api_docs/kbn_core_execution_context_browser_internal.mdx
@@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-core-execution-context-browser-internal
title: "@kbn/core-execution-context-browser-internal"
image: https://source.unsplash.com/400x175/?github
description: API docs for the @kbn/core-execution-context-browser-internal plugin
-date: 2023-09-28
+date: 2023-09-29
tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/core-execution-context-browser-internal']
---
import kbnCoreExecutionContextBrowserInternalObj from './kbn_core_execution_context_browser_internal.devdocs.json';
diff --git a/api_docs/kbn_core_execution_context_browser_mocks.mdx b/api_docs/kbn_core_execution_context_browser_mocks.mdx
index fd7a220911d48..5a085df5e5e7d 100644
--- a/api_docs/kbn_core_execution_context_browser_mocks.mdx
+++ b/api_docs/kbn_core_execution_context_browser_mocks.mdx
@@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-core-execution-context-browser-mocks
title: "@kbn/core-execution-context-browser-mocks"
image: https://source.unsplash.com/400x175/?github
description: API docs for the @kbn/core-execution-context-browser-mocks plugin
-date: 2023-09-28
+date: 2023-09-29
tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/core-execution-context-browser-mocks']
---
import kbnCoreExecutionContextBrowserMocksObj from './kbn_core_execution_context_browser_mocks.devdocs.json';
diff --git a/api_docs/kbn_core_execution_context_common.mdx b/api_docs/kbn_core_execution_context_common.mdx
index 86c30b168377b..d8b8f9d526ce7 100644
--- a/api_docs/kbn_core_execution_context_common.mdx
+++ b/api_docs/kbn_core_execution_context_common.mdx
@@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-core-execution-context-common
title: "@kbn/core-execution-context-common"
image: https://source.unsplash.com/400x175/?github
description: API docs for the @kbn/core-execution-context-common plugin
-date: 2023-09-28
+date: 2023-09-29
tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/core-execution-context-common']
---
import kbnCoreExecutionContextCommonObj from './kbn_core_execution_context_common.devdocs.json';
diff --git a/api_docs/kbn_core_execution_context_server.mdx b/api_docs/kbn_core_execution_context_server.mdx
index 00cdaa00caea3..d501fa7dcab43 100644
--- a/api_docs/kbn_core_execution_context_server.mdx
+++ b/api_docs/kbn_core_execution_context_server.mdx
@@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-core-execution-context-server
title: "@kbn/core-execution-context-server"
image: https://source.unsplash.com/400x175/?github
description: API docs for the @kbn/core-execution-context-server plugin
-date: 2023-09-28
+date: 2023-09-29
tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/core-execution-context-server']
---
import kbnCoreExecutionContextServerObj from './kbn_core_execution_context_server.devdocs.json';
diff --git a/api_docs/kbn_core_execution_context_server_internal.mdx b/api_docs/kbn_core_execution_context_server_internal.mdx
index 10b8ec36f3db9..719543549d16c 100644
--- a/api_docs/kbn_core_execution_context_server_internal.mdx
+++ b/api_docs/kbn_core_execution_context_server_internal.mdx
@@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-core-execution-context-server-internal
title: "@kbn/core-execution-context-server-internal"
image: https://source.unsplash.com/400x175/?github
description: API docs for the @kbn/core-execution-context-server-internal plugin
-date: 2023-09-28
+date: 2023-09-29
tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/core-execution-context-server-internal']
---
import kbnCoreExecutionContextServerInternalObj from './kbn_core_execution_context_server_internal.devdocs.json';
diff --git a/api_docs/kbn_core_execution_context_server_mocks.mdx b/api_docs/kbn_core_execution_context_server_mocks.mdx
index 749548052ec4b..f6613da48118c 100644
--- a/api_docs/kbn_core_execution_context_server_mocks.mdx
+++ b/api_docs/kbn_core_execution_context_server_mocks.mdx
@@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-core-execution-context-server-mocks
title: "@kbn/core-execution-context-server-mocks"
image: https://source.unsplash.com/400x175/?github
description: API docs for the @kbn/core-execution-context-server-mocks plugin
-date: 2023-09-28
+date: 2023-09-29
tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/core-execution-context-server-mocks']
---
import kbnCoreExecutionContextServerMocksObj from './kbn_core_execution_context_server_mocks.devdocs.json';
diff --git a/api_docs/kbn_core_fatal_errors_browser.mdx b/api_docs/kbn_core_fatal_errors_browser.mdx
index db3810525894e..c4360c51fd432 100644
--- a/api_docs/kbn_core_fatal_errors_browser.mdx
+++ b/api_docs/kbn_core_fatal_errors_browser.mdx
@@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-core-fatal-errors-browser
title: "@kbn/core-fatal-errors-browser"
image: https://source.unsplash.com/400x175/?github
description: API docs for the @kbn/core-fatal-errors-browser plugin
-date: 2023-09-28
+date: 2023-09-29
tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/core-fatal-errors-browser']
---
import kbnCoreFatalErrorsBrowserObj from './kbn_core_fatal_errors_browser.devdocs.json';
diff --git a/api_docs/kbn_core_fatal_errors_browser_mocks.mdx b/api_docs/kbn_core_fatal_errors_browser_mocks.mdx
index d23a328991d08..fa5917ff4ee3a 100644
--- a/api_docs/kbn_core_fatal_errors_browser_mocks.mdx
+++ b/api_docs/kbn_core_fatal_errors_browser_mocks.mdx
@@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-core-fatal-errors-browser-mocks
title: "@kbn/core-fatal-errors-browser-mocks"
image: https://source.unsplash.com/400x175/?github
description: API docs for the @kbn/core-fatal-errors-browser-mocks plugin
-date: 2023-09-28
+date: 2023-09-29
tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/core-fatal-errors-browser-mocks']
---
import kbnCoreFatalErrorsBrowserMocksObj from './kbn_core_fatal_errors_browser_mocks.devdocs.json';
diff --git a/api_docs/kbn_core_http_browser.mdx b/api_docs/kbn_core_http_browser.mdx
index 4dea726a477fc..93e539b212943 100644
--- a/api_docs/kbn_core_http_browser.mdx
+++ b/api_docs/kbn_core_http_browser.mdx
@@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-core-http-browser
title: "@kbn/core-http-browser"
image: https://source.unsplash.com/400x175/?github
description: API docs for the @kbn/core-http-browser plugin
-date: 2023-09-28
+date: 2023-09-29
tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/core-http-browser']
---
import kbnCoreHttpBrowserObj from './kbn_core_http_browser.devdocs.json';
diff --git a/api_docs/kbn_core_http_browser_internal.mdx b/api_docs/kbn_core_http_browser_internal.mdx
index 6a2de46613a31..386704f1902d6 100644
--- a/api_docs/kbn_core_http_browser_internal.mdx
+++ b/api_docs/kbn_core_http_browser_internal.mdx
@@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-core-http-browser-internal
title: "@kbn/core-http-browser-internal"
image: https://source.unsplash.com/400x175/?github
description: API docs for the @kbn/core-http-browser-internal plugin
-date: 2023-09-28
+date: 2023-09-29
tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/core-http-browser-internal']
---
import kbnCoreHttpBrowserInternalObj from './kbn_core_http_browser_internal.devdocs.json';
diff --git a/api_docs/kbn_core_http_browser_mocks.mdx b/api_docs/kbn_core_http_browser_mocks.mdx
index a7a286980e44c..5472b00ca926d 100644
--- a/api_docs/kbn_core_http_browser_mocks.mdx
+++ b/api_docs/kbn_core_http_browser_mocks.mdx
@@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-core-http-browser-mocks
title: "@kbn/core-http-browser-mocks"
image: https://source.unsplash.com/400x175/?github
description: API docs for the @kbn/core-http-browser-mocks plugin
-date: 2023-09-28
+date: 2023-09-29
tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/core-http-browser-mocks']
---
import kbnCoreHttpBrowserMocksObj from './kbn_core_http_browser_mocks.devdocs.json';
diff --git a/api_docs/kbn_core_http_common.mdx b/api_docs/kbn_core_http_common.mdx
index 12eb176db54fa..5cdf94fe763cf 100644
--- a/api_docs/kbn_core_http_common.mdx
+++ b/api_docs/kbn_core_http_common.mdx
@@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-core-http-common
title: "@kbn/core-http-common"
image: https://source.unsplash.com/400x175/?github
description: API docs for the @kbn/core-http-common plugin
-date: 2023-09-28
+date: 2023-09-29
tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/core-http-common']
---
import kbnCoreHttpCommonObj from './kbn_core_http_common.devdocs.json';
diff --git a/api_docs/kbn_core_http_context_server_mocks.mdx b/api_docs/kbn_core_http_context_server_mocks.mdx
index 5e02cb98942e7..d7f9f9c9c8e6d 100644
--- a/api_docs/kbn_core_http_context_server_mocks.mdx
+++ b/api_docs/kbn_core_http_context_server_mocks.mdx
@@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-core-http-context-server-mocks
title: "@kbn/core-http-context-server-mocks"
image: https://source.unsplash.com/400x175/?github
description: API docs for the @kbn/core-http-context-server-mocks plugin
-date: 2023-09-28
+date: 2023-09-29
tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/core-http-context-server-mocks']
---
import kbnCoreHttpContextServerMocksObj from './kbn_core_http_context_server_mocks.devdocs.json';
diff --git a/api_docs/kbn_core_http_request_handler_context_server.mdx b/api_docs/kbn_core_http_request_handler_context_server.mdx
index 2868840a5b79e..4b82248b23ccc 100644
--- a/api_docs/kbn_core_http_request_handler_context_server.mdx
+++ b/api_docs/kbn_core_http_request_handler_context_server.mdx
@@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-core-http-request-handler-context-server
title: "@kbn/core-http-request-handler-context-server"
image: https://source.unsplash.com/400x175/?github
description: API docs for the @kbn/core-http-request-handler-context-server plugin
-date: 2023-09-28
+date: 2023-09-29
tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/core-http-request-handler-context-server']
---
import kbnCoreHttpRequestHandlerContextServerObj from './kbn_core_http_request_handler_context_server.devdocs.json';
diff --git a/api_docs/kbn_core_http_resources_server.mdx b/api_docs/kbn_core_http_resources_server.mdx
index 2a8e5aa4f1674..6883961a57846 100644
--- a/api_docs/kbn_core_http_resources_server.mdx
+++ b/api_docs/kbn_core_http_resources_server.mdx
@@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-core-http-resources-server
title: "@kbn/core-http-resources-server"
image: https://source.unsplash.com/400x175/?github
description: API docs for the @kbn/core-http-resources-server plugin
-date: 2023-09-28
+date: 2023-09-29
tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/core-http-resources-server']
---
import kbnCoreHttpResourcesServerObj from './kbn_core_http_resources_server.devdocs.json';
diff --git a/api_docs/kbn_core_http_resources_server_internal.mdx b/api_docs/kbn_core_http_resources_server_internal.mdx
index 873b5e1bc49c8..c214c339d429b 100644
--- a/api_docs/kbn_core_http_resources_server_internal.mdx
+++ b/api_docs/kbn_core_http_resources_server_internal.mdx
@@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-core-http-resources-server-internal
title: "@kbn/core-http-resources-server-internal"
image: https://source.unsplash.com/400x175/?github
description: API docs for the @kbn/core-http-resources-server-internal plugin
-date: 2023-09-28
+date: 2023-09-29
tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/core-http-resources-server-internal']
---
import kbnCoreHttpResourcesServerInternalObj from './kbn_core_http_resources_server_internal.devdocs.json';
diff --git a/api_docs/kbn_core_http_resources_server_mocks.mdx b/api_docs/kbn_core_http_resources_server_mocks.mdx
index 3b3ff461777e1..1f6da382e3b85 100644
--- a/api_docs/kbn_core_http_resources_server_mocks.mdx
+++ b/api_docs/kbn_core_http_resources_server_mocks.mdx
@@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-core-http-resources-server-mocks
title: "@kbn/core-http-resources-server-mocks"
image: https://source.unsplash.com/400x175/?github
description: API docs for the @kbn/core-http-resources-server-mocks plugin
-date: 2023-09-28
+date: 2023-09-29
tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/core-http-resources-server-mocks']
---
import kbnCoreHttpResourcesServerMocksObj from './kbn_core_http_resources_server_mocks.devdocs.json';
diff --git a/api_docs/kbn_core_http_router_server_internal.mdx b/api_docs/kbn_core_http_router_server_internal.mdx
index a075a2a2bd853..e93b17de62c71 100644
--- a/api_docs/kbn_core_http_router_server_internal.mdx
+++ b/api_docs/kbn_core_http_router_server_internal.mdx
@@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-core-http-router-server-internal
title: "@kbn/core-http-router-server-internal"
image: https://source.unsplash.com/400x175/?github
description: API docs for the @kbn/core-http-router-server-internal plugin
-date: 2023-09-28
+date: 2023-09-29
tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/core-http-router-server-internal']
---
import kbnCoreHttpRouterServerInternalObj from './kbn_core_http_router_server_internal.devdocs.json';
diff --git a/api_docs/kbn_core_http_router_server_mocks.mdx b/api_docs/kbn_core_http_router_server_mocks.mdx
index e57b8659b7643..a2cb206f5fc90 100644
--- a/api_docs/kbn_core_http_router_server_mocks.mdx
+++ b/api_docs/kbn_core_http_router_server_mocks.mdx
@@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-core-http-router-server-mocks
title: "@kbn/core-http-router-server-mocks"
image: https://source.unsplash.com/400x175/?github
description: API docs for the @kbn/core-http-router-server-mocks plugin
-date: 2023-09-28
+date: 2023-09-29
tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/core-http-router-server-mocks']
---
import kbnCoreHttpRouterServerMocksObj from './kbn_core_http_router_server_mocks.devdocs.json';
diff --git a/api_docs/kbn_core_http_server.devdocs.json b/api_docs/kbn_core_http_server.devdocs.json
index 480bb9d8a76a7..b7a7972e5a401 100644
--- a/api_docs/kbn_core_http_server.devdocs.json
+++ b/api_docs/kbn_core_http_server.devdocs.json
@@ -3619,26 +3619,6 @@
"plugin": "ruleRegistry",
"path": "x-pack/plugins/rule_registry/server/routes/get_aad_fields_by_rule_type.ts"
},
- {
- "plugin": "savedObjectsTagging",
- "path": "x-pack/plugins/saved_objects_tagging/server/routes/tags/get_all_tags.ts"
- },
- {
- "plugin": "savedObjectsTagging",
- "path": "x-pack/plugins/saved_objects_tagging/server/routes/tags/get_tag.ts"
- },
- {
- "plugin": "savedObjectsTagging",
- "path": "x-pack/plugins/saved_objects_tagging/server/routes/assignments/find_assignable_objects.ts"
- },
- {
- "plugin": "savedObjectsTagging",
- "path": "x-pack/plugins/saved_objects_tagging/server/routes/assignments/get_assignable_types.ts"
- },
- {
- "plugin": "savedObjectsTagging",
- "path": "x-pack/plugins/saved_objects_tagging/server/routes/internal/find_tags.ts"
- },
{
"plugin": "guidedOnboarding",
"path": "src/plugins/guided_onboarding/server/routes/guide_state_routes.ts"
@@ -3652,48 +3632,36 @@
"path": "src/plugins/guided_onboarding/server/routes/config_routes.ts"
},
{
- "plugin": "securitySolution",
- "path": "x-pack/plugins/security_solution/server/lib/timeline/routes/timelines/get_timeline/index.ts"
- },
- {
- "plugin": "securitySolution",
- "path": "x-pack/plugins/security_solution/server/lib/timeline/routes/timelines/get_timelines/index.ts"
- },
- {
- "plugin": "securitySolution",
- "path": "x-pack/plugins/security_solution/server/lib/timeline/routes/timelines/resolve_timeline/index.ts"
- },
- {
- "plugin": "securitySolution",
- "path": "x-pack/plugins/security_solution/server/lib/timeline/routes/draft_timelines/get_draft_timelines/index.ts"
+ "plugin": "observability",
+ "path": "x-pack/plugins/observability/server/lib/annotations/register_annotation_apis.ts"
},
{
- "plugin": "securitySolution",
- "path": "x-pack/plugins/security_solution/server/endpoint/routes/resolver.ts"
+ "plugin": "triggersActionsUi",
+ "path": "x-pack/plugins/triggers_actions_ui/server/routes/health.ts"
},
{
- "plugin": "securitySolution",
- "path": "x-pack/plugins/security_solution/server/lib/risk_score/prebuilt_dev_tool_content/routes/read_prebuilt_dev_tool_content_route.ts"
+ "plugin": "triggersActionsUi",
+ "path": "x-pack/plugins/triggers_actions_ui/server/routes/config.ts"
},
{
- "plugin": "securitySolution",
- "path": "x-pack/plugins/security_solution/server/lib/risk_score/index_status/index.ts"
+ "plugin": "savedObjectsTagging",
+ "path": "x-pack/plugins/saved_objects_tagging/server/routes/tags/get_all_tags.ts"
},
{
- "plugin": "securitySolution",
- "path": "x-pack/plugins/security_solution/server/lib/risk_engine/routes/risk_engine_status_route.ts"
+ "plugin": "savedObjectsTagging",
+ "path": "x-pack/plugins/saved_objects_tagging/server/routes/tags/get_tag.ts"
},
{
- "plugin": "observability",
- "path": "x-pack/plugins/observability/server/lib/annotations/register_annotation_apis.ts"
+ "plugin": "savedObjectsTagging",
+ "path": "x-pack/plugins/saved_objects_tagging/server/routes/assignments/find_assignable_objects.ts"
},
{
- "plugin": "triggersActionsUi",
- "path": "x-pack/plugins/triggers_actions_ui/server/routes/health.ts"
+ "plugin": "savedObjectsTagging",
+ "path": "x-pack/plugins/saved_objects_tagging/server/routes/assignments/get_assignable_types.ts"
},
{
- "plugin": "triggersActionsUi",
- "path": "x-pack/plugins/triggers_actions_ui/server/routes/config.ts"
+ "plugin": "savedObjectsTagging",
+ "path": "x-pack/plugins/saved_objects_tagging/server/routes/internal/find_tags.ts"
},
{
"plugin": "assetManager",
@@ -4323,6 +4291,34 @@
"plugin": "monitoring",
"path": "x-pack/plugins/monitoring/server/plugin.ts"
},
+ {
+ "plugin": "securitySolution",
+ "path": "x-pack/plugins/security_solution/server/lib/timeline/routes/timelines/get_timeline/index.ts"
+ },
+ {
+ "plugin": "securitySolution",
+ "path": "x-pack/plugins/security_solution/server/lib/timeline/routes/timelines/get_timelines/index.ts"
+ },
+ {
+ "plugin": "securitySolution",
+ "path": "x-pack/plugins/security_solution/server/lib/timeline/routes/timelines/resolve_timeline/index.ts"
+ },
+ {
+ "plugin": "securitySolution",
+ "path": "x-pack/plugins/security_solution/server/lib/timeline/routes/draft_timelines/get_draft_timelines/index.ts"
+ },
+ {
+ "plugin": "securitySolution",
+ "path": "x-pack/plugins/security_solution/server/endpoint/routes/resolver.ts"
+ },
+ {
+ "plugin": "securitySolution",
+ "path": "x-pack/plugins/security_solution/server/lib/risk_score/prebuilt_dev_tool_content/routes/read_prebuilt_dev_tool_content_route.ts"
+ },
+ {
+ "plugin": "securitySolution",
+ "path": "x-pack/plugins/security_solution/server/lib/risk_score/index_status/index.ts"
+ },
{
"plugin": "profiling",
"path": "x-pack/plugins/profiling/server/routes/flamechart.ts"
@@ -6130,104 +6126,40 @@
"path": "x-pack/plugins/rule_registry/server/routes/get_alert_summary.ts"
},
{
- "plugin": "savedObjectsTagging",
- "path": "x-pack/plugins/saved_objects_tagging/server/routes/tags/create_tag.ts"
- },
- {
- "plugin": "savedObjectsTagging",
- "path": "x-pack/plugins/saved_objects_tagging/server/routes/tags/update_tag.ts"
- },
- {
- "plugin": "savedObjectsTagging",
- "path": "x-pack/plugins/saved_objects_tagging/server/routes/assignments/update_tags_assignments.ts"
- },
- {
- "plugin": "savedObjectsTagging",
- "path": "x-pack/plugins/saved_objects_tagging/server/routes/internal/bulk_delete.ts"
+ "plugin": "observability",
+ "path": "x-pack/plugins/observability/server/lib/annotations/register_annotation_apis.ts"
},
{
- "plugin": "securitySolution",
- "path": "x-pack/plugins/security_solution/server/lib/timeline/routes/timelines/create_timelines/index.ts"
+ "plugin": "triggersActionsUi",
+ "path": "x-pack/plugins/triggers_actions_ui/server/data/routes/time_series_query.ts"
},
{
- "plugin": "securitySolution",
- "path": "x-pack/plugins/security_solution/server/lib/timeline/routes/timelines/import_timelines/index.ts"
+ "plugin": "triggersActionsUi",
+ "path": "x-pack/plugins/triggers_actions_ui/server/data/routes/fields.ts"
},
{
- "plugin": "securitySolution",
- "path": "x-pack/plugins/security_solution/server/lib/timeline/routes/prepackaged_timelines/install_prepackaged_timelines/index.ts"
+ "plugin": "triggersActionsUi",
+ "path": "x-pack/plugins/triggers_actions_ui/server/data/routes/indices.ts"
},
{
"plugin": "ml",
"path": "x-pack/plugins/ml/server/routes/job_service.ts"
},
{
- "plugin": "securitySolution",
- "path": "x-pack/plugins/security_solution/server/lib/timeline/routes/timelines/export_timelines/index.ts"
- },
- {
- "plugin": "securitySolution",
- "path": "x-pack/plugins/security_solution/server/lib/timeline/routes/draft_timelines/clean_draft_timelines/index.ts"
- },
- {
- "plugin": "securitySolution",
- "path": "x-pack/plugins/security_solution/server/endpoint/routes/resolver.ts"
- },
- {
- "plugin": "securitySolution",
- "path": "x-pack/plugins/security_solution/server/endpoint/routes/resolver.ts"
- },
- {
- "plugin": "securitySolution",
- "path": "x-pack/plugins/security_solution/server/lib/risk_score/indices/delete_indices_route.ts"
- },
- {
- "plugin": "securitySolution",
- "path": "x-pack/plugins/security_solution/server/lib/risk_score/prebuilt_saved_objects/routes/create_prebuilt_saved_objects.ts"
- },
- {
- "plugin": "securitySolution",
- "path": "x-pack/plugins/security_solution/server/lib/risk_score/prebuilt_saved_objects/routes/delete_prebuilt_saved_objects.ts"
- },
- {
- "plugin": "securitySolution",
- "path": "x-pack/plugins/security_solution/server/lib/risk_score/onboarding/routes/install_risk_scores.ts"
- },
- {
- "plugin": "securitySolution",
- "path": "x-pack/plugins/security_solution/server/lib/risk_engine/routes/risk_score_preview_route.ts"
- },
- {
- "plugin": "securitySolution",
- "path": "x-pack/plugins/security_solution/server/lib/risk_engine/routes/risk_engine_init_route.ts"
- },
- {
- "plugin": "securitySolution",
- "path": "x-pack/plugins/security_solution/server/lib/risk_engine/routes/risk_engine_enable_route.ts"
- },
- {
- "plugin": "securitySolution",
- "path": "x-pack/plugins/security_solution/server/lib/risk_engine/routes/risk_engine_disable_route.ts"
- },
- {
- "plugin": "securitySolution",
- "path": "x-pack/plugins/security_solution/server/lib/risk_engine/routes/risk_score_calculation_route.ts"
- },
- {
- "plugin": "observability",
- "path": "x-pack/plugins/observability/server/lib/annotations/register_annotation_apis.ts"
+ "plugin": "savedObjectsTagging",
+ "path": "x-pack/plugins/saved_objects_tagging/server/routes/tags/create_tag.ts"
},
{
- "plugin": "triggersActionsUi",
- "path": "x-pack/plugins/triggers_actions_ui/server/data/routes/time_series_query.ts"
+ "plugin": "savedObjectsTagging",
+ "path": "x-pack/plugins/saved_objects_tagging/server/routes/tags/update_tag.ts"
},
{
- "plugin": "triggersActionsUi",
- "path": "x-pack/plugins/triggers_actions_ui/server/data/routes/fields.ts"
+ "plugin": "savedObjectsTagging",
+ "path": "x-pack/plugins/saved_objects_tagging/server/routes/assignments/update_tags_assignments.ts"
},
{
- "plugin": "triggersActionsUi",
- "path": "x-pack/plugins/triggers_actions_ui/server/data/routes/indices.ts"
+ "plugin": "savedObjectsTagging",
+ "path": "x-pack/plugins/saved_objects_tagging/server/routes/internal/bulk_delete.ts"
},
{
"plugin": "assetManager",
@@ -6761,6 +6693,50 @@
"plugin": "monitoring",
"path": "x-pack/plugins/monitoring/server/plugin.ts"
},
+ {
+ "plugin": "securitySolution",
+ "path": "x-pack/plugins/security_solution/server/lib/timeline/routes/timelines/create_timelines/index.ts"
+ },
+ {
+ "plugin": "securitySolution",
+ "path": "x-pack/plugins/security_solution/server/lib/timeline/routes/timelines/import_timelines/index.ts"
+ },
+ {
+ "plugin": "securitySolution",
+ "path": "x-pack/plugins/security_solution/server/lib/timeline/routes/prepackaged_timelines/install_prepackaged_timelines/index.ts"
+ },
+ {
+ "plugin": "securitySolution",
+ "path": "x-pack/plugins/security_solution/server/lib/timeline/routes/timelines/export_timelines/index.ts"
+ },
+ {
+ "plugin": "securitySolution",
+ "path": "x-pack/plugins/security_solution/server/lib/timeline/routes/draft_timelines/clean_draft_timelines/index.ts"
+ },
+ {
+ "plugin": "securitySolution",
+ "path": "x-pack/plugins/security_solution/server/endpoint/routes/resolver.ts"
+ },
+ {
+ "plugin": "securitySolution",
+ "path": "x-pack/plugins/security_solution/server/endpoint/routes/resolver.ts"
+ },
+ {
+ "plugin": "securitySolution",
+ "path": "x-pack/plugins/security_solution/server/lib/risk_score/indices/delete_indices_route.ts"
+ },
+ {
+ "plugin": "securitySolution",
+ "path": "x-pack/plugins/security_solution/server/lib/risk_score/prebuilt_saved_objects/routes/create_prebuilt_saved_objects.ts"
+ },
+ {
+ "plugin": "securitySolution",
+ "path": "x-pack/plugins/security_solution/server/lib/risk_score/prebuilt_saved_objects/routes/delete_prebuilt_saved_objects.ts"
+ },
+ {
+ "plugin": "securitySolution",
+ "path": "x-pack/plugins/security_solution/server/lib/risk_score/onboarding/routes/install_risk_scores.ts"
+ },
{
"plugin": "painlessLab",
"path": "x-pack/plugins/painless_lab/server/routes/api/execute.ts"
@@ -7955,14 +7931,6 @@
"plugin": "guidedOnboarding",
"path": "src/plugins/guided_onboarding/server/routes/plugin_state_routes.ts"
},
- {
- "plugin": "securitySolution",
- "path": "x-pack/plugins/security_solution/server/lib/risk_score/indices/create_index_route.ts"
- },
- {
- "plugin": "securitySolution",
- "path": "x-pack/plugins/security_solution/server/lib/risk_score/stored_scripts/create_script_route.ts"
- },
{
"plugin": "reporting",
"path": "x-pack/plugins/reporting/server/routes/internal/deprecations/deprecations.ts"
@@ -8199,6 +8167,14 @@
"plugin": "monitoring",
"path": "x-pack/plugins/monitoring/server/plugin.ts"
},
+ {
+ "plugin": "securitySolution",
+ "path": "x-pack/plugins/security_solution/server/lib/risk_score/indices/create_index_route.ts"
+ },
+ {
+ "plugin": "securitySolution",
+ "path": "x-pack/plugins/security_solution/server/lib/risk_score/stored_scripts/create_script_route.ts"
+ },
{
"plugin": "reporting",
"path": "x-pack/plugins/reporting/server/test_helpers/create_mock_reportingplugin.ts"
@@ -8618,36 +8594,36 @@
"path": "x-pack/plugins/alerting/server/routes/bulk_disable_rules.ts"
},
{
- "plugin": "securitySolution",
- "path": "x-pack/plugins/security_solution/server/lib/timeline/routes/timelines/patch_timelines/index.ts"
+ "plugin": "enterpriseSearch",
+ "path": "x-pack/plugins/enterprise_search/server/routes/workplace_search/security.ts"
},
{
- "plugin": "securitySolution",
- "path": "x-pack/plugins/security_solution/server/lib/timeline/routes/timelines/persist_favorite/index.ts"
+ "plugin": "enterpriseSearch",
+ "path": "x-pack/plugins/enterprise_search/server/routes/workplace_search/sources.ts"
},
{
- "plugin": "securitySolution",
- "path": "x-pack/plugins/security_solution/server/lib/timeline/routes/notes/persist_note.ts"
+ "plugin": "enterpriseSearch",
+ "path": "x-pack/plugins/enterprise_search/server/routes/workplace_search/sources.ts"
},
{
- "plugin": "securitySolution",
- "path": "x-pack/plugins/security_solution/server/lib/timeline/routes/pinned_events/persist_pinned_event.ts"
+ "plugin": "infra",
+ "path": "x-pack/plugins/infra/server/lib/adapters/framework/kibana_framework_adapter.ts"
},
{
- "plugin": "enterpriseSearch",
- "path": "x-pack/plugins/enterprise_search/server/routes/workplace_search/security.ts"
+ "plugin": "securitySolution",
+ "path": "x-pack/plugins/security_solution/server/lib/timeline/routes/timelines/patch_timelines/index.ts"
},
{
- "plugin": "enterpriseSearch",
- "path": "x-pack/plugins/enterprise_search/server/routes/workplace_search/sources.ts"
+ "plugin": "securitySolution",
+ "path": "x-pack/plugins/security_solution/server/lib/timeline/routes/timelines/persist_favorite/index.ts"
},
{
- "plugin": "enterpriseSearch",
- "path": "x-pack/plugins/enterprise_search/server/routes/workplace_search/sources.ts"
+ "plugin": "securitySolution",
+ "path": "x-pack/plugins/security_solution/server/lib/timeline/routes/notes/persist_note.ts"
},
{
- "plugin": "infra",
- "path": "x-pack/plugins/infra/server/lib/adapters/framework/kibana_framework_adapter.ts"
+ "plugin": "securitySolution",
+ "path": "x-pack/plugins/security_solution/server/lib/timeline/routes/pinned_events/persist_pinned_event.ts"
},
{
"plugin": "@kbn/core-http-router-server-internal",
@@ -8975,26 +8951,14 @@
"plugin": "alerting",
"path": "x-pack/plugins/alerting/server/routes/maintenance_window/apis/delete/delete_maintenance_window_route.ts"
},
- {
- "plugin": "savedObjectsTagging",
- "path": "x-pack/plugins/saved_objects_tagging/server/routes/tags/delete_tag.ts"
- },
- {
- "plugin": "securitySolution",
- "path": "x-pack/plugins/security_solution/server/lib/timeline/routes/timelines/delete_timelines/index.ts"
- },
- {
- "plugin": "securitySolution",
- "path": "x-pack/plugins/security_solution/server/lib/timeline/routes/notes/delete_note.ts"
- },
- {
- "plugin": "securitySolution",
- "path": "x-pack/plugins/security_solution/server/lib/risk_score/stored_scripts/delete_script_route.ts"
- },
{
"plugin": "observability",
"path": "x-pack/plugins/observability/server/lib/annotations/register_annotation_apis.ts"
},
+ {
+ "plugin": "savedObjectsTagging",
+ "path": "x-pack/plugins/saved_objects_tagging/server/routes/tags/delete_tag.ts"
+ },
{
"plugin": "assetManager",
"path": "x-pack/plugins/asset_manager/server/routes/sample_assets.ts"
@@ -9167,6 +9131,18 @@
"plugin": "logstash",
"path": "x-pack/plugins/logstash/server/routes/pipeline/delete.ts"
},
+ {
+ "plugin": "securitySolution",
+ "path": "x-pack/plugins/security_solution/server/lib/timeline/routes/timelines/delete_timelines/index.ts"
+ },
+ {
+ "plugin": "securitySolution",
+ "path": "x-pack/plugins/security_solution/server/lib/timeline/routes/notes/delete_note.ts"
+ },
+ {
+ "plugin": "securitySolution",
+ "path": "x-pack/plugins/security_solution/server/lib/risk_score/stored_scripts/delete_script_route.ts"
+ },
{
"plugin": "reporting",
"path": "x-pack/plugins/reporting/server/test_helpers/create_mock_reportingplugin.ts"
@@ -12925,6 +12901,10 @@
"deprecated": false,
"trackAdoption": true,
"references": [
+ {
+ "plugin": "@kbn/core-http-router-server-mocks",
+ "path": "packages/core/http/core-http-router-server-mocks/src/versioned_router.mock.ts"
+ },
{
"plugin": "dataViews",
"path": "src/plugins/data_views/server/rest_api_routes/public/runtime_fields/get_runtime_field.ts"
@@ -12981,78 +12961,6 @@
"plugin": "data",
"path": "src/plugins/data/server/scripts/route.ts"
},
- {
- "plugin": "lists",
- "path": "x-pack/plugins/lists/server/routes/find_endpoint_list_item_route.ts"
- },
- {
- "plugin": "lists",
- "path": "x-pack/plugins/lists/server/routes/find_exception_list_item_route.ts"
- },
- {
- "plugin": "lists",
- "path": "x-pack/plugins/lists/server/routes/find_exception_list_route.ts"
- },
- {
- "plugin": "lists",
- "path": "x-pack/plugins/lists/server/routes/list_item/find_list_item_route.ts"
- },
- {
- "plugin": "lists",
- "path": "x-pack/plugins/lists/server/routes/list_index/find_list_route.ts"
- },
- {
- "plugin": "lists",
- "path": "x-pack/plugins/lists/server/routes/internal/find_lists_by_size_route.ts"
- },
- {
- "plugin": "lists",
- "path": "x-pack/plugins/lists/server/routes/read_endpoint_list_item_route.ts"
- },
- {
- "plugin": "lists",
- "path": "x-pack/plugins/lists/server/routes/read_exception_list_item_route.ts"
- },
- {
- "plugin": "lists",
- "path": "x-pack/plugins/lists/server/routes/read_exception_list_route.ts"
- },
- {
- "plugin": "lists",
- "path": "x-pack/plugins/lists/server/routes/list_index/read_list_index_route.ts"
- },
- {
- "plugin": "lists",
- "path": "x-pack/plugins/lists/server/routes/list_item/read_list_item_route.ts"
- },
- {
- "plugin": "lists",
- "path": "x-pack/plugins/lists/server/routes/list/read_list_route.ts"
- },
- {
- "plugin": "lists",
- "path": "x-pack/plugins/lists/server/routes/list_privileges/read_list_privileges_route.ts"
- },
- {
- "plugin": "lists",
- "path": "x-pack/plugins/lists/server/routes/summary_exception_list_route.ts"
- },
- {
- "plugin": "telemetry",
- "path": "src/plugins/telemetry/server/routes/telemetry_config.ts"
- },
- {
- "plugin": "telemetry",
- "path": "src/plugins/telemetry/server/routes/telemetry_config.ts"
- },
- {
- "plugin": "telemetry",
- "path": "src/plugins/telemetry/server/routes/telemetry_last_reported.ts"
- },
- {
- "plugin": "fleet",
- "path": "x-pack/plugins/fleet/server/services/security/fleet_router.ts"
- },
{
"plugin": "ml",
"path": "x-pack/plugins/ml/server/routes/json_schema.ts"
@@ -13278,304 +13186,376 @@
"path": "x-pack/plugins/ml/server/routes/management.ts"
},
{
- "plugin": "osquery",
- "path": "x-pack/plugins/osquery/server/routes/live_query/get_live_query_details_route.ts"
+ "plugin": "telemetry",
+ "path": "src/plugins/telemetry/server/routes/telemetry_config.ts"
},
{
- "plugin": "osquery",
- "path": "x-pack/plugins/osquery/server/routes/live_query/get_live_query_results_route.ts"
+ "plugin": "telemetry",
+ "path": "src/plugins/telemetry/server/routes/telemetry_config.ts"
},
{
- "plugin": "osquery",
- "path": "x-pack/plugins/osquery/server/routes/live_query/find_live_query_route.ts"
+ "plugin": "telemetry",
+ "path": "src/plugins/telemetry/server/routes/telemetry_last_reported.ts"
},
{
- "plugin": "osquery",
- "path": "x-pack/plugins/osquery/server/routes/saved_query/find_saved_query_route.ts"
+ "plugin": "fleet",
+ "path": "x-pack/plugins/fleet/server/services/security/fleet_router.ts"
},
{
- "plugin": "osquery",
- "path": "x-pack/plugins/osquery/server/routes/saved_query/read_saved_query_route.ts"
+ "plugin": "canvas",
+ "path": "x-pack/plugins/canvas/server/routes/custom_elements/find.ts"
},
{
- "plugin": "osquery",
- "path": "x-pack/plugins/osquery/server/routes/status/create_status_route.ts"
+ "plugin": "canvas",
+ "path": "x-pack/plugins/canvas/server/routes/custom_elements/get.ts"
},
{
- "plugin": "osquery",
- "path": "x-pack/plugins/osquery/server/routes/fleet_wrapper/get_agent_policies.ts"
+ "plugin": "canvas",
+ "path": "x-pack/plugins/canvas/server/routes/shareables/download.ts"
},
{
- "plugin": "osquery",
- "path": "x-pack/plugins/osquery/server/routes/fleet_wrapper/get_agent_policy.ts"
+ "plugin": "canvas",
+ "path": "x-pack/plugins/canvas/server/routes/workpad/find.ts"
},
{
- "plugin": "osquery",
- "path": "x-pack/plugins/osquery/server/routes/fleet_wrapper/get_agent_status_for_agent_policy.ts"
+ "plugin": "canvas",
+ "path": "x-pack/plugins/canvas/server/routes/workpad/get.ts"
},
{
- "plugin": "osquery",
- "path": "x-pack/plugins/osquery/server/routes/fleet_wrapper/get_package_policies.ts"
+ "plugin": "canvas",
+ "path": "x-pack/plugins/canvas/server/routes/workpad/resolve.ts"
},
{
- "plugin": "osquery",
- "path": "x-pack/plugins/osquery/server/routes/fleet_wrapper/get_agents.ts"
+ "plugin": "canvas",
+ "path": "x-pack/plugins/canvas/server/routes/templates/list.ts"
},
{
- "plugin": "osquery",
- "path": "x-pack/plugins/osquery/server/routes/fleet_wrapper/get_agent_details.ts"
+ "plugin": "canvas",
+ "path": "x-pack/plugins/canvas/server/routes/functions/functions.ts"
},
{
- "plugin": "osquery",
- "path": "x-pack/plugins/osquery/server/routes/pack/find_pack_route.ts"
+ "plugin": "cloudDefend",
+ "path": "x-pack/plugins/cloud_defend/server/routes/policies/policies.ts"
},
{
- "plugin": "osquery",
- "path": "x-pack/plugins/osquery/server/routes/pack/read_pack_route.ts"
+ "plugin": "cloudDefend",
+ "path": "x-pack/plugins/cloud_defend/server/routes/status/status.ts"
},
{
- "plugin": "osquery",
- "path": "x-pack/plugins/osquery/server/routes/privileges_check/privileges_check_route.ts"
+ "plugin": "cloudSecurityPosture",
+ "path": "x-pack/plugins/cloud_security_posture/server/routes/compliance_dashboard/compliance_dashboard.ts"
},
{
- "plugin": "osquery",
- "path": "x-pack/plugins/osquery/server/routes/asset/get_assets_status_route.ts"
+ "plugin": "cloudSecurityPosture",
+ "path": "x-pack/plugins/cloud_security_posture/server/routes/benchmarks/benchmarks.ts"
},
{
- "plugin": "securitySolution",
- "path": "x-pack/plugins/security_solution/server/lib/detection_engine/prebuilt_rules/api/get_prebuilt_rules_and_timelines_status/get_prebuilt_rules_and_timelines_status_route.ts"
+ "plugin": "cloudSecurityPosture",
+ "path": "x-pack/plugins/cloud_security_posture/server/routes/status/status.ts"
},
{
- "plugin": "securitySolution",
- "path": "x-pack/plugins/security_solution/server/lib/detection_engine/prebuilt_rules/api/get_prebuilt_rules_status/get_prebuilt_rules_status_route.ts"
+ "plugin": "cloudSecurityPosture",
+ "path": "x-pack/plugins/cloud_security_posture/server/routes/csp_rule_template/get_csp_rule_template.ts"
},
{
- "plugin": "securitySolution",
- "path": "x-pack/plugins/security_solution/server/lib/detection_engine/rule_monitoring/api/detection_engine_health/get_cluster_health/get_cluster_health_route.ts"
+ "plugin": "cloudSecurityPosture",
+ "path": "x-pack/plugins/cloud_security_posture/server/routes/detection_engine/get_detection_engine_alerts_count_by_rule_tags.ts"
},
{
- "plugin": "securitySolution",
- "path": "x-pack/plugins/security_solution/server/lib/detection_engine/rule_monitoring/api/detection_engine_health/get_space_health/get_space_health_route.ts"
+ "plugin": "logsShared",
+ "path": "x-pack/plugins/logs_shared/server/lib/adapters/framework/kibana_framework_adapter.ts"
},
{
- "plugin": "securitySolution",
- "path": "x-pack/plugins/security_solution/server/lib/detection_engine/rule_monitoring/api/rule_execution_logs/get_rule_execution_events/get_rule_execution_events_route.ts"
+ "plugin": "fileUpload",
+ "path": "x-pack/plugins/file_upload/server/routes.ts"
},
{
- "plugin": "securitySolution",
- "path": "x-pack/plugins/security_solution/server/lib/detection_engine/rule_monitoring/api/rule_execution_logs/get_rule_execution_results/get_rule_execution_results_route.ts"
+ "plugin": "infra",
+ "path": "x-pack/plugins/infra/server/lib/adapters/framework/kibana_framework_adapter.ts"
},
{
- "plugin": "securitySolution",
- "path": "x-pack/plugins/security_solution/server/lib/detection_engine/rule_management/api/rules/find_rules/route.ts"
+ "plugin": "kubernetesSecurity",
+ "path": "x-pack/plugins/kubernetes_security/server/routes/aggregate.ts"
},
{
- "plugin": "securitySolution",
- "path": "x-pack/plugins/security_solution/server/lib/detection_engine/rule_management/api/rules/filters/route.ts"
+ "plugin": "kubernetesSecurity",
+ "path": "x-pack/plugins/kubernetes_security/server/routes/count.ts"
},
{
- "plugin": "securitySolution",
- "path": "x-pack/plugins/security_solution/server/lib/detection_engine/rule_management/api/rules/read_rule/route.ts"
+ "plugin": "kubernetesSecurity",
+ "path": "x-pack/plugins/kubernetes_security/server/routes/multi_terms_aggregate.ts"
},
{
- "plugin": "securitySolution",
- "path": "x-pack/plugins/security_solution/server/lib/detection_engine/rule_management/api/tags/read_tags/route.ts"
+ "plugin": "lists",
+ "path": "x-pack/plugins/lists/server/routes/find_endpoint_list_item_route.ts"
},
{
- "plugin": "securitySolution",
- "path": "x-pack/plugins/security_solution/server/lib/detection_engine/fleet_integrations/api/get_installed_integrations/route.ts"
+ "plugin": "lists",
+ "path": "x-pack/plugins/lists/server/routes/find_exception_list_item_route.ts"
},
{
- "plugin": "securitySolution",
- "path": "x-pack/plugins/security_solution/server/lib/detection_engine/rule_exceptions/api/find_exception_references/route.ts"
+ "plugin": "lists",
+ "path": "x-pack/plugins/lists/server/routes/find_exception_list_route.ts"
},
{
- "plugin": "securitySolution",
- "path": "x-pack/plugins/security_solution/server/lib/detection_engine/routes/index/read_index_route.ts"
+ "plugin": "lists",
+ "path": "x-pack/plugins/lists/server/routes/list_item/find_list_item_route.ts"
},
{
- "plugin": "securitySolution",
- "path": "x-pack/plugins/security_solution/server/lib/detection_engine/routes/signals/get_signals_migration_status_route.ts"
+ "plugin": "lists",
+ "path": "x-pack/plugins/lists/server/routes/list_index/find_list_route.ts"
},
{
- "plugin": "securitySolution",
- "path": "x-pack/plugins/security_solution/server/lib/detection_engine/routes/privileges/read_privileges_route.ts"
+ "plugin": "lists",
+ "path": "x-pack/plugins/lists/server/routes/internal/find_lists_by_size_route.ts"
},
{
- "plugin": "securitySolution",
- "path": "x-pack/plugins/security_solution/server/lib/detection_engine/routes/telemetry/telemetry_detection_rules_preview_route.ts"
+ "plugin": "lists",
+ "path": "x-pack/plugins/lists/server/routes/read_endpoint_list_item_route.ts"
},
{
- "plugin": "securitySolution",
- "path": "x-pack/plugins/security_solution/server/lib/detection_engine/routes/index/read_alerts_index_exists_route.ts"
+ "plugin": "lists",
+ "path": "x-pack/plugins/lists/server/routes/read_exception_list_item_route.ts"
},
{
- "plugin": "securitySolution",
- "path": "x-pack/plugins/security_solution/server/lib/tags/routes/get_tags_by_name.ts"
+ "plugin": "lists",
+ "path": "x-pack/plugins/lists/server/routes/read_exception_list_route.ts"
},
{
- "plugin": "securitySolution",
- "path": "x-pack/plugins/security_solution/server/endpoint/routes/metadata/index.ts"
+ "plugin": "lists",
+ "path": "x-pack/plugins/lists/server/routes/list_index/read_list_index_route.ts"
},
{
- "plugin": "securitySolution",
- "path": "x-pack/plugins/security_solution/server/endpoint/routes/metadata/index.ts"
+ "plugin": "lists",
+ "path": "x-pack/plugins/lists/server/routes/list_item/read_list_item_route.ts"
},
{
- "plugin": "securitySolution",
- "path": "x-pack/plugins/security_solution/server/endpoint/routes/metadata/index.ts"
+ "plugin": "lists",
+ "path": "x-pack/plugins/lists/server/routes/list/read_list_route.ts"
},
{
- "plugin": "securitySolution",
- "path": "x-pack/plugins/security_solution/server/endpoint/routes/policy/index.ts"
+ "plugin": "lists",
+ "path": "x-pack/plugins/lists/server/routes/list_privileges/read_list_privileges_route.ts"
},
{
- "plugin": "securitySolution",
- "path": "x-pack/plugins/security_solution/server/endpoint/routes/policy/index.ts"
+ "plugin": "lists",
+ "path": "x-pack/plugins/lists/server/routes/summary_exception_list_route.ts"
},
{
- "plugin": "securitySolution",
- "path": "x-pack/plugins/security_solution/server/endpoint/routes/actions/file_info_handler.ts"
+ "plugin": "maps",
+ "path": "x-pack/plugins/maps/server/mvt/mvt_routes.ts"
},
{
- "plugin": "securitySolution",
- "path": "x-pack/plugins/security_solution/server/endpoint/routes/actions/file_download_handler.ts"
+ "plugin": "maps",
+ "path": "x-pack/plugins/maps/server/mvt/mvt_routes.ts"
},
{
- "plugin": "securitySolution",
- "path": "x-pack/plugins/security_solution/server/endpoint/routes/actions/details.ts"
+ "plugin": "maps",
+ "path": "x-pack/plugins/maps/server/data_indexing/indexing_routes.ts"
},
{
- "plugin": "securitySolution",
- "path": "x-pack/plugins/security_solution/server/endpoint/routes/actions/status.ts"
+ "plugin": "maps",
+ "path": "x-pack/plugins/maps/server/data_indexing/indexing_routes.ts"
+ },
+ {
+ "plugin": "maps",
+ "path": "x-pack/plugins/maps/server/routes.ts"
+ },
+ {
+ "plugin": "maps",
+ "path": "x-pack/plugins/maps/server/routes.ts"
+ },
+ {
+ "plugin": "osquery",
+ "path": "x-pack/plugins/osquery/server/routes/live_query/get_live_query_details_route.ts"
+ },
+ {
+ "plugin": "osquery",
+ "path": "x-pack/plugins/osquery/server/routes/live_query/get_live_query_results_route.ts"
+ },
+ {
+ "plugin": "osquery",
+ "path": "x-pack/plugins/osquery/server/routes/live_query/find_live_query_route.ts"
+ },
+ {
+ "plugin": "osquery",
+ "path": "x-pack/plugins/osquery/server/routes/saved_query/find_saved_query_route.ts"
+ },
+ {
+ "plugin": "osquery",
+ "path": "x-pack/plugins/osquery/server/routes/saved_query/read_saved_query_route.ts"
+ },
+ {
+ "plugin": "osquery",
+ "path": "x-pack/plugins/osquery/server/routes/status/create_status_route.ts"
+ },
+ {
+ "plugin": "osquery",
+ "path": "x-pack/plugins/osquery/server/routes/fleet_wrapper/get_agent_policies.ts"
+ },
+ {
+ "plugin": "osquery",
+ "path": "x-pack/plugins/osquery/server/routes/fleet_wrapper/get_agent_policy.ts"
+ },
+ {
+ "plugin": "osquery",
+ "path": "x-pack/plugins/osquery/server/routes/fleet_wrapper/get_agent_status_for_agent_policy.ts"
+ },
+ {
+ "plugin": "osquery",
+ "path": "x-pack/plugins/osquery/server/routes/fleet_wrapper/get_package_policies.ts"
+ },
+ {
+ "plugin": "osquery",
+ "path": "x-pack/plugins/osquery/server/routes/fleet_wrapper/get_agents.ts"
+ },
+ {
+ "plugin": "osquery",
+ "path": "x-pack/plugins/osquery/server/routes/fleet_wrapper/get_agent_details.ts"
+ },
+ {
+ "plugin": "osquery",
+ "path": "x-pack/plugins/osquery/server/routes/pack/find_pack_route.ts"
+ },
+ {
+ "plugin": "osquery",
+ "path": "x-pack/plugins/osquery/server/routes/pack/read_pack_route.ts"
+ },
+ {
+ "plugin": "osquery",
+ "path": "x-pack/plugins/osquery/server/routes/privileges_check/privileges_check_route.ts"
+ },
+ {
+ "plugin": "osquery",
+ "path": "x-pack/plugins/osquery/server/routes/asset/get_assets_status_route.ts"
},
{
"plugin": "securitySolution",
- "path": "x-pack/plugins/security_solution/server/endpoint/routes/actions/state.ts"
+ "path": "x-pack/plugins/security_solution/server/lib/detection_engine/prebuilt_rules/api/get_prebuilt_rules_and_timelines_status/get_prebuilt_rules_and_timelines_status_route.ts"
},
{
"plugin": "securitySolution",
- "path": "x-pack/plugins/security_solution/server/endpoint/routes/actions/audit_log.ts"
+ "path": "x-pack/plugins/security_solution/server/lib/detection_engine/prebuilt_rules/api/get_prebuilt_rules_status/get_prebuilt_rules_status_route.ts"
},
{
"plugin": "securitySolution",
- "path": "x-pack/plugins/security_solution/server/endpoint/routes/actions/list.ts"
+ "path": "x-pack/plugins/security_solution/server/lib/detection_engine/rule_monitoring/api/detection_engine_health/get_cluster_health/get_cluster_health_route.ts"
},
{
"plugin": "securitySolution",
- "path": "x-pack/plugins/security_solution/server/endpoint/routes/protection_updates_note/index.ts"
+ "path": "x-pack/plugins/security_solution/server/lib/detection_engine/rule_monitoring/api/detection_engine_health/get_space_health/get_space_health_route.ts"
},
{
- "plugin": "@kbn/core-http-router-server-mocks",
- "path": "packages/core/http/core-http-router-server-mocks/src/versioned_router.mock.ts"
+ "plugin": "securitySolution",
+ "path": "x-pack/plugins/security_solution/server/lib/detection_engine/rule_monitoring/api/rule_execution_logs/get_rule_execution_events/get_rule_execution_events_route.ts"
},
{
- "plugin": "canvas",
- "path": "x-pack/plugins/canvas/server/routes/custom_elements/find.ts"
+ "plugin": "securitySolution",
+ "path": "x-pack/plugins/security_solution/server/lib/detection_engine/rule_monitoring/api/rule_execution_logs/get_rule_execution_results/get_rule_execution_results_route.ts"
},
{
- "plugin": "canvas",
- "path": "x-pack/plugins/canvas/server/routes/custom_elements/get.ts"
+ "plugin": "securitySolution",
+ "path": "x-pack/plugins/security_solution/server/lib/detection_engine/rule_management/api/rules/find_rules/route.ts"
},
{
- "plugin": "canvas",
- "path": "x-pack/plugins/canvas/server/routes/shareables/download.ts"
+ "plugin": "securitySolution",
+ "path": "x-pack/plugins/security_solution/server/lib/detection_engine/rule_management/api/rules/filters/route.ts"
},
{
- "plugin": "canvas",
- "path": "x-pack/plugins/canvas/server/routes/workpad/find.ts"
+ "plugin": "securitySolution",
+ "path": "x-pack/plugins/security_solution/server/lib/detection_engine/rule_management/api/rules/read_rule/route.ts"
},
{
- "plugin": "canvas",
- "path": "x-pack/plugins/canvas/server/routes/workpad/get.ts"
+ "plugin": "securitySolution",
+ "path": "x-pack/plugins/security_solution/server/lib/detection_engine/rule_management/api/tags/read_tags/route.ts"
},
{
- "plugin": "canvas",
- "path": "x-pack/plugins/canvas/server/routes/workpad/resolve.ts"
+ "plugin": "securitySolution",
+ "path": "x-pack/plugins/security_solution/server/lib/detection_engine/fleet_integrations/api/get_installed_integrations/route.ts"
},
{
- "plugin": "canvas",
- "path": "x-pack/plugins/canvas/server/routes/templates/list.ts"
+ "plugin": "securitySolution",
+ "path": "x-pack/plugins/security_solution/server/lib/detection_engine/rule_exceptions/api/find_exception_references/route.ts"
},
{
- "plugin": "canvas",
- "path": "x-pack/plugins/canvas/server/routes/functions/functions.ts"
+ "plugin": "securitySolution",
+ "path": "x-pack/plugins/security_solution/server/lib/detection_engine/routes/index/read_index_route.ts"
},
{
- "plugin": "cloudDefend",
- "path": "x-pack/plugins/cloud_defend/server/routes/policies/policies.ts"
+ "plugin": "securitySolution",
+ "path": "x-pack/plugins/security_solution/server/lib/detection_engine/routes/signals/get_signals_migration_status_route.ts"
},
{
- "plugin": "cloudDefend",
- "path": "x-pack/plugins/cloud_defend/server/routes/status/status.ts"
+ "plugin": "securitySolution",
+ "path": "x-pack/plugins/security_solution/server/lib/detection_engine/routes/privileges/read_privileges_route.ts"
},
{
- "plugin": "cloudSecurityPosture",
- "path": "x-pack/plugins/cloud_security_posture/server/routes/compliance_dashboard/compliance_dashboard.ts"
+ "plugin": "securitySolution",
+ "path": "x-pack/plugins/security_solution/server/lib/detection_engine/routes/telemetry/telemetry_detection_rules_preview_route.ts"
},
{
- "plugin": "cloudSecurityPosture",
- "path": "x-pack/plugins/cloud_security_posture/server/routes/benchmarks/benchmarks.ts"
+ "plugin": "securitySolution",
+ "path": "x-pack/plugins/security_solution/server/lib/detection_engine/routes/index/read_alerts_index_exists_route.ts"
},
{
- "plugin": "cloudSecurityPosture",
- "path": "x-pack/plugins/cloud_security_posture/server/routes/status/status.ts"
+ "plugin": "securitySolution",
+ "path": "x-pack/plugins/security_solution/server/lib/tags/routes/get_tags_by_name.ts"
},
{
- "plugin": "cloudSecurityPosture",
- "path": "x-pack/plugins/cloud_security_posture/server/routes/csp_rule_template/get_csp_rule_template.ts"
+ "plugin": "securitySolution",
+ "path": "x-pack/plugins/security_solution/server/lib/risk_engine/routes/risk_engine_status_route.ts"
},
{
- "plugin": "cloudSecurityPosture",
- "path": "x-pack/plugins/cloud_security_posture/server/routes/detection_engine/get_detection_engine_alerts_count_by_rule_tags.ts"
+ "plugin": "securitySolution",
+ "path": "x-pack/plugins/security_solution/server/endpoint/routes/metadata/index.ts"
},
{
- "plugin": "logsShared",
- "path": "x-pack/plugins/logs_shared/server/lib/adapters/framework/kibana_framework_adapter.ts"
+ "plugin": "securitySolution",
+ "path": "x-pack/plugins/security_solution/server/endpoint/routes/metadata/index.ts"
},
{
- "plugin": "fileUpload",
- "path": "x-pack/plugins/file_upload/server/routes.ts"
+ "plugin": "securitySolution",
+ "path": "x-pack/plugins/security_solution/server/endpoint/routes/metadata/index.ts"
},
{
- "plugin": "infra",
- "path": "x-pack/plugins/infra/server/lib/adapters/framework/kibana_framework_adapter.ts"
+ "plugin": "securitySolution",
+ "path": "x-pack/plugins/security_solution/server/endpoint/routes/policy/index.ts"
},
{
- "plugin": "kubernetesSecurity",
- "path": "x-pack/plugins/kubernetes_security/server/routes/aggregate.ts"
+ "plugin": "securitySolution",
+ "path": "x-pack/plugins/security_solution/server/endpoint/routes/policy/index.ts"
},
{
- "plugin": "kubernetesSecurity",
- "path": "x-pack/plugins/kubernetes_security/server/routes/count.ts"
+ "plugin": "securitySolution",
+ "path": "x-pack/plugins/security_solution/server/endpoint/routes/actions/file_info_handler.ts"
},
{
- "plugin": "kubernetesSecurity",
- "path": "x-pack/plugins/kubernetes_security/server/routes/multi_terms_aggregate.ts"
+ "plugin": "securitySolution",
+ "path": "x-pack/plugins/security_solution/server/endpoint/routes/actions/file_download_handler.ts"
},
{
- "plugin": "maps",
- "path": "x-pack/plugins/maps/server/mvt/mvt_routes.ts"
+ "plugin": "securitySolution",
+ "path": "x-pack/plugins/security_solution/server/endpoint/routes/actions/details.ts"
},
{
- "plugin": "maps",
- "path": "x-pack/plugins/maps/server/mvt/mvt_routes.ts"
+ "plugin": "securitySolution",
+ "path": "x-pack/plugins/security_solution/server/endpoint/routes/actions/status.ts"
},
{
- "plugin": "maps",
- "path": "x-pack/plugins/maps/server/data_indexing/indexing_routes.ts"
+ "plugin": "securitySolution",
+ "path": "x-pack/plugins/security_solution/server/endpoint/routes/actions/state.ts"
},
{
- "plugin": "maps",
- "path": "x-pack/plugins/maps/server/data_indexing/indexing_routes.ts"
+ "plugin": "securitySolution",
+ "path": "x-pack/plugins/security_solution/server/endpoint/routes/actions/audit_log.ts"
},
{
- "plugin": "maps",
- "path": "x-pack/plugins/maps/server/routes.ts"
+ "plugin": "securitySolution",
+ "path": "x-pack/plugins/security_solution/server/endpoint/routes/actions/list.ts"
},
{
- "plugin": "maps",
- "path": "x-pack/plugins/maps/server/routes.ts"
+ "plugin": "securitySolution",
+ "path": "x-pack/plugins/security_solution/server/endpoint/routes/protection_updates_note/index.ts"
},
{
"plugin": "sessionView",
@@ -13821,6 +13801,10 @@
"plugin": "@kbn/core-apps-server-internal",
"path": "packages/core/apps/core-apps-server-internal/src/core_app.ts"
},
+ {
+ "plugin": "@kbn/core-http-router-server-mocks",
+ "path": "packages/core/http/core-http-router-server-mocks/src/versioned_router.mock.ts"
+ },
{
"plugin": "dataViews",
"path": "src/plugins/data_views/server/rest_api_routes/public/runtime_fields/put_runtime_field.ts"
@@ -13846,24 +13830,44 @@
"path": "src/plugins/data/server/query/routes.ts"
},
{
- "plugin": "lists",
- "path": "x-pack/plugins/lists/server/routes/update_endpoint_list_item_route.ts"
+ "plugin": "ml",
+ "path": "x-pack/plugins/ml/server/routes/annotations.ts"
},
{
- "plugin": "lists",
- "path": "x-pack/plugins/lists/server/routes/update_exception_list_item_route.ts"
+ "plugin": "ml",
+ "path": "x-pack/plugins/ml/server/routes/calendars.ts"
},
{
- "plugin": "lists",
- "path": "x-pack/plugins/lists/server/routes/update_exception_list_route.ts"
+ "plugin": "ml",
+ "path": "x-pack/plugins/ml/server/routes/calendars.ts"
},
{
- "plugin": "lists",
- "path": "x-pack/plugins/lists/server/routes/list_item/update_list_item_route.ts"
+ "plugin": "ml",
+ "path": "x-pack/plugins/ml/server/routes/datafeeds.ts"
},
{
- "plugin": "lists",
- "path": "x-pack/plugins/lists/server/routes/list/update_list_route.ts"
+ "plugin": "ml",
+ "path": "x-pack/plugins/ml/server/routes/trained_models.ts"
+ },
+ {
+ "plugin": "ml",
+ "path": "x-pack/plugins/ml/server/routes/data_frame_analytics.ts"
+ },
+ {
+ "plugin": "ml",
+ "path": "x-pack/plugins/ml/server/routes/filters.ts"
+ },
+ {
+ "plugin": "ml",
+ "path": "x-pack/plugins/ml/server/routes/filters.ts"
+ },
+ {
+ "plugin": "ml",
+ "path": "x-pack/plugins/ml/server/routes/job_audit_messages.ts"
+ },
+ {
+ "plugin": "ml",
+ "path": "x-pack/plugins/ml/server/routes/anomaly_detectors.ts"
},
{
"plugin": "telemetry",
@@ -13878,48 +13882,52 @@
"path": "x-pack/plugins/fleet/server/services/security/fleet_router.ts"
},
{
- "plugin": "securitySolution",
- "path": "x-pack/plugins/security_solution/server/lib/detection_engine/prebuilt_rules/api/install_prebuilt_rules_and_timelines/install_prebuilt_rules_and_timelines_route.ts"
+ "plugin": "canvas",
+ "path": "x-pack/plugins/canvas/server/routes/custom_elements/update.ts"
},
{
- "plugin": "ml",
- "path": "x-pack/plugins/ml/server/routes/annotations.ts"
+ "plugin": "canvas",
+ "path": "x-pack/plugins/canvas/server/routes/workpad/update.ts"
},
{
- "plugin": "ml",
- "path": "x-pack/plugins/ml/server/routes/calendars.ts"
+ "plugin": "canvas",
+ "path": "x-pack/plugins/canvas/server/routes/workpad/update.ts"
+ },
+ {
+ "plugin": "canvas",
+ "path": "x-pack/plugins/canvas/server/routes/workpad/update.ts"
},
{
- "plugin": "ml",
- "path": "x-pack/plugins/ml/server/routes/calendars.ts"
+ "plugin": "logsShared",
+ "path": "x-pack/plugins/logs_shared/server/lib/adapters/framework/kibana_framework_adapter.ts"
},
{
- "plugin": "ml",
- "path": "x-pack/plugins/ml/server/routes/datafeeds.ts"
+ "plugin": "infra",
+ "path": "x-pack/plugins/infra/server/lib/adapters/framework/kibana_framework_adapter.ts"
},
{
- "plugin": "ml",
- "path": "x-pack/plugins/ml/server/routes/trained_models.ts"
+ "plugin": "lists",
+ "path": "x-pack/plugins/lists/server/routes/update_endpoint_list_item_route.ts"
},
{
- "plugin": "ml",
- "path": "x-pack/plugins/ml/server/routes/data_frame_analytics.ts"
+ "plugin": "lists",
+ "path": "x-pack/plugins/lists/server/routes/update_exception_list_item_route.ts"
},
{
- "plugin": "ml",
- "path": "x-pack/plugins/ml/server/routes/filters.ts"
+ "plugin": "lists",
+ "path": "x-pack/plugins/lists/server/routes/update_exception_list_route.ts"
},
{
- "plugin": "ml",
- "path": "x-pack/plugins/ml/server/routes/filters.ts"
+ "plugin": "lists",
+ "path": "x-pack/plugins/lists/server/routes/list_item/update_list_item_route.ts"
},
{
- "plugin": "ml",
- "path": "x-pack/plugins/ml/server/routes/job_audit_messages.ts"
+ "plugin": "lists",
+ "path": "x-pack/plugins/lists/server/routes/list/update_list_route.ts"
},
{
- "plugin": "ml",
- "path": "x-pack/plugins/ml/server/routes/anomaly_detectors.ts"
+ "plugin": "securitySolution",
+ "path": "x-pack/plugins/security_solution/server/lib/detection_engine/prebuilt_rules/api/install_prebuilt_rules_and_timelines/install_prebuilt_rules_and_timelines_route.ts"
},
{
"plugin": "osquery",
@@ -13941,34 +13949,6 @@
"plugin": "securitySolution",
"path": "x-pack/plugins/security_solution/server/lib/tags/routes/create_tag.ts"
},
- {
- "plugin": "@kbn/core-http-router-server-mocks",
- "path": "packages/core/http/core-http-router-server-mocks/src/versioned_router.mock.ts"
- },
- {
- "plugin": "canvas",
- "path": "x-pack/plugins/canvas/server/routes/custom_elements/update.ts"
- },
- {
- "plugin": "canvas",
- "path": "x-pack/plugins/canvas/server/routes/workpad/update.ts"
- },
- {
- "plugin": "canvas",
- "path": "x-pack/plugins/canvas/server/routes/workpad/update.ts"
- },
- {
- "plugin": "canvas",
- "path": "x-pack/plugins/canvas/server/routes/workpad/update.ts"
- },
- {
- "plugin": "logsShared",
- "path": "x-pack/plugins/logs_shared/server/lib/adapters/framework/kibana_framework_adapter.ts"
- },
- {
- "plugin": "infra",
- "path": "x-pack/plugins/infra/server/lib/adapters/framework/kibana_framework_adapter.ts"
- },
{
"plugin": "transform",
"path": "x-pack/plugins/transform/server/routes/api/transforms.ts"
@@ -14065,6 +14045,10 @@
"deprecated": false,
"trackAdoption": true,
"references": [
+ {
+ "plugin": "@kbn/core-http-router-server-mocks",
+ "path": "packages/core/http/core-http-router-server-mocks/src/versioned_router.mock.ts"
+ },
{
"plugin": "dataViews",
"path": "src/plugins/data_views/server/rest_api_routes/public/fields/update_fields.ts"
@@ -14150,76 +14134,12 @@
"path": "src/plugins/unified_search/server/autocomplete/value_suggestions_route.ts"
},
{
- "plugin": "lists",
- "path": "x-pack/plugins/lists/server/routes/create_endpoint_list_item_route.ts"
- },
- {
- "plugin": "lists",
- "path": "x-pack/plugins/lists/server/routes/create_endpoint_list_route.ts"
- },
- {
- "plugin": "lists",
- "path": "x-pack/plugins/lists/server/routes/create_exception_list_item_route.ts"
- },
- {
- "plugin": "lists",
- "path": "x-pack/plugins/lists/server/routes/create_exception_list_route.ts"
- },
- {
- "plugin": "lists",
- "path": "x-pack/plugins/lists/server/routes/list_index/create_list_index_route.ts"
- },
- {
- "plugin": "lists",
- "path": "x-pack/plugins/lists/server/routes/list_item/create_list_item_route.ts"
- },
- {
- "plugin": "lists",
- "path": "x-pack/plugins/lists/server/routes/list/create_list_route.ts"
- },
- {
- "plugin": "lists",
- "path": "x-pack/plugins/lists/server/routes/duplicate_exception_list_route.ts"
- },
- {
- "plugin": "lists",
- "path": "x-pack/plugins/lists/server/routes/export_exception_list_route.ts"
- },
- {
- "plugin": "lists",
- "path": "x-pack/plugins/lists/server/routes/list_index/export_list_item_route.ts"
- },
- {
- "plugin": "lists",
- "path": "x-pack/plugins/lists/server/routes/internal/create_exception_filter_route.ts"
- },
- {
- "plugin": "lists",
- "path": "x-pack/plugins/lists/server/routes/import_exceptions_route.ts"
- },
- {
- "plugin": "lists",
- "path": "x-pack/plugins/lists/server/routes/list/import_list_item_route.ts"
- },
- {
- "plugin": "lists",
- "path": "x-pack/plugins/lists/server/routes/internal/create_exceptions_list_route.ts"
- },
- {
- "plugin": "telemetry",
- "path": "src/plugins/telemetry/server/routes/telemetry_opt_in_stats.ts"
- },
- {
- "plugin": "telemetry",
- "path": "src/plugins/telemetry/server/routes/telemetry_opt_in.ts"
- },
- {
- "plugin": "telemetry",
- "path": "src/plugins/telemetry/server/routes/telemetry_usage_stats.ts"
+ "plugin": "aiops",
+ "path": "x-pack/plugins/aiops/server/routes/log_rate_analysis.ts"
},
{
- "plugin": "fleet",
- "path": "x-pack/plugins/fleet/server/services/security/fleet_router.ts"
+ "plugin": "aiops",
+ "path": "x-pack/plugins/aiops/server/routes/log_categorization.ts"
},
{
"plugin": "ml",
@@ -14470,52 +14390,172 @@
"path": "x-pack/plugins/ml/server/routes/results_service.ts"
},
{
- "plugin": "ml",
- "path": "x-pack/plugins/ml/server/routes/results_service.ts"
+ "plugin": "ml",
+ "path": "x-pack/plugins/ml/server/routes/results_service.ts"
+ },
+ {
+ "plugin": "ml",
+ "path": "x-pack/plugins/ml/server/routes/results_service.ts"
+ },
+ {
+ "plugin": "ml",
+ "path": "x-pack/plugins/ml/server/routes/results_service.ts"
+ },
+ {
+ "plugin": "ml",
+ "path": "x-pack/plugins/ml/server/routes/results_service.ts"
+ },
+ {
+ "plugin": "ml",
+ "path": "x-pack/plugins/ml/server/routes/results_service.ts"
+ },
+ {
+ "plugin": "ml",
+ "path": "x-pack/plugins/ml/server/routes/results_service.ts"
+ },
+ {
+ "plugin": "ml",
+ "path": "x-pack/plugins/ml/server/routes/results_service.ts"
+ },
+ {
+ "plugin": "ml",
+ "path": "x-pack/plugins/ml/server/routes/system.ts"
+ },
+ {
+ "plugin": "ml",
+ "path": "x-pack/plugins/ml/server/routes/system.ts"
+ },
+ {
+ "plugin": "ml",
+ "path": "x-pack/plugins/ml/server/routes/system.ts"
+ },
+ {
+ "plugin": "ml",
+ "path": "x-pack/plugins/ml/server/routes/system.ts"
+ },
+ {
+ "plugin": "ml",
+ "path": "x-pack/plugins/ml/server/routes/alerting.ts"
+ },
+ {
+ "plugin": "telemetry",
+ "path": "src/plugins/telemetry/server/routes/telemetry_opt_in_stats.ts"
+ },
+ {
+ "plugin": "telemetry",
+ "path": "src/plugins/telemetry/server/routes/telemetry_opt_in.ts"
+ },
+ {
+ "plugin": "telemetry",
+ "path": "src/plugins/telemetry/server/routes/telemetry_usage_stats.ts"
+ },
+ {
+ "plugin": "fleet",
+ "path": "x-pack/plugins/fleet/server/services/security/fleet_router.ts"
+ },
+ {
+ "plugin": "canvas",
+ "path": "x-pack/plugins/canvas/server/routes/custom_elements/create.ts"
+ },
+ {
+ "plugin": "canvas",
+ "path": "x-pack/plugins/canvas/server/routes/shareables/zip.ts"
+ },
+ {
+ "plugin": "canvas",
+ "path": "x-pack/plugins/canvas/server/routes/workpad/create.ts"
+ },
+ {
+ "plugin": "canvas",
+ "path": "x-pack/plugins/canvas/server/routes/workpad/import.ts"
+ },
+ {
+ "plugin": "logsShared",
+ "path": "x-pack/plugins/logs_shared/server/lib/adapters/framework/kibana_framework_adapter.ts"
+ },
+ {
+ "plugin": "fileUpload",
+ "path": "x-pack/plugins/file_upload/server/routes.ts"
+ },
+ {
+ "plugin": "fileUpload",
+ "path": "x-pack/plugins/file_upload/server/routes.ts"
+ },
+ {
+ "plugin": "fileUpload",
+ "path": "x-pack/plugins/file_upload/server/routes.ts"
+ },
+ {
+ "plugin": "fileUpload",
+ "path": "x-pack/plugins/file_upload/server/routes.ts"
+ },
+ {
+ "plugin": "infra",
+ "path": "x-pack/plugins/infra/server/lib/adapters/framework/kibana_framework_adapter.ts"
+ },
+ {
+ "plugin": "lists",
+ "path": "x-pack/plugins/lists/server/routes/create_endpoint_list_item_route.ts"
+ },
+ {
+ "plugin": "lists",
+ "path": "x-pack/plugins/lists/server/routes/create_endpoint_list_route.ts"
+ },
+ {
+ "plugin": "lists",
+ "path": "x-pack/plugins/lists/server/routes/create_exception_list_item_route.ts"
+ },
+ {
+ "plugin": "lists",
+ "path": "x-pack/plugins/lists/server/routes/create_exception_list_route.ts"
+ },
+ {
+ "plugin": "lists",
+ "path": "x-pack/plugins/lists/server/routes/list_index/create_list_index_route.ts"
},
{
- "plugin": "ml",
- "path": "x-pack/plugins/ml/server/routes/results_service.ts"
+ "plugin": "lists",
+ "path": "x-pack/plugins/lists/server/routes/list_item/create_list_item_route.ts"
},
{
- "plugin": "ml",
- "path": "x-pack/plugins/ml/server/routes/results_service.ts"
+ "plugin": "lists",
+ "path": "x-pack/plugins/lists/server/routes/list/create_list_route.ts"
},
{
- "plugin": "ml",
- "path": "x-pack/plugins/ml/server/routes/results_service.ts"
+ "plugin": "lists",
+ "path": "x-pack/plugins/lists/server/routes/duplicate_exception_list_route.ts"
},
{
- "plugin": "ml",
- "path": "x-pack/plugins/ml/server/routes/results_service.ts"
+ "plugin": "lists",
+ "path": "x-pack/plugins/lists/server/routes/export_exception_list_route.ts"
},
{
- "plugin": "ml",
- "path": "x-pack/plugins/ml/server/routes/results_service.ts"
+ "plugin": "lists",
+ "path": "x-pack/plugins/lists/server/routes/list_index/export_list_item_route.ts"
},
{
- "plugin": "ml",
- "path": "x-pack/plugins/ml/server/routes/results_service.ts"
+ "plugin": "lists",
+ "path": "x-pack/plugins/lists/server/routes/internal/create_exception_filter_route.ts"
},
{
- "plugin": "ml",
- "path": "x-pack/plugins/ml/server/routes/system.ts"
+ "plugin": "lists",
+ "path": "x-pack/plugins/lists/server/routes/import_exceptions_route.ts"
},
{
- "plugin": "ml",
- "path": "x-pack/plugins/ml/server/routes/system.ts"
+ "plugin": "lists",
+ "path": "x-pack/plugins/lists/server/routes/list/import_list_item_route.ts"
},
{
- "plugin": "ml",
- "path": "x-pack/plugins/ml/server/routes/system.ts"
+ "plugin": "lists",
+ "path": "x-pack/plugins/lists/server/routes/internal/create_exceptions_list_route.ts"
},
{
- "plugin": "ml",
- "path": "x-pack/plugins/ml/server/routes/system.ts"
+ "plugin": "maps",
+ "path": "x-pack/plugins/maps/server/data_indexing/indexing_routes.ts"
},
{
- "plugin": "ml",
- "path": "x-pack/plugins/ml/server/routes/alerting.ts"
+ "plugin": "maps",
+ "path": "x-pack/plugins/maps/server/data_indexing/indexing_routes.ts"
},
{
"plugin": "osquery",
@@ -14639,27 +14679,27 @@
},
{
"plugin": "securitySolution",
- "path": "x-pack/plugins/security_solution/server/endpoint/routes/actions/file_upload_handler.ts"
+ "path": "x-pack/plugins/security_solution/server/lib/risk_engine/routes/risk_score_preview_route.ts"
},
{
"plugin": "securitySolution",
- "path": "x-pack/plugins/security_solution/server/endpoint/routes/actions/response_actions.ts"
+ "path": "x-pack/plugins/security_solution/server/lib/risk_engine/routes/risk_engine_init_route.ts"
},
{
"plugin": "securitySolution",
- "path": "x-pack/plugins/security_solution/server/endpoint/routes/actions/response_actions.ts"
+ "path": "x-pack/plugins/security_solution/server/lib/risk_engine/routes/risk_engine_enable_route.ts"
},
{
"plugin": "securitySolution",
- "path": "x-pack/plugins/security_solution/server/endpoint/routes/actions/response_actions.ts"
+ "path": "x-pack/plugins/security_solution/server/lib/risk_engine/routes/risk_engine_disable_route.ts"
},
{
"plugin": "securitySolution",
- "path": "x-pack/plugins/security_solution/server/endpoint/routes/actions/response_actions.ts"
+ "path": "x-pack/plugins/security_solution/server/lib/risk_engine/routes/risk_score_calculation_route.ts"
},
{
"plugin": "securitySolution",
- "path": "x-pack/plugins/security_solution/server/endpoint/routes/actions/response_actions.ts"
+ "path": "x-pack/plugins/security_solution/server/endpoint/routes/actions/file_upload_handler.ts"
},
{
"plugin": "securitySolution",
@@ -14679,71 +14719,31 @@
},
{
"plugin": "securitySolution",
- "path": "x-pack/plugins/security_solution/server/endpoint/routes/suggestions/index.ts"
+ "path": "x-pack/plugins/security_solution/server/endpoint/routes/actions/response_actions.ts"
},
{
"plugin": "securitySolution",
- "path": "x-pack/plugins/security_solution/server/endpoint/routes/protection_updates_note/index.ts"
- },
- {
- "plugin": "@kbn/core-http-router-server-mocks",
- "path": "packages/core/http/core-http-router-server-mocks/src/versioned_router.mock.ts"
- },
- {
- "plugin": "aiops",
- "path": "x-pack/plugins/aiops/server/routes/log_rate_analysis.ts"
- },
- {
- "plugin": "aiops",
- "path": "x-pack/plugins/aiops/server/routes/log_categorization.ts"
- },
- {
- "plugin": "canvas",
- "path": "x-pack/plugins/canvas/server/routes/custom_elements/create.ts"
- },
- {
- "plugin": "canvas",
- "path": "x-pack/plugins/canvas/server/routes/shareables/zip.ts"
- },
- {
- "plugin": "canvas",
- "path": "x-pack/plugins/canvas/server/routes/workpad/create.ts"
- },
- {
- "plugin": "canvas",
- "path": "x-pack/plugins/canvas/server/routes/workpad/import.ts"
- },
- {
- "plugin": "logsShared",
- "path": "x-pack/plugins/logs_shared/server/lib/adapters/framework/kibana_framework_adapter.ts"
- },
- {
- "plugin": "fileUpload",
- "path": "x-pack/plugins/file_upload/server/routes.ts"
- },
- {
- "plugin": "fileUpload",
- "path": "x-pack/plugins/file_upload/server/routes.ts"
+ "path": "x-pack/plugins/security_solution/server/endpoint/routes/actions/response_actions.ts"
},
{
- "plugin": "fileUpload",
- "path": "x-pack/plugins/file_upload/server/routes.ts"
+ "plugin": "securitySolution",
+ "path": "x-pack/plugins/security_solution/server/endpoint/routes/actions/response_actions.ts"
},
{
- "plugin": "fileUpload",
- "path": "x-pack/plugins/file_upload/server/routes.ts"
+ "plugin": "securitySolution",
+ "path": "x-pack/plugins/security_solution/server/endpoint/routes/actions/response_actions.ts"
},
{
- "plugin": "infra",
- "path": "x-pack/plugins/infra/server/lib/adapters/framework/kibana_framework_adapter.ts"
+ "plugin": "securitySolution",
+ "path": "x-pack/plugins/security_solution/server/endpoint/routes/actions/response_actions.ts"
},
{
- "plugin": "maps",
- "path": "x-pack/plugins/maps/server/data_indexing/indexing_routes.ts"
+ "plugin": "securitySolution",
+ "path": "x-pack/plugins/security_solution/server/endpoint/routes/suggestions/index.ts"
},
{
- "plugin": "maps",
- "path": "x-pack/plugins/maps/server/data_indexing/indexing_routes.ts"
+ "plugin": "securitySolution",
+ "path": "x-pack/plugins/security_solution/server/endpoint/routes/protection_updates_note/index.ts"
},
{
"plugin": "transform",
@@ -14906,36 +14906,36 @@
"trackAdoption": true,
"references": [
{
- "plugin": "lists",
- "path": "x-pack/plugins/lists/server/routes/list_item/patch_list_item_route.ts"
- },
- {
- "plugin": "lists",
- "path": "x-pack/plugins/lists/server/routes/list/patch_list_route.ts"
+ "plugin": "@kbn/core-http-router-server-mocks",
+ "path": "packages/core/http/core-http-router-server-mocks/src/versioned_router.mock.ts"
},
{
"plugin": "fleet",
"path": "x-pack/plugins/fleet/server/services/security/fleet_router.ts"
},
{
- "plugin": "securitySolution",
- "path": "x-pack/plugins/security_solution/server/lib/detection_engine/rule_management/api/rules/bulk_patch_rules/route.ts"
+ "plugin": "logsShared",
+ "path": "x-pack/plugins/logs_shared/server/lib/adapters/framework/kibana_framework_adapter.ts"
},
{
- "plugin": "securitySolution",
- "path": "x-pack/plugins/security_solution/server/lib/detection_engine/rule_management/api/rules/patch_rule/route.ts"
+ "plugin": "infra",
+ "path": "x-pack/plugins/infra/server/lib/adapters/framework/kibana_framework_adapter.ts"
},
{
- "plugin": "@kbn/core-http-router-server-mocks",
- "path": "packages/core/http/core-http-router-server-mocks/src/versioned_router.mock.ts"
+ "plugin": "lists",
+ "path": "x-pack/plugins/lists/server/routes/list_item/patch_list_item_route.ts"
},
{
- "plugin": "logsShared",
- "path": "x-pack/plugins/logs_shared/server/lib/adapters/framework/kibana_framework_adapter.ts"
+ "plugin": "lists",
+ "path": "x-pack/plugins/lists/server/routes/list/patch_list_route.ts"
},
{
- "plugin": "infra",
- "path": "x-pack/plugins/infra/server/lib/adapters/framework/kibana_framework_adapter.ts"
+ "plugin": "securitySolution",
+ "path": "x-pack/plugins/security_solution/server/lib/detection_engine/rule_management/api/rules/bulk_patch_rules/route.ts"
+ },
+ {
+ "plugin": "securitySolution",
+ "path": "x-pack/plugins/security_solution/server/lib/detection_engine/rule_management/api/rules/patch_rule/route.ts"
},
{
"plugin": "@kbn/core-http-router-server-internal",
@@ -15009,6 +15009,10 @@
"deprecated": false,
"trackAdoption": true,
"references": [
+ {
+ "plugin": "@kbn/core-http-router-server-mocks",
+ "path": "packages/core/http/core-http-router-server-mocks/src/versioned_router.mock.ts"
+ },
{
"plugin": "dataViews",
"path": "src/plugins/data_views/server/rest_api_routes/public/runtime_fields/delete_runtime_field.ts"
@@ -15037,34 +15041,6 @@
"plugin": "data",
"path": "src/plugins/data/server/query/routes.ts"
},
- {
- "plugin": "lists",
- "path": "x-pack/plugins/lists/server/routes/delete_endpoint_list_item_route.ts"
- },
- {
- "plugin": "lists",
- "path": "x-pack/plugins/lists/server/routes/delete_exception_list_route.ts"
- },
- {
- "plugin": "lists",
- "path": "x-pack/plugins/lists/server/routes/delete_exception_list_item_route.ts"
- },
- {
- "plugin": "lists",
- "path": "x-pack/plugins/lists/server/routes/list_index/delete_list_index_route.ts"
- },
- {
- "plugin": "lists",
- "path": "x-pack/plugins/lists/server/routes/list_item/delete_list_item_route.ts"
- },
- {
- "plugin": "lists",
- "path": "x-pack/plugins/lists/server/routes/list/delete_list_route.ts"
- },
- {
- "plugin": "fleet",
- "path": "x-pack/plugins/fleet/server/services/security/fleet_router.ts"
- },
{
"plugin": "ml",
"path": "x-pack/plugins/ml/server/routes/annotations.ts"
@@ -15098,53 +15074,77 @@
"path": "x-pack/plugins/ml/server/routes/anomaly_detectors.ts"
},
{
- "plugin": "osquery",
- "path": "x-pack/plugins/osquery/server/routes/saved_query/delete_saved_query_route.ts"
+ "plugin": "fleet",
+ "path": "x-pack/plugins/fleet/server/services/security/fleet_router.ts"
},
{
- "plugin": "osquery",
- "path": "x-pack/plugins/osquery/server/routes/pack/delete_pack_route.ts"
+ "plugin": "canvas",
+ "path": "x-pack/plugins/canvas/server/routes/custom_elements/delete.ts"
},
{
- "plugin": "securitySolution",
- "path": "x-pack/plugins/security_solution/server/lib/detection_engine/rule_management/api/rules/bulk_delete_rules/route.ts"
+ "plugin": "canvas",
+ "path": "x-pack/plugins/canvas/server/routes/workpad/delete.ts"
},
{
- "plugin": "securitySolution",
- "path": "x-pack/plugins/security_solution/server/lib/detection_engine/rule_management/api/rules/delete_rule/route.ts"
+ "plugin": "logsShared",
+ "path": "x-pack/plugins/logs_shared/server/lib/adapters/framework/kibana_framework_adapter.ts"
},
{
- "plugin": "securitySolution",
- "path": "x-pack/plugins/security_solution/server/lib/detection_engine/routes/signals/delete_signals_migration_route.ts"
+ "plugin": "infra",
+ "path": "x-pack/plugins/infra/server/lib/adapters/framework/kibana_framework_adapter.ts"
},
{
- "plugin": "securitySolution",
- "path": "x-pack/plugins/security_solution/server/lib/detection_engine/routes/index/delete_index_route.ts"
+ "plugin": "lists",
+ "path": "x-pack/plugins/lists/server/routes/delete_endpoint_list_item_route.ts"
},
{
- "plugin": "@kbn/core-http-router-server-mocks",
- "path": "packages/core/http/core-http-router-server-mocks/src/versioned_router.mock.ts"
+ "plugin": "lists",
+ "path": "x-pack/plugins/lists/server/routes/delete_exception_list_route.ts"
},
{
- "plugin": "canvas",
- "path": "x-pack/plugins/canvas/server/routes/custom_elements/delete.ts"
+ "plugin": "lists",
+ "path": "x-pack/plugins/lists/server/routes/delete_exception_list_item_route.ts"
},
{
- "plugin": "canvas",
- "path": "x-pack/plugins/canvas/server/routes/workpad/delete.ts"
+ "plugin": "lists",
+ "path": "x-pack/plugins/lists/server/routes/list_index/delete_list_index_route.ts"
},
{
- "plugin": "logsShared",
- "path": "x-pack/plugins/logs_shared/server/lib/adapters/framework/kibana_framework_adapter.ts"
+ "plugin": "lists",
+ "path": "x-pack/plugins/lists/server/routes/list_item/delete_list_item_route.ts"
},
{
- "plugin": "infra",
- "path": "x-pack/plugins/infra/server/lib/adapters/framework/kibana_framework_adapter.ts"
+ "plugin": "lists",
+ "path": "x-pack/plugins/lists/server/routes/list/delete_list_route.ts"
},
{
"plugin": "maps",
"path": "x-pack/plugins/maps/server/data_indexing/indexing_routes.ts"
},
+ {
+ "plugin": "osquery",
+ "path": "x-pack/plugins/osquery/server/routes/saved_query/delete_saved_query_route.ts"
+ },
+ {
+ "plugin": "osquery",
+ "path": "x-pack/plugins/osquery/server/routes/pack/delete_pack_route.ts"
+ },
+ {
+ "plugin": "securitySolution",
+ "path": "x-pack/plugins/security_solution/server/lib/detection_engine/rule_management/api/rules/bulk_delete_rules/route.ts"
+ },
+ {
+ "plugin": "securitySolution",
+ "path": "x-pack/plugins/security_solution/server/lib/detection_engine/rule_management/api/rules/delete_rule/route.ts"
+ },
+ {
+ "plugin": "securitySolution",
+ "path": "x-pack/plugins/security_solution/server/lib/detection_engine/routes/signals/delete_signals_migration_route.ts"
+ },
+ {
+ "plugin": "securitySolution",
+ "path": "x-pack/plugins/security_solution/server/lib/detection_engine/routes/index/delete_index_route.ts"
+ },
{
"plugin": "@kbn/core-http-router-server-internal",
"path": "packages/core/http/core-http-router-server-internal/src/versioned_router/core_versioned_router.ts"
diff --git a/api_docs/kbn_core_http_server.mdx b/api_docs/kbn_core_http_server.mdx
index e0eaf478c499a..2971749df7f57 100644
--- a/api_docs/kbn_core_http_server.mdx
+++ b/api_docs/kbn_core_http_server.mdx
@@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-core-http-server
title: "@kbn/core-http-server"
image: https://source.unsplash.com/400x175/?github
description: API docs for the @kbn/core-http-server plugin
-date: 2023-09-28
+date: 2023-09-29
tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/core-http-server']
---
import kbnCoreHttpServerObj from './kbn_core_http_server.devdocs.json';
diff --git a/api_docs/kbn_core_http_server_internal.mdx b/api_docs/kbn_core_http_server_internal.mdx
index d9f7d3ef1fae1..4b0d36968860e 100644
--- a/api_docs/kbn_core_http_server_internal.mdx
+++ b/api_docs/kbn_core_http_server_internal.mdx
@@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-core-http-server-internal
title: "@kbn/core-http-server-internal"
image: https://source.unsplash.com/400x175/?github
description: API docs for the @kbn/core-http-server-internal plugin
-date: 2023-09-28
+date: 2023-09-29
tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/core-http-server-internal']
---
import kbnCoreHttpServerInternalObj from './kbn_core_http_server_internal.devdocs.json';
diff --git a/api_docs/kbn_core_http_server_mocks.mdx b/api_docs/kbn_core_http_server_mocks.mdx
index d925d4100f069..bd95d0b895f3c 100644
--- a/api_docs/kbn_core_http_server_mocks.mdx
+++ b/api_docs/kbn_core_http_server_mocks.mdx
@@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-core-http-server-mocks
title: "@kbn/core-http-server-mocks"
image: https://source.unsplash.com/400x175/?github
description: API docs for the @kbn/core-http-server-mocks plugin
-date: 2023-09-28
+date: 2023-09-29
tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/core-http-server-mocks']
---
import kbnCoreHttpServerMocksObj from './kbn_core_http_server_mocks.devdocs.json';
diff --git a/api_docs/kbn_core_i18n_browser.mdx b/api_docs/kbn_core_i18n_browser.mdx
index b5a81b286b2b6..97fa7c6ced711 100644
--- a/api_docs/kbn_core_i18n_browser.mdx
+++ b/api_docs/kbn_core_i18n_browser.mdx
@@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-core-i18n-browser
title: "@kbn/core-i18n-browser"
image: https://source.unsplash.com/400x175/?github
description: API docs for the @kbn/core-i18n-browser plugin
-date: 2023-09-28
+date: 2023-09-29
tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/core-i18n-browser']
---
import kbnCoreI18nBrowserObj from './kbn_core_i18n_browser.devdocs.json';
diff --git a/api_docs/kbn_core_i18n_browser_mocks.mdx b/api_docs/kbn_core_i18n_browser_mocks.mdx
index 53f70c4a7067b..45d387b5c7a78 100644
--- a/api_docs/kbn_core_i18n_browser_mocks.mdx
+++ b/api_docs/kbn_core_i18n_browser_mocks.mdx
@@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-core-i18n-browser-mocks
title: "@kbn/core-i18n-browser-mocks"
image: https://source.unsplash.com/400x175/?github
description: API docs for the @kbn/core-i18n-browser-mocks plugin
-date: 2023-09-28
+date: 2023-09-29
tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/core-i18n-browser-mocks']
---
import kbnCoreI18nBrowserMocksObj from './kbn_core_i18n_browser_mocks.devdocs.json';
diff --git a/api_docs/kbn_core_i18n_server.mdx b/api_docs/kbn_core_i18n_server.mdx
index 2e1acd5b5c686..40d9ff86ef5ea 100644
--- a/api_docs/kbn_core_i18n_server.mdx
+++ b/api_docs/kbn_core_i18n_server.mdx
@@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-core-i18n-server
title: "@kbn/core-i18n-server"
image: https://source.unsplash.com/400x175/?github
description: API docs for the @kbn/core-i18n-server plugin
-date: 2023-09-28
+date: 2023-09-29
tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/core-i18n-server']
---
import kbnCoreI18nServerObj from './kbn_core_i18n_server.devdocs.json';
diff --git a/api_docs/kbn_core_i18n_server_internal.mdx b/api_docs/kbn_core_i18n_server_internal.mdx
index d4ef78d2e4bb2..24bf8c52ec0c3 100644
--- a/api_docs/kbn_core_i18n_server_internal.mdx
+++ b/api_docs/kbn_core_i18n_server_internal.mdx
@@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-core-i18n-server-internal
title: "@kbn/core-i18n-server-internal"
image: https://source.unsplash.com/400x175/?github
description: API docs for the @kbn/core-i18n-server-internal plugin
-date: 2023-09-28
+date: 2023-09-29
tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/core-i18n-server-internal']
---
import kbnCoreI18nServerInternalObj from './kbn_core_i18n_server_internal.devdocs.json';
diff --git a/api_docs/kbn_core_i18n_server_mocks.mdx b/api_docs/kbn_core_i18n_server_mocks.mdx
index d5bc893b541ef..dbcb7ca4fd050 100644
--- a/api_docs/kbn_core_i18n_server_mocks.mdx
+++ b/api_docs/kbn_core_i18n_server_mocks.mdx
@@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-core-i18n-server-mocks
title: "@kbn/core-i18n-server-mocks"
image: https://source.unsplash.com/400x175/?github
description: API docs for the @kbn/core-i18n-server-mocks plugin
-date: 2023-09-28
+date: 2023-09-29
tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/core-i18n-server-mocks']
---
import kbnCoreI18nServerMocksObj from './kbn_core_i18n_server_mocks.devdocs.json';
diff --git a/api_docs/kbn_core_injected_metadata_browser_mocks.mdx b/api_docs/kbn_core_injected_metadata_browser_mocks.mdx
index 7e8c40e7227b6..dd8968a086e2b 100644
--- a/api_docs/kbn_core_injected_metadata_browser_mocks.mdx
+++ b/api_docs/kbn_core_injected_metadata_browser_mocks.mdx
@@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-core-injected-metadata-browser-mocks
title: "@kbn/core-injected-metadata-browser-mocks"
image: https://source.unsplash.com/400x175/?github
description: API docs for the @kbn/core-injected-metadata-browser-mocks plugin
-date: 2023-09-28
+date: 2023-09-29
tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/core-injected-metadata-browser-mocks']
---
import kbnCoreInjectedMetadataBrowserMocksObj from './kbn_core_injected_metadata_browser_mocks.devdocs.json';
diff --git a/api_docs/kbn_core_integrations_browser_internal.mdx b/api_docs/kbn_core_integrations_browser_internal.mdx
index b4981db68a843..78f7410cfd3a4 100644
--- a/api_docs/kbn_core_integrations_browser_internal.mdx
+++ b/api_docs/kbn_core_integrations_browser_internal.mdx
@@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-core-integrations-browser-internal
title: "@kbn/core-integrations-browser-internal"
image: https://source.unsplash.com/400x175/?github
description: API docs for the @kbn/core-integrations-browser-internal plugin
-date: 2023-09-28
+date: 2023-09-29
tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/core-integrations-browser-internal']
---
import kbnCoreIntegrationsBrowserInternalObj from './kbn_core_integrations_browser_internal.devdocs.json';
diff --git a/api_docs/kbn_core_integrations_browser_mocks.mdx b/api_docs/kbn_core_integrations_browser_mocks.mdx
index 8085232ced3d1..ec6b9feb1e2d0 100644
--- a/api_docs/kbn_core_integrations_browser_mocks.mdx
+++ b/api_docs/kbn_core_integrations_browser_mocks.mdx
@@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-core-integrations-browser-mocks
title: "@kbn/core-integrations-browser-mocks"
image: https://source.unsplash.com/400x175/?github
description: API docs for the @kbn/core-integrations-browser-mocks plugin
-date: 2023-09-28
+date: 2023-09-29
tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/core-integrations-browser-mocks']
---
import kbnCoreIntegrationsBrowserMocksObj from './kbn_core_integrations_browser_mocks.devdocs.json';
diff --git a/api_docs/kbn_core_lifecycle_browser.mdx b/api_docs/kbn_core_lifecycle_browser.mdx
index 51e705652da35..a493c0e5334a3 100644
--- a/api_docs/kbn_core_lifecycle_browser.mdx
+++ b/api_docs/kbn_core_lifecycle_browser.mdx
@@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-core-lifecycle-browser
title: "@kbn/core-lifecycle-browser"
image: https://source.unsplash.com/400x175/?github
description: API docs for the @kbn/core-lifecycle-browser plugin
-date: 2023-09-28
+date: 2023-09-29
tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/core-lifecycle-browser']
---
import kbnCoreLifecycleBrowserObj from './kbn_core_lifecycle_browser.devdocs.json';
diff --git a/api_docs/kbn_core_lifecycle_browser_mocks.mdx b/api_docs/kbn_core_lifecycle_browser_mocks.mdx
index fade0b9f8fb83..1f4696ed11f62 100644
--- a/api_docs/kbn_core_lifecycle_browser_mocks.mdx
+++ b/api_docs/kbn_core_lifecycle_browser_mocks.mdx
@@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-core-lifecycle-browser-mocks
title: "@kbn/core-lifecycle-browser-mocks"
image: https://source.unsplash.com/400x175/?github
description: API docs for the @kbn/core-lifecycle-browser-mocks plugin
-date: 2023-09-28
+date: 2023-09-29
tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/core-lifecycle-browser-mocks']
---
import kbnCoreLifecycleBrowserMocksObj from './kbn_core_lifecycle_browser_mocks.devdocs.json';
diff --git a/api_docs/kbn_core_lifecycle_server.mdx b/api_docs/kbn_core_lifecycle_server.mdx
index 75da07f2d130f..3ef0f38596b4f 100644
--- a/api_docs/kbn_core_lifecycle_server.mdx
+++ b/api_docs/kbn_core_lifecycle_server.mdx
@@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-core-lifecycle-server
title: "@kbn/core-lifecycle-server"
image: https://source.unsplash.com/400x175/?github
description: API docs for the @kbn/core-lifecycle-server plugin
-date: 2023-09-28
+date: 2023-09-29
tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/core-lifecycle-server']
---
import kbnCoreLifecycleServerObj from './kbn_core_lifecycle_server.devdocs.json';
diff --git a/api_docs/kbn_core_lifecycle_server_mocks.mdx b/api_docs/kbn_core_lifecycle_server_mocks.mdx
index 4145c5fa61f34..87cc81d0b8bba 100644
--- a/api_docs/kbn_core_lifecycle_server_mocks.mdx
+++ b/api_docs/kbn_core_lifecycle_server_mocks.mdx
@@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-core-lifecycle-server-mocks
title: "@kbn/core-lifecycle-server-mocks"
image: https://source.unsplash.com/400x175/?github
description: API docs for the @kbn/core-lifecycle-server-mocks plugin
-date: 2023-09-28
+date: 2023-09-29
tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/core-lifecycle-server-mocks']
---
import kbnCoreLifecycleServerMocksObj from './kbn_core_lifecycle_server_mocks.devdocs.json';
diff --git a/api_docs/kbn_core_logging_browser_mocks.mdx b/api_docs/kbn_core_logging_browser_mocks.mdx
index 4a5ec19f755ed..d08a60b489db4 100644
--- a/api_docs/kbn_core_logging_browser_mocks.mdx
+++ b/api_docs/kbn_core_logging_browser_mocks.mdx
@@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-core-logging-browser-mocks
title: "@kbn/core-logging-browser-mocks"
image: https://source.unsplash.com/400x175/?github
description: API docs for the @kbn/core-logging-browser-mocks plugin
-date: 2023-09-28
+date: 2023-09-29
tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/core-logging-browser-mocks']
---
import kbnCoreLoggingBrowserMocksObj from './kbn_core_logging_browser_mocks.devdocs.json';
diff --git a/api_docs/kbn_core_logging_common_internal.mdx b/api_docs/kbn_core_logging_common_internal.mdx
index 37676b8b0969b..bc6d9ecb3e153 100644
--- a/api_docs/kbn_core_logging_common_internal.mdx
+++ b/api_docs/kbn_core_logging_common_internal.mdx
@@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-core-logging-common-internal
title: "@kbn/core-logging-common-internal"
image: https://source.unsplash.com/400x175/?github
description: API docs for the @kbn/core-logging-common-internal plugin
-date: 2023-09-28
+date: 2023-09-29
tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/core-logging-common-internal']
---
import kbnCoreLoggingCommonInternalObj from './kbn_core_logging_common_internal.devdocs.json';
diff --git a/api_docs/kbn_core_logging_server.mdx b/api_docs/kbn_core_logging_server.mdx
index 70460cdc478df..f477ef76c4243 100644
--- a/api_docs/kbn_core_logging_server.mdx
+++ b/api_docs/kbn_core_logging_server.mdx
@@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-core-logging-server
title: "@kbn/core-logging-server"
image: https://source.unsplash.com/400x175/?github
description: API docs for the @kbn/core-logging-server plugin
-date: 2023-09-28
+date: 2023-09-29
tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/core-logging-server']
---
import kbnCoreLoggingServerObj from './kbn_core_logging_server.devdocs.json';
diff --git a/api_docs/kbn_core_logging_server_internal.mdx b/api_docs/kbn_core_logging_server_internal.mdx
index 69c8469cd0eea..b487cca153c23 100644
--- a/api_docs/kbn_core_logging_server_internal.mdx
+++ b/api_docs/kbn_core_logging_server_internal.mdx
@@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-core-logging-server-internal
title: "@kbn/core-logging-server-internal"
image: https://source.unsplash.com/400x175/?github
description: API docs for the @kbn/core-logging-server-internal plugin
-date: 2023-09-28
+date: 2023-09-29
tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/core-logging-server-internal']
---
import kbnCoreLoggingServerInternalObj from './kbn_core_logging_server_internal.devdocs.json';
diff --git a/api_docs/kbn_core_logging_server_mocks.mdx b/api_docs/kbn_core_logging_server_mocks.mdx
index 69c71f0185656..9ea86eb5df8e1 100644
--- a/api_docs/kbn_core_logging_server_mocks.mdx
+++ b/api_docs/kbn_core_logging_server_mocks.mdx
@@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-core-logging-server-mocks
title: "@kbn/core-logging-server-mocks"
image: https://source.unsplash.com/400x175/?github
description: API docs for the @kbn/core-logging-server-mocks plugin
-date: 2023-09-28
+date: 2023-09-29
tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/core-logging-server-mocks']
---
import kbnCoreLoggingServerMocksObj from './kbn_core_logging_server_mocks.devdocs.json';
diff --git a/api_docs/kbn_core_metrics_collectors_server_internal.mdx b/api_docs/kbn_core_metrics_collectors_server_internal.mdx
index 554df492d406c..23ca9727a73e0 100644
--- a/api_docs/kbn_core_metrics_collectors_server_internal.mdx
+++ b/api_docs/kbn_core_metrics_collectors_server_internal.mdx
@@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-core-metrics-collectors-server-internal
title: "@kbn/core-metrics-collectors-server-internal"
image: https://source.unsplash.com/400x175/?github
description: API docs for the @kbn/core-metrics-collectors-server-internal plugin
-date: 2023-09-28
+date: 2023-09-29
tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/core-metrics-collectors-server-internal']
---
import kbnCoreMetricsCollectorsServerInternalObj from './kbn_core_metrics_collectors_server_internal.devdocs.json';
diff --git a/api_docs/kbn_core_metrics_collectors_server_mocks.mdx b/api_docs/kbn_core_metrics_collectors_server_mocks.mdx
index 6bff36848c721..4f33cc6e9ec6f 100644
--- a/api_docs/kbn_core_metrics_collectors_server_mocks.mdx
+++ b/api_docs/kbn_core_metrics_collectors_server_mocks.mdx
@@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-core-metrics-collectors-server-mocks
title: "@kbn/core-metrics-collectors-server-mocks"
image: https://source.unsplash.com/400x175/?github
description: API docs for the @kbn/core-metrics-collectors-server-mocks plugin
-date: 2023-09-28
+date: 2023-09-29
tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/core-metrics-collectors-server-mocks']
---
import kbnCoreMetricsCollectorsServerMocksObj from './kbn_core_metrics_collectors_server_mocks.devdocs.json';
diff --git a/api_docs/kbn_core_metrics_server.mdx b/api_docs/kbn_core_metrics_server.mdx
index 5cc136ae0749e..906fa991b32cf 100644
--- a/api_docs/kbn_core_metrics_server.mdx
+++ b/api_docs/kbn_core_metrics_server.mdx
@@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-core-metrics-server
title: "@kbn/core-metrics-server"
image: https://source.unsplash.com/400x175/?github
description: API docs for the @kbn/core-metrics-server plugin
-date: 2023-09-28
+date: 2023-09-29
tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/core-metrics-server']
---
import kbnCoreMetricsServerObj from './kbn_core_metrics_server.devdocs.json';
diff --git a/api_docs/kbn_core_metrics_server_internal.mdx b/api_docs/kbn_core_metrics_server_internal.mdx
index e13dcfdb9f38e..0c97643526f22 100644
--- a/api_docs/kbn_core_metrics_server_internal.mdx
+++ b/api_docs/kbn_core_metrics_server_internal.mdx
@@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-core-metrics-server-internal
title: "@kbn/core-metrics-server-internal"
image: https://source.unsplash.com/400x175/?github
description: API docs for the @kbn/core-metrics-server-internal plugin
-date: 2023-09-28
+date: 2023-09-29
tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/core-metrics-server-internal']
---
import kbnCoreMetricsServerInternalObj from './kbn_core_metrics_server_internal.devdocs.json';
diff --git a/api_docs/kbn_core_metrics_server_mocks.mdx b/api_docs/kbn_core_metrics_server_mocks.mdx
index 683c297324edb..a09397f446b14 100644
--- a/api_docs/kbn_core_metrics_server_mocks.mdx
+++ b/api_docs/kbn_core_metrics_server_mocks.mdx
@@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-core-metrics-server-mocks
title: "@kbn/core-metrics-server-mocks"
image: https://source.unsplash.com/400x175/?github
description: API docs for the @kbn/core-metrics-server-mocks plugin
-date: 2023-09-28
+date: 2023-09-29
tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/core-metrics-server-mocks']
---
import kbnCoreMetricsServerMocksObj from './kbn_core_metrics_server_mocks.devdocs.json';
diff --git a/api_docs/kbn_core_mount_utils_browser.mdx b/api_docs/kbn_core_mount_utils_browser.mdx
index aa8f917ab4d34..0303dac409020 100644
--- a/api_docs/kbn_core_mount_utils_browser.mdx
+++ b/api_docs/kbn_core_mount_utils_browser.mdx
@@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-core-mount-utils-browser
title: "@kbn/core-mount-utils-browser"
image: https://source.unsplash.com/400x175/?github
description: API docs for the @kbn/core-mount-utils-browser plugin
-date: 2023-09-28
+date: 2023-09-29
tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/core-mount-utils-browser']
---
import kbnCoreMountUtilsBrowserObj from './kbn_core_mount_utils_browser.devdocs.json';
diff --git a/api_docs/kbn_core_node_server.mdx b/api_docs/kbn_core_node_server.mdx
index 2c8699f1e02dd..15144d2551835 100644
--- a/api_docs/kbn_core_node_server.mdx
+++ b/api_docs/kbn_core_node_server.mdx
@@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-core-node-server
title: "@kbn/core-node-server"
image: https://source.unsplash.com/400x175/?github
description: API docs for the @kbn/core-node-server plugin
-date: 2023-09-28
+date: 2023-09-29
tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/core-node-server']
---
import kbnCoreNodeServerObj from './kbn_core_node_server.devdocs.json';
diff --git a/api_docs/kbn_core_node_server_internal.mdx b/api_docs/kbn_core_node_server_internal.mdx
index 8fdb9d50e0ba9..296549f5f1596 100644
--- a/api_docs/kbn_core_node_server_internal.mdx
+++ b/api_docs/kbn_core_node_server_internal.mdx
@@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-core-node-server-internal
title: "@kbn/core-node-server-internal"
image: https://source.unsplash.com/400x175/?github
description: API docs for the @kbn/core-node-server-internal plugin
-date: 2023-09-28
+date: 2023-09-29
tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/core-node-server-internal']
---
import kbnCoreNodeServerInternalObj from './kbn_core_node_server_internal.devdocs.json';
diff --git a/api_docs/kbn_core_node_server_mocks.mdx b/api_docs/kbn_core_node_server_mocks.mdx
index fb873a0f272db..48726f958a835 100644
--- a/api_docs/kbn_core_node_server_mocks.mdx
+++ b/api_docs/kbn_core_node_server_mocks.mdx
@@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-core-node-server-mocks
title: "@kbn/core-node-server-mocks"
image: https://source.unsplash.com/400x175/?github
description: API docs for the @kbn/core-node-server-mocks plugin
-date: 2023-09-28
+date: 2023-09-29
tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/core-node-server-mocks']
---
import kbnCoreNodeServerMocksObj from './kbn_core_node_server_mocks.devdocs.json';
diff --git a/api_docs/kbn_core_notifications_browser.mdx b/api_docs/kbn_core_notifications_browser.mdx
index a1fcea7abe8ea..92b552846f846 100644
--- a/api_docs/kbn_core_notifications_browser.mdx
+++ b/api_docs/kbn_core_notifications_browser.mdx
@@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-core-notifications-browser
title: "@kbn/core-notifications-browser"
image: https://source.unsplash.com/400x175/?github
description: API docs for the @kbn/core-notifications-browser plugin
-date: 2023-09-28
+date: 2023-09-29
tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/core-notifications-browser']
---
import kbnCoreNotificationsBrowserObj from './kbn_core_notifications_browser.devdocs.json';
diff --git a/api_docs/kbn_core_notifications_browser_internal.mdx b/api_docs/kbn_core_notifications_browser_internal.mdx
index cc6a60953615c..42e1e5f3eb01b 100644
--- a/api_docs/kbn_core_notifications_browser_internal.mdx
+++ b/api_docs/kbn_core_notifications_browser_internal.mdx
@@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-core-notifications-browser-internal
title: "@kbn/core-notifications-browser-internal"
image: https://source.unsplash.com/400x175/?github
description: API docs for the @kbn/core-notifications-browser-internal plugin
-date: 2023-09-28
+date: 2023-09-29
tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/core-notifications-browser-internal']
---
import kbnCoreNotificationsBrowserInternalObj from './kbn_core_notifications_browser_internal.devdocs.json';
diff --git a/api_docs/kbn_core_notifications_browser_mocks.mdx b/api_docs/kbn_core_notifications_browser_mocks.mdx
index 0438a2af691aa..c0f7ab2382d9c 100644
--- a/api_docs/kbn_core_notifications_browser_mocks.mdx
+++ b/api_docs/kbn_core_notifications_browser_mocks.mdx
@@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-core-notifications-browser-mocks
title: "@kbn/core-notifications-browser-mocks"
image: https://source.unsplash.com/400x175/?github
description: API docs for the @kbn/core-notifications-browser-mocks plugin
-date: 2023-09-28
+date: 2023-09-29
tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/core-notifications-browser-mocks']
---
import kbnCoreNotificationsBrowserMocksObj from './kbn_core_notifications_browser_mocks.devdocs.json';
diff --git a/api_docs/kbn_core_overlays_browser.mdx b/api_docs/kbn_core_overlays_browser.mdx
index a26e2e5ffac28..289bac4cf07e9 100644
--- a/api_docs/kbn_core_overlays_browser.mdx
+++ b/api_docs/kbn_core_overlays_browser.mdx
@@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-core-overlays-browser
title: "@kbn/core-overlays-browser"
image: https://source.unsplash.com/400x175/?github
description: API docs for the @kbn/core-overlays-browser plugin
-date: 2023-09-28
+date: 2023-09-29
tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/core-overlays-browser']
---
import kbnCoreOverlaysBrowserObj from './kbn_core_overlays_browser.devdocs.json';
diff --git a/api_docs/kbn_core_overlays_browser_internal.mdx b/api_docs/kbn_core_overlays_browser_internal.mdx
index fa66fe5c3dbc4..fa9fffd5503b6 100644
--- a/api_docs/kbn_core_overlays_browser_internal.mdx
+++ b/api_docs/kbn_core_overlays_browser_internal.mdx
@@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-core-overlays-browser-internal
title: "@kbn/core-overlays-browser-internal"
image: https://source.unsplash.com/400x175/?github
description: API docs for the @kbn/core-overlays-browser-internal plugin
-date: 2023-09-28
+date: 2023-09-29
tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/core-overlays-browser-internal']
---
import kbnCoreOverlaysBrowserInternalObj from './kbn_core_overlays_browser_internal.devdocs.json';
diff --git a/api_docs/kbn_core_overlays_browser_mocks.mdx b/api_docs/kbn_core_overlays_browser_mocks.mdx
index 078908ff2deb9..f76a699e6eb21 100644
--- a/api_docs/kbn_core_overlays_browser_mocks.mdx
+++ b/api_docs/kbn_core_overlays_browser_mocks.mdx
@@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-core-overlays-browser-mocks
title: "@kbn/core-overlays-browser-mocks"
image: https://source.unsplash.com/400x175/?github
description: API docs for the @kbn/core-overlays-browser-mocks plugin
-date: 2023-09-28
+date: 2023-09-29
tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/core-overlays-browser-mocks']
---
import kbnCoreOverlaysBrowserMocksObj from './kbn_core_overlays_browser_mocks.devdocs.json';
diff --git a/api_docs/kbn_core_plugins_browser.mdx b/api_docs/kbn_core_plugins_browser.mdx
index 4e77f9399ccab..5e24dbc5d3da3 100644
--- a/api_docs/kbn_core_plugins_browser.mdx
+++ b/api_docs/kbn_core_plugins_browser.mdx
@@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-core-plugins-browser
title: "@kbn/core-plugins-browser"
image: https://source.unsplash.com/400x175/?github
description: API docs for the @kbn/core-plugins-browser plugin
-date: 2023-09-28
+date: 2023-09-29
tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/core-plugins-browser']
---
import kbnCorePluginsBrowserObj from './kbn_core_plugins_browser.devdocs.json';
diff --git a/api_docs/kbn_core_plugins_browser_mocks.mdx b/api_docs/kbn_core_plugins_browser_mocks.mdx
index c69637f7b4ddf..4fca5e182ad3b 100644
--- a/api_docs/kbn_core_plugins_browser_mocks.mdx
+++ b/api_docs/kbn_core_plugins_browser_mocks.mdx
@@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-core-plugins-browser-mocks
title: "@kbn/core-plugins-browser-mocks"
image: https://source.unsplash.com/400x175/?github
description: API docs for the @kbn/core-plugins-browser-mocks plugin
-date: 2023-09-28
+date: 2023-09-29
tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/core-plugins-browser-mocks']
---
import kbnCorePluginsBrowserMocksObj from './kbn_core_plugins_browser_mocks.devdocs.json';
diff --git a/api_docs/kbn_core_plugins_server.mdx b/api_docs/kbn_core_plugins_server.mdx
index 2825529c4cf74..16cef2f58d579 100644
--- a/api_docs/kbn_core_plugins_server.mdx
+++ b/api_docs/kbn_core_plugins_server.mdx
@@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-core-plugins-server
title: "@kbn/core-plugins-server"
image: https://source.unsplash.com/400x175/?github
description: API docs for the @kbn/core-plugins-server plugin
-date: 2023-09-28
+date: 2023-09-29
tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/core-plugins-server']
---
import kbnCorePluginsServerObj from './kbn_core_plugins_server.devdocs.json';
diff --git a/api_docs/kbn_core_plugins_server_mocks.mdx b/api_docs/kbn_core_plugins_server_mocks.mdx
index 521bd387a4f57..864516cf44463 100644
--- a/api_docs/kbn_core_plugins_server_mocks.mdx
+++ b/api_docs/kbn_core_plugins_server_mocks.mdx
@@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-core-plugins-server-mocks
title: "@kbn/core-plugins-server-mocks"
image: https://source.unsplash.com/400x175/?github
description: API docs for the @kbn/core-plugins-server-mocks plugin
-date: 2023-09-28
+date: 2023-09-29
tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/core-plugins-server-mocks']
---
import kbnCorePluginsServerMocksObj from './kbn_core_plugins_server_mocks.devdocs.json';
diff --git a/api_docs/kbn_core_preboot_server.mdx b/api_docs/kbn_core_preboot_server.mdx
index e14718e6bc06e..445fda7700bb8 100644
--- a/api_docs/kbn_core_preboot_server.mdx
+++ b/api_docs/kbn_core_preboot_server.mdx
@@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-core-preboot-server
title: "@kbn/core-preboot-server"
image: https://source.unsplash.com/400x175/?github
description: API docs for the @kbn/core-preboot-server plugin
-date: 2023-09-28
+date: 2023-09-29
tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/core-preboot-server']
---
import kbnCorePrebootServerObj from './kbn_core_preboot_server.devdocs.json';
diff --git a/api_docs/kbn_core_preboot_server_mocks.mdx b/api_docs/kbn_core_preboot_server_mocks.mdx
index 73c970639051d..21e1af399b9bf 100644
--- a/api_docs/kbn_core_preboot_server_mocks.mdx
+++ b/api_docs/kbn_core_preboot_server_mocks.mdx
@@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-core-preboot-server-mocks
title: "@kbn/core-preboot-server-mocks"
image: https://source.unsplash.com/400x175/?github
description: API docs for the @kbn/core-preboot-server-mocks plugin
-date: 2023-09-28
+date: 2023-09-29
tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/core-preboot-server-mocks']
---
import kbnCorePrebootServerMocksObj from './kbn_core_preboot_server_mocks.devdocs.json';
diff --git a/api_docs/kbn_core_rendering_browser_mocks.mdx b/api_docs/kbn_core_rendering_browser_mocks.mdx
index 70ba2d2f95c16..540dfb5013a57 100644
--- a/api_docs/kbn_core_rendering_browser_mocks.mdx
+++ b/api_docs/kbn_core_rendering_browser_mocks.mdx
@@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-core-rendering-browser-mocks
title: "@kbn/core-rendering-browser-mocks"
image: https://source.unsplash.com/400x175/?github
description: API docs for the @kbn/core-rendering-browser-mocks plugin
-date: 2023-09-28
+date: 2023-09-29
tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/core-rendering-browser-mocks']
---
import kbnCoreRenderingBrowserMocksObj from './kbn_core_rendering_browser_mocks.devdocs.json';
diff --git a/api_docs/kbn_core_rendering_server_internal.mdx b/api_docs/kbn_core_rendering_server_internal.mdx
index 3edb04efa0512..f2d4c1bb00eee 100644
--- a/api_docs/kbn_core_rendering_server_internal.mdx
+++ b/api_docs/kbn_core_rendering_server_internal.mdx
@@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-core-rendering-server-internal
title: "@kbn/core-rendering-server-internal"
image: https://source.unsplash.com/400x175/?github
description: API docs for the @kbn/core-rendering-server-internal plugin
-date: 2023-09-28
+date: 2023-09-29
tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/core-rendering-server-internal']
---
import kbnCoreRenderingServerInternalObj from './kbn_core_rendering_server_internal.devdocs.json';
diff --git a/api_docs/kbn_core_rendering_server_mocks.mdx b/api_docs/kbn_core_rendering_server_mocks.mdx
index ba406dbd6c411..6c9e18231375c 100644
--- a/api_docs/kbn_core_rendering_server_mocks.mdx
+++ b/api_docs/kbn_core_rendering_server_mocks.mdx
@@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-core-rendering-server-mocks
title: "@kbn/core-rendering-server-mocks"
image: https://source.unsplash.com/400x175/?github
description: API docs for the @kbn/core-rendering-server-mocks plugin
-date: 2023-09-28
+date: 2023-09-29
tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/core-rendering-server-mocks']
---
import kbnCoreRenderingServerMocksObj from './kbn_core_rendering_server_mocks.devdocs.json';
diff --git a/api_docs/kbn_core_root_server_internal.mdx b/api_docs/kbn_core_root_server_internal.mdx
index 7000629209ee6..2ae84e6bfa9b2 100644
--- a/api_docs/kbn_core_root_server_internal.mdx
+++ b/api_docs/kbn_core_root_server_internal.mdx
@@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-core-root-server-internal
title: "@kbn/core-root-server-internal"
image: https://source.unsplash.com/400x175/?github
description: API docs for the @kbn/core-root-server-internal plugin
-date: 2023-09-28
+date: 2023-09-29
tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/core-root-server-internal']
---
import kbnCoreRootServerInternalObj from './kbn_core_root_server_internal.devdocs.json';
diff --git a/api_docs/kbn_core_saved_objects_api_browser.devdocs.json b/api_docs/kbn_core_saved_objects_api_browser.devdocs.json
index 30d81791476eb..6094383b06ca3 100644
--- a/api_docs/kbn_core_saved_objects_api_browser.devdocs.json
+++ b/api_docs/kbn_core_saved_objects_api_browser.devdocs.json
@@ -65,22 +65,6 @@
"plugin": "@kbn/core",
"path": "src/core/public/index.ts"
},
- {
- "plugin": "cases",
- "path": "x-pack/plugins/cases/common/ui/types.ts"
- },
- {
- "plugin": "cases",
- "path": "x-pack/plugins/cases/common/ui/types.ts"
- },
- {
- "plugin": "cases",
- "path": "x-pack/plugins/cases/common/ui/types.ts"
- },
- {
- "plugin": "cases",
- "path": "x-pack/plugins/cases/common/ui/types.ts"
- },
{
"plugin": "spaces",
"path": "x-pack/plugins/spaces/public/legacy_urls/types.ts"
@@ -137,6 +121,22 @@
"plugin": "lens",
"path": "x-pack/plugins/lens/public/types.ts"
},
+ {
+ "plugin": "cases",
+ "path": "x-pack/plugins/cases/common/ui/types.ts"
+ },
+ {
+ "plugin": "cases",
+ "path": "x-pack/plugins/cases/common/ui/types.ts"
+ },
+ {
+ "plugin": "cases",
+ "path": "x-pack/plugins/cases/common/ui/types.ts"
+ },
+ {
+ "plugin": "cases",
+ "path": "x-pack/plugins/cases/common/ui/types.ts"
+ },
{
"plugin": "maps",
"path": "x-pack/plugins/maps/public/map_attribute_service.ts"
@@ -1054,6 +1054,10 @@
"plugin": "@kbn/core-saved-objects-browser-internal",
"path": "packages/core/saved-objects/core-saved-objects-browser-internal/src/simple_saved_object.ts"
},
+ {
+ "plugin": "@kbn/core-saved-objects-browser-mocks",
+ "path": "packages/core/saved-objects/core-saved-objects-browser-mocks/src/saved_objects_service.mock.ts"
+ },
{
"plugin": "savedObjects",
"path": "src/plugins/saved_objects/public/saved_object/helpers/create_source.ts"
@@ -1074,10 +1078,6 @@
"plugin": "savedObjects",
"path": "src/plugins/saved_objects/public/saved_object/helpers/save_with_confirmation.ts"
},
- {
- "plugin": "@kbn/core-saved-objects-browser-mocks",
- "path": "packages/core/saved-objects/core-saved-objects-browser-mocks/src/saved_objects_service.mock.ts"
- },
{
"plugin": "savedObjects",
"path": "src/plugins/saved_objects/public/saved_object/saved_object.test.ts"
@@ -1269,14 +1269,14 @@
"deprecated": true,
"trackAdoption": false,
"references": [
- {
- "plugin": "home",
- "path": "src/plugins/home/public/application/components/home_app.js"
- },
{
"plugin": "@kbn/core-saved-objects-browser-mocks",
"path": "packages/core/saved-objects/core-saved-objects-browser-mocks/src/saved_objects_service.mock.ts"
},
+ {
+ "plugin": "home",
+ "path": "src/plugins/home/public/application/components/home_app.js"
+ },
{
"plugin": "@kbn/core-saved-objects-browser-internal",
"path": "packages/core/saved-objects/core-saved-objects-browser-internal/src/saved_objects_client.ts"
@@ -1378,6 +1378,10 @@
"plugin": "@kbn/core-saved-objects-browser-internal",
"path": "packages/core/saved-objects/core-saved-objects-browser-internal/src/simple_saved_object.ts"
},
+ {
+ "plugin": "@kbn/core-saved-objects-browser-mocks",
+ "path": "packages/core/saved-objects/core-saved-objects-browser-mocks/src/saved_objects_service.mock.ts"
+ },
{
"plugin": "savedObjects",
"path": "src/plugins/saved_objects/public/saved_object/helpers/build_saved_object.ts"
@@ -1386,10 +1390,6 @@
"plugin": "visualizations",
"path": "src/plugins/visualizations/public/visualize_app/components/visualize_listing.tsx"
},
- {
- "plugin": "@kbn/core-saved-objects-browser-mocks",
- "path": "packages/core/saved-objects/core-saved-objects-browser-mocks/src/saved_objects_service.mock.ts"
- },
{
"plugin": "@kbn/core-saved-objects-browser-internal",
"path": "packages/core/saved-objects/core-saved-objects-browser-internal/src/saved_objects_client.ts"
@@ -1623,14 +1623,14 @@
"deprecated": true,
"trackAdoption": false,
"references": [
- {
- "plugin": "savedObjects",
- "path": "src/plugins/saved_objects/public/saved_object/helpers/find_object_by_title.ts"
- },
{
"plugin": "@kbn/core-saved-objects-browser-mocks",
"path": "packages/core/saved-objects/core-saved-objects-browser-mocks/src/saved_objects_service.mock.ts"
},
+ {
+ "plugin": "savedObjects",
+ "path": "src/plugins/saved_objects/public/saved_object/helpers/find_object_by_title.ts"
+ },
{
"plugin": "dashboardEnhanced",
"path": "x-pack/plugins/dashboard_enhanced/public/services/drilldowns/abstract_dashboard_drilldown/components/collect_config_container.tsx"
@@ -1719,14 +1719,14 @@
"deprecated": true,
"trackAdoption": false,
"references": [
- {
- "plugin": "savedObjects",
- "path": "src/plugins/saved_objects/public/saved_object/helpers/initialize_saved_object.ts"
- },
{
"plugin": "@kbn/core-saved-objects-browser-mocks",
"path": "packages/core/saved-objects/core-saved-objects-browser-mocks/src/saved_objects_service.mock.ts"
},
+ {
+ "plugin": "savedObjects",
+ "path": "src/plugins/saved_objects/public/saved_object/helpers/initialize_saved_object.ts"
+ },
{
"plugin": "dashboardEnhanced",
"path": "x-pack/plugins/dashboard_enhanced/public/services/drilldowns/abstract_dashboard_drilldown/components/collect_config_container.tsx"
@@ -2988,12 +2988,12 @@
"path": "src/plugins/visualizations/public/vis_types/vis_type_alias_registry.ts"
},
{
- "plugin": "dataVisualizer",
- "path": "x-pack/plugins/data_visualizer/common/types/index.ts"
+ "plugin": "aiops",
+ "path": "x-pack/plugins/aiops/public/application/utils/search_utils.ts"
},
{
- "plugin": "dataVisualizer",
- "path": "x-pack/plugins/data_visualizer/common/types/index.ts"
+ "plugin": "aiops",
+ "path": "x-pack/plugins/aiops/public/application/utils/search_utils.ts"
},
{
"plugin": "ml",
@@ -3004,12 +3004,12 @@
"path": "x-pack/plugins/ml/common/types/kibana.ts"
},
{
- "plugin": "aiops",
- "path": "x-pack/plugins/aiops/public/application/utils/search_utils.ts"
+ "plugin": "dataVisualizer",
+ "path": "x-pack/plugins/data_visualizer/common/types/index.ts"
},
{
- "plugin": "aiops",
- "path": "x-pack/plugins/aiops/public/application/utils/search_utils.ts"
+ "plugin": "dataVisualizer",
+ "path": "x-pack/plugins/data_visualizer/common/types/index.ts"
},
{
"plugin": "dashboardEnhanced",
diff --git a/api_docs/kbn_core_saved_objects_api_browser.mdx b/api_docs/kbn_core_saved_objects_api_browser.mdx
index 5ad6a91fe4d29..77a987b7ca3e4 100644
--- a/api_docs/kbn_core_saved_objects_api_browser.mdx
+++ b/api_docs/kbn_core_saved_objects_api_browser.mdx
@@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-core-saved-objects-api-browser
title: "@kbn/core-saved-objects-api-browser"
image: https://source.unsplash.com/400x175/?github
description: API docs for the @kbn/core-saved-objects-api-browser plugin
-date: 2023-09-28
+date: 2023-09-29
tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/core-saved-objects-api-browser']
---
import kbnCoreSavedObjectsApiBrowserObj from './kbn_core_saved_objects_api_browser.devdocs.json';
diff --git a/api_docs/kbn_core_saved_objects_api_server.devdocs.json b/api_docs/kbn_core_saved_objects_api_server.devdocs.json
index de1ed3a7811b1..4047fe32a2f08 100644
--- a/api_docs/kbn_core_saved_objects_api_server.devdocs.json
+++ b/api_docs/kbn_core_saved_objects_api_server.devdocs.json
@@ -2294,18 +2294,6 @@
"deprecated": true,
"trackAdoption": false,
"references": [
- {
- "plugin": "@kbn/core-saved-objects-api-server-internal",
- "path": "packages/core/saved-objects/core-saved-objects-api-server-internal/src/lib/apis/utils/internal_utils.ts"
- },
- {
- "plugin": "@kbn/core-saved-objects-import-export-server-internal",
- "path": "packages/core/saved-objects/core-saved-objects-import-export-server-internal/src/import/lib/collect_saved_objects.ts"
- },
- {
- "plugin": "@kbn/core-saved-objects-server-internal",
- "path": "packages/core/saved-objects/core-saved-objects-server-internal/src/routes/legacy_import_export/lib/import_dashboards.ts"
- },
{
"plugin": "@kbn/core-saved-objects-api-browser",
"path": "packages/core/saved-objects/core-saved-objects-api-browser/src/simple_saved_object.ts"
@@ -2318,6 +2306,22 @@
"plugin": "@kbn/core-saved-objects-browser-internal",
"path": "packages/core/saved-objects/core-saved-objects-browser-internal/src/simple_saved_object.ts"
},
+ {
+ "plugin": "@kbn/core-saved-objects-browser-mocks",
+ "path": "packages/core/saved-objects/core-saved-objects-browser-mocks/src/simple_saved_object.mock.ts"
+ },
+ {
+ "plugin": "@kbn/core-saved-objects-api-server-internal",
+ "path": "packages/core/saved-objects/core-saved-objects-api-server-internal/src/lib/apis/utils/internal_utils.ts"
+ },
+ {
+ "plugin": "@kbn/core-saved-objects-import-export-server-internal",
+ "path": "packages/core/saved-objects/core-saved-objects-import-export-server-internal/src/import/lib/collect_saved_objects.ts"
+ },
+ {
+ "plugin": "@kbn/core-saved-objects-server-internal",
+ "path": "packages/core/saved-objects/core-saved-objects-server-internal/src/routes/legacy_import_export/lib/import_dashboards.ts"
+ },
{
"plugin": "fleet",
"path": "x-pack/plugins/fleet/server/services/epm/kibana/assets/install.ts"
@@ -2330,6 +2334,22 @@
"plugin": "fleet",
"path": "x-pack/plugins/fleet/server/services/epm/kibana/assets/install.ts"
},
+ {
+ "plugin": "graph",
+ "path": "x-pack/plugins/graph/server/sample_data/logs.ts"
+ },
+ {
+ "plugin": "graph",
+ "path": "x-pack/plugins/graph/server/sample_data/ecommerce.ts"
+ },
+ {
+ "plugin": "graph",
+ "path": "x-pack/plugins/graph/server/sample_data/flights.ts"
+ },
+ {
+ "plugin": "lists",
+ "path": "x-pack/plugins/lists/server/services/exception_lists/exception_list_client.mock.ts"
+ },
{
"plugin": "osquery",
"path": "x-pack/plugins/osquery/server/routes/pack/read_pack_route.ts"
@@ -2418,26 +2438,6 @@
"plugin": "securitySolution",
"path": "x-pack/plugins/security_solution/server/lib/risk_score/prebuilt_saved_objects/saved_object/user_risk_score_dashboards.ts"
},
- {
- "plugin": "@kbn/core-saved-objects-browser-mocks",
- "path": "packages/core/saved-objects/core-saved-objects-browser-mocks/src/simple_saved_object.mock.ts"
- },
- {
- "plugin": "graph",
- "path": "x-pack/plugins/graph/server/sample_data/logs.ts"
- },
- {
- "plugin": "graph",
- "path": "x-pack/plugins/graph/server/sample_data/ecommerce.ts"
- },
- {
- "plugin": "graph",
- "path": "x-pack/plugins/graph/server/sample_data/flights.ts"
- },
- {
- "plugin": "lists",
- "path": "x-pack/plugins/lists/server/services/exception_lists/exception_list_client.mock.ts"
- },
{
"plugin": "alerting",
"path": "x-pack/plugins/alerting/server/rules_client/lib/siem_legacy_actions/retrieve_migrated_legacy_actions.mock.ts"
@@ -2754,22 +2754,6 @@
"plugin": "alerting",
"path": "x-pack/plugins/alerting/server/types.ts"
},
- {
- "plugin": "securitySolution",
- "path": "x-pack/plugins/security_solution/server/lib/detection_engine/rule_actions_legacy/logic/rule_actions/legacy_types.ts"
- },
- {
- "plugin": "securitySolution",
- "path": "x-pack/plugins/security_solution/server/lib/detection_engine/rule_actions_legacy/logic/rule_actions/legacy_types.ts"
- },
- {
- "plugin": "securitySolution",
- "path": "x-pack/plugins/security_solution/server/lib/detection_engine/rule_actions_legacy/logic/rule_actions/legacy_migrations.ts"
- },
- {
- "plugin": "securitySolution",
- "path": "x-pack/plugins/security_solution/server/lib/detection_engine/rule_actions_legacy/logic/rule_actions/legacy_migrations.ts"
- },
{
"plugin": "savedSearch",
"path": "src/plugins/saved_search/server/saved_objects/search_migrations.ts"
@@ -2806,6 +2790,22 @@
"plugin": "enterpriseSearch",
"path": "x-pack/plugins/enterprise_search/server/collectors/lib/telemetry.ts"
},
+ {
+ "plugin": "securitySolution",
+ "path": "x-pack/plugins/security_solution/server/lib/detection_engine/rule_actions_legacy/logic/rule_actions/legacy_types.ts"
+ },
+ {
+ "plugin": "securitySolution",
+ "path": "x-pack/plugins/security_solution/server/lib/detection_engine/rule_actions_legacy/logic/rule_actions/legacy_types.ts"
+ },
+ {
+ "plugin": "securitySolution",
+ "path": "x-pack/plugins/security_solution/server/lib/detection_engine/rule_actions_legacy/logic/rule_actions/legacy_migrations.ts"
+ },
+ {
+ "plugin": "securitySolution",
+ "path": "x-pack/plugins/security_solution/server/lib/detection_engine/rule_actions_legacy/logic/rule_actions/legacy_migrations.ts"
+ },
{
"plugin": "taskManager",
"path": "x-pack/plugins/task_manager/server/task_store.test.ts"
diff --git a/api_docs/kbn_core_saved_objects_api_server.mdx b/api_docs/kbn_core_saved_objects_api_server.mdx
index 6d59ee4a06204..179461e160ac4 100644
--- a/api_docs/kbn_core_saved_objects_api_server.mdx
+++ b/api_docs/kbn_core_saved_objects_api_server.mdx
@@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-core-saved-objects-api-server
title: "@kbn/core-saved-objects-api-server"
image: https://source.unsplash.com/400x175/?github
description: API docs for the @kbn/core-saved-objects-api-server plugin
-date: 2023-09-28
+date: 2023-09-29
tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/core-saved-objects-api-server']
---
import kbnCoreSavedObjectsApiServerObj from './kbn_core_saved_objects_api_server.devdocs.json';
diff --git a/api_docs/kbn_core_saved_objects_api_server_mocks.mdx b/api_docs/kbn_core_saved_objects_api_server_mocks.mdx
index 76d077788665b..d6bc8d9f745f1 100644
--- a/api_docs/kbn_core_saved_objects_api_server_mocks.mdx
+++ b/api_docs/kbn_core_saved_objects_api_server_mocks.mdx
@@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-core-saved-objects-api-server-mocks
title: "@kbn/core-saved-objects-api-server-mocks"
image: https://source.unsplash.com/400x175/?github
description: API docs for the @kbn/core-saved-objects-api-server-mocks plugin
-date: 2023-09-28
+date: 2023-09-29
tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/core-saved-objects-api-server-mocks']
---
import kbnCoreSavedObjectsApiServerMocksObj from './kbn_core_saved_objects_api_server_mocks.devdocs.json';
diff --git a/api_docs/kbn_core_saved_objects_base_server_internal.mdx b/api_docs/kbn_core_saved_objects_base_server_internal.mdx
index 3562e84112af1..fe6bc5508d884 100644
--- a/api_docs/kbn_core_saved_objects_base_server_internal.mdx
+++ b/api_docs/kbn_core_saved_objects_base_server_internal.mdx
@@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-core-saved-objects-base-server-internal
title: "@kbn/core-saved-objects-base-server-internal"
image: https://source.unsplash.com/400x175/?github
description: API docs for the @kbn/core-saved-objects-base-server-internal plugin
-date: 2023-09-28
+date: 2023-09-29
tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/core-saved-objects-base-server-internal']
---
import kbnCoreSavedObjectsBaseServerInternalObj from './kbn_core_saved_objects_base_server_internal.devdocs.json';
diff --git a/api_docs/kbn_core_saved_objects_base_server_mocks.mdx b/api_docs/kbn_core_saved_objects_base_server_mocks.mdx
index c5f3fa6010e07..d881aba9ce9ca 100644
--- a/api_docs/kbn_core_saved_objects_base_server_mocks.mdx
+++ b/api_docs/kbn_core_saved_objects_base_server_mocks.mdx
@@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-core-saved-objects-base-server-mocks
title: "@kbn/core-saved-objects-base-server-mocks"
image: https://source.unsplash.com/400x175/?github
description: API docs for the @kbn/core-saved-objects-base-server-mocks plugin
-date: 2023-09-28
+date: 2023-09-29
tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/core-saved-objects-base-server-mocks']
---
import kbnCoreSavedObjectsBaseServerMocksObj from './kbn_core_saved_objects_base_server_mocks.devdocs.json';
diff --git a/api_docs/kbn_core_saved_objects_browser.devdocs.json b/api_docs/kbn_core_saved_objects_browser.devdocs.json
index c36309dcf903d..487ebe0921108 100644
--- a/api_docs/kbn_core_saved_objects_browser.devdocs.json
+++ b/api_docs/kbn_core_saved_objects_browser.devdocs.json
@@ -33,10 +33,6 @@
"deprecated": true,
"trackAdoption": false,
"references": [
- {
- "plugin": "@kbn/core",
- "path": "src/core/server/index.ts"
- },
{
"plugin": "@kbn/core-lifecycle-browser",
"path": "packages/core/lifecycle/core-lifecycle-browser/src/core_start.ts"
@@ -92,6 +88,10 @@
{
"plugin": "@kbn/core-saved-objects-browser-mocks",
"path": "packages/core/saved-objects/core-saved-objects-browser-mocks/src/saved_objects_service.mock.ts"
+ },
+ {
+ "plugin": "@kbn/core",
+ "path": "src/core/server/index.ts"
}
],
"children": [
diff --git a/api_docs/kbn_core_saved_objects_browser.mdx b/api_docs/kbn_core_saved_objects_browser.mdx
index 80e5ed5b00cf7..66d59c49a4069 100644
--- a/api_docs/kbn_core_saved_objects_browser.mdx
+++ b/api_docs/kbn_core_saved_objects_browser.mdx
@@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-core-saved-objects-browser
title: "@kbn/core-saved-objects-browser"
image: https://source.unsplash.com/400x175/?github
description: API docs for the @kbn/core-saved-objects-browser plugin
-date: 2023-09-28
+date: 2023-09-29
tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/core-saved-objects-browser']
---
import kbnCoreSavedObjectsBrowserObj from './kbn_core_saved_objects_browser.devdocs.json';
diff --git a/api_docs/kbn_core_saved_objects_browser_internal.mdx b/api_docs/kbn_core_saved_objects_browser_internal.mdx
index 6e07557688821..6ec662e559200 100644
--- a/api_docs/kbn_core_saved_objects_browser_internal.mdx
+++ b/api_docs/kbn_core_saved_objects_browser_internal.mdx
@@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-core-saved-objects-browser-internal
title: "@kbn/core-saved-objects-browser-internal"
image: https://source.unsplash.com/400x175/?github
description: API docs for the @kbn/core-saved-objects-browser-internal plugin
-date: 2023-09-28
+date: 2023-09-29
tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/core-saved-objects-browser-internal']
---
import kbnCoreSavedObjectsBrowserInternalObj from './kbn_core_saved_objects_browser_internal.devdocs.json';
diff --git a/api_docs/kbn_core_saved_objects_browser_mocks.mdx b/api_docs/kbn_core_saved_objects_browser_mocks.mdx
index 4e67b70507a85..9de9bfc7cb243 100644
--- a/api_docs/kbn_core_saved_objects_browser_mocks.mdx
+++ b/api_docs/kbn_core_saved_objects_browser_mocks.mdx
@@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-core-saved-objects-browser-mocks
title: "@kbn/core-saved-objects-browser-mocks"
image: https://source.unsplash.com/400x175/?github
description: API docs for the @kbn/core-saved-objects-browser-mocks plugin
-date: 2023-09-28
+date: 2023-09-29
tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/core-saved-objects-browser-mocks']
---
import kbnCoreSavedObjectsBrowserMocksObj from './kbn_core_saved_objects_browser_mocks.devdocs.json';
diff --git a/api_docs/kbn_core_saved_objects_common.devdocs.json b/api_docs/kbn_core_saved_objects_common.devdocs.json
index 00d5b87de088b..4e83ddfc44888 100644
--- a/api_docs/kbn_core_saved_objects_common.devdocs.json
+++ b/api_docs/kbn_core_saved_objects_common.devdocs.json
@@ -1045,194 +1045,6 @@
"plugin": "@kbn/core-saved-objects-browser-internal",
"path": "packages/core/saved-objects/core-saved-objects-browser-internal/src/simple_saved_object.ts"
},
- {
- "plugin": "@kbn/core",
- "path": "src/core/types/index.ts"
- },
- {
- "plugin": "savedObjectsTaggingOss",
- "path": "src/plugins/saved_objects_tagging_oss/public/api.ts"
- },
- {
- "plugin": "savedObjectsTaggingOss",
- "path": "src/plugins/saved_objects_tagging_oss/public/api.ts"
- },
- {
- "plugin": "savedObjectsTaggingOss",
- "path": "src/plugins/saved_objects_tagging_oss/public/api.ts"
- },
- {
- "plugin": "savedObjectsTagging",
- "path": "x-pack/plugins/saved_objects_tagging/common/types.ts"
- },
- {
- "plugin": "savedObjectsTagging",
- "path": "x-pack/plugins/saved_objects_tagging/common/types.ts"
- },
- {
- "plugin": "savedObjectsTagging",
- "path": "x-pack/plugins/saved_objects_tagging/public/utils.ts"
- },
- {
- "plugin": "savedObjectsTagging",
- "path": "x-pack/plugins/saved_objects_tagging/public/utils.ts"
- },
- {
- "plugin": "securitySolution",
- "path": "x-pack/plugins/security_solution/server/lib/risk_score/prebuilt_saved_objects/saved_object/host_risk_score_dashboards.ts"
- },
- {
- "plugin": "securitySolution",
- "path": "x-pack/plugins/security_solution/server/lib/risk_score/prebuilt_saved_objects/saved_object/host_risk_score_dashboards.ts"
- },
- {
- "plugin": "securitySolution",
- "path": "x-pack/plugins/security_solution/server/lib/risk_score/prebuilt_saved_objects/saved_object/user_risk_score_dashboards.ts"
- },
- {
- "plugin": "securitySolution",
- "path": "x-pack/plugins/security_solution/server/lib/risk_score/prebuilt_saved_objects/saved_object/user_risk_score_dashboards.ts"
- },
- {
- "plugin": "lists",
- "path": "x-pack/plugins/lists/server/services/exception_lists/exception_list_client.mock.ts"
- },
- {
- "plugin": "lists",
- "path": "x-pack/plugins/lists/server/services/exception_lists/exception_list_client.mock.ts"
- },
- {
- "plugin": "lists",
- "path": "x-pack/plugins/lists/server/services/exception_lists/exception_list_client.mock.ts"
- },
- {
- "plugin": "lists",
- "path": "x-pack/plugins/lists/server/services/exception_lists/exception_list_client.mock.ts"
- },
- {
- "plugin": "lists",
- "path": "x-pack/plugins/lists/server/services/exception_lists/exception_list_client.mock.ts"
- },
- {
- "plugin": "savedObjectsTagging",
- "path": "x-pack/plugins/saved_objects_tagging/public/utils.test.ts"
- },
- {
- "plugin": "savedObjectsTagging",
- "path": "x-pack/plugins/saved_objects_tagging/public/utils.test.ts"
- },
- {
- "plugin": "savedObjectsTagging",
- "path": "x-pack/plugins/saved_objects_tagging/public/utils.test.ts"
- },
- {
- "plugin": "upgradeAssistant",
- "path": "x-pack/plugins/upgrade_assistant/common/types.ts"
- },
- {
- "plugin": "upgradeAssistant",
- "path": "x-pack/plugins/upgrade_assistant/common/types.ts"
- },
- {
- "plugin": "savedObjectsTagging",
- "path": "x-pack/plugins/saved_objects_tagging/common/test_utils/index.ts"
- },
- {
- "plugin": "savedObjectsTagging",
- "path": "x-pack/plugins/saved_objects_tagging/common/test_utils/index.ts"
- },
- {
- "plugin": "savedObjectsTagging",
- "path": "x-pack/plugins/saved_objects_tagging/common/test_utils/index.ts"
- },
- {
- "plugin": "savedObjectsManagement",
- "path": "src/plugins/saved_objects_management/server/lib/find_relationships.test.ts"
- },
- {
- "plugin": "savedObjectsManagement",
- "path": "src/plugins/saved_objects_management/server/lib/find_relationships.test.ts"
- },
- {
- "plugin": "savedObjectsManagement",
- "path": "src/plugins/saved_objects_management/server/lib/find_relationships.test.ts"
- },
- {
- "plugin": "savedObjectsManagement",
- "path": "src/plugins/saved_objects_management/server/lib/find_relationships.test.ts"
- },
- {
- "plugin": "@kbn/core-saved-objects-api-server",
- "path": "packages/core/saved-objects/core-saved-objects-api-server/src/saved_objects_repository.ts"
- },
- {
- "plugin": "@kbn/core-saved-objects-api-server",
- "path": "packages/core/saved-objects/core-saved-objects-api-server/src/saved_objects_repository.ts"
- },
- {
- "plugin": "@kbn/core-saved-objects-api-server",
- "path": "packages/core/saved-objects/core-saved-objects-api-server/src/saved_objects_repository.ts"
- },
- {
- "plugin": "@kbn/core-saved-objects-api-server",
- "path": "packages/core/saved-objects/core-saved-objects-api-server/src/saved_objects_repository.ts"
- },
- {
- "plugin": "@kbn/core-saved-objects-import-export-server-internal",
- "path": "packages/core/saved-objects/core-saved-objects-import-export-server-internal/src/import/errors.ts"
- },
- {
- "plugin": "@kbn/core-saved-objects-import-export-server-internal",
- "path": "packages/core/saved-objects/core-saved-objects-import-export-server-internal/src/import/errors.ts"
- },
- {
- "plugin": "@kbn/core-saved-objects-import-export-server-internal",
- "path": "packages/core/saved-objects/core-saved-objects-import-export-server-internal/src/import/lib/regenerate_ids.ts"
- },
- {
- "plugin": "@kbn/core-saved-objects-import-export-server-internal",
- "path": "packages/core/saved-objects/core-saved-objects-import-export-server-internal/src/import/lib/regenerate_ids.ts"
- },
- {
- "plugin": "@kbn/core-saved-objects-import-export-server-internal",
- "path": "packages/core/saved-objects/core-saved-objects-import-export-server-internal/src/export/apply_export_transforms.ts"
- },
- {
- "plugin": "@kbn/core-saved-objects-import-export-server-internal",
- "path": "packages/core/saved-objects/core-saved-objects-import-export-server-internal/src/export/apply_export_transforms.ts"
- },
- {
- "plugin": "@kbn/core-saved-objects-import-export-server-internal",
- "path": "packages/core/saved-objects/core-saved-objects-import-export-server-internal/src/export/apply_export_transforms.ts"
- },
- {
- "plugin": "@kbn/core-saved-objects-import-export-server-internal",
- "path": "packages/core/saved-objects/core-saved-objects-import-export-server-internal/src/export/apply_export_transforms.ts"
- },
- {
- "plugin": "@kbn/core-saved-objects-import-export-server-internal",
- "path": "packages/core/saved-objects/core-saved-objects-import-export-server-internal/src/export/apply_export_transforms.ts"
- },
- {
- "plugin": "@kbn/core-saved-objects-import-export-server-internal",
- "path": "packages/core/saved-objects/core-saved-objects-import-export-server-internal/src/export/apply_export_transforms.ts"
- },
- {
- "plugin": "@kbn/core-saved-objects-import-export-server-internal",
- "path": "packages/core/saved-objects/core-saved-objects-import-export-server-internal/src/export/apply_export_transforms.ts"
- },
- {
- "plugin": "@kbn/core-saved-objects-import-export-server-internal",
- "path": "packages/core/saved-objects/core-saved-objects-import-export-server-internal/src/export/apply_export_transforms.ts"
- },
- {
- "plugin": "@kbn/core-saved-objects-import-export-server-internal",
- "path": "packages/core/saved-objects/core-saved-objects-import-export-server-internal/src/export/apply_export_transforms.ts"
- },
- {
- "plugin": "@kbn/core-saved-objects-import-export-server-internal",
- "path": "packages/core/saved-objects/core-saved-objects-import-export-server-internal/src/export/apply_export_transforms.ts"
- },
{
"plugin": "@kbn/core-saved-objects-api-browser",
"path": "packages/core/saved-objects/core-saved-objects-api-browser/src/simple_saved_object.ts"
@@ -1285,6 +1097,22 @@
"plugin": "@kbn/core-saved-objects-api-browser",
"path": "packages/core/saved-objects/core-saved-objects-api-browser/src/simple_saved_object.ts"
},
+ {
+ "plugin": "@kbn/core-saved-objects-api-server",
+ "path": "packages/core/saved-objects/core-saved-objects-api-server/src/saved_objects_repository.ts"
+ },
+ {
+ "plugin": "@kbn/core-saved-objects-api-server",
+ "path": "packages/core/saved-objects/core-saved-objects-api-server/src/saved_objects_repository.ts"
+ },
+ {
+ "plugin": "@kbn/core-saved-objects-api-server",
+ "path": "packages/core/saved-objects/core-saved-objects-api-server/src/saved_objects_repository.ts"
+ },
+ {
+ "plugin": "@kbn/core-saved-objects-api-server",
+ "path": "packages/core/saved-objects/core-saved-objects-api-server/src/saved_objects_repository.ts"
+ },
{
"plugin": "@kbn/core-saved-objects-browser-internal",
"path": "packages/core/saved-objects/core-saved-objects-browser-internal/src/simple_saved_object.ts"
@@ -1442,58 +1270,230 @@
"path": "packages/core/saved-objects/core-saved-objects-browser-mocks/src/simple_saved_object.mock.ts"
},
{
- "plugin": "@kbn/core-saved-objects-browser-internal",
- "path": "packages/core/saved-objects/core-saved-objects-browser-internal/src/simple_saved_object.test.ts"
+ "plugin": "@kbn/core-saved-objects-import-export-server-internal",
+ "path": "packages/core/saved-objects/core-saved-objects-import-export-server-internal/src/import/errors.ts"
},
{
- "plugin": "@kbn/core-saved-objects-browser-internal",
- "path": "packages/core/saved-objects/core-saved-objects-browser-internal/src/simple_saved_object.test.ts"
+ "plugin": "@kbn/core-saved-objects-import-export-server-internal",
+ "path": "packages/core/saved-objects/core-saved-objects-import-export-server-internal/src/import/errors.ts"
},
{
- "plugin": "@kbn/core-saved-objects-browser-internal",
- "path": "packages/core/saved-objects/core-saved-objects-browser-internal/src/simple_saved_object.test.ts"
+ "plugin": "@kbn/core-saved-objects-import-export-server-internal",
+ "path": "packages/core/saved-objects/core-saved-objects-import-export-server-internal/src/import/lib/regenerate_ids.ts"
},
{
- "plugin": "@kbn/core-saved-objects-browser-internal",
- "path": "packages/core/saved-objects/core-saved-objects-browser-internal/src/simple_saved_object.test.ts"
+ "plugin": "@kbn/core-saved-objects-import-export-server-internal",
+ "path": "packages/core/saved-objects/core-saved-objects-import-export-server-internal/src/import/lib/regenerate_ids.ts"
},
{
- "plugin": "@kbn/core-saved-objects-browser-internal",
- "path": "packages/core/saved-objects/core-saved-objects-browser-internal/src/simple_saved_object.test.ts"
+ "plugin": "@kbn/core-saved-objects-import-export-server-internal",
+ "path": "packages/core/saved-objects/core-saved-objects-import-export-server-internal/src/export/apply_export_transforms.ts"
},
{
- "plugin": "@kbn/core-saved-objects-browser-internal",
- "path": "packages/core/saved-objects/core-saved-objects-browser-internal/src/simple_saved_object.test.ts"
+ "plugin": "@kbn/core-saved-objects-import-export-server-internal",
+ "path": "packages/core/saved-objects/core-saved-objects-import-export-server-internal/src/export/apply_export_transforms.ts"
},
{
- "plugin": "@kbn/core-saved-objects-browser-internal",
- "path": "packages/core/saved-objects/core-saved-objects-browser-internal/src/simple_saved_object.test.ts"
+ "plugin": "@kbn/core-saved-objects-import-export-server-internal",
+ "path": "packages/core/saved-objects/core-saved-objects-import-export-server-internal/src/export/apply_export_transforms.ts"
},
{
- "plugin": "@kbn/core-saved-objects-browser-internal",
- "path": "packages/core/saved-objects/core-saved-objects-browser-internal/src/simple_saved_object.test.ts"
+ "plugin": "@kbn/core-saved-objects-import-export-server-internal",
+ "path": "packages/core/saved-objects/core-saved-objects-import-export-server-internal/src/export/apply_export_transforms.ts"
},
{
- "plugin": "@kbn/core-ui-settings-server-internal",
- "path": "packages/core/ui-settings/core-ui-settings-server-internal/src/saved_objects/transforms.test.ts"
+ "plugin": "@kbn/core-saved-objects-import-export-server-internal",
+ "path": "packages/core/saved-objects/core-saved-objects-import-export-server-internal/src/export/apply_export_transforms.ts"
},
{
- "plugin": "@kbn/core-ui-settings-server-internal",
- "path": "packages/core/ui-settings/core-ui-settings-server-internal/src/saved_objects/transforms.test.ts"
+ "plugin": "@kbn/core-saved-objects-import-export-server-internal",
+ "path": "packages/core/saved-objects/core-saved-objects-import-export-server-internal/src/export/apply_export_transforms.ts"
},
{
- "plugin": "@kbn/core-ui-settings-server-internal",
- "path": "packages/core/ui-settings/core-ui-settings-server-internal/src/saved_objects/transforms.test.ts"
- }
- ],
- "initialIsOpen": false
- },
- {
- "parentPluginId": "@kbn/core-saved-objects-common",
- "id": "def-common.SavedObjectAttribute",
- "type": "Type",
- "tags": [
- "deprecated"
+ "plugin": "@kbn/core-saved-objects-import-export-server-internal",
+ "path": "packages/core/saved-objects/core-saved-objects-import-export-server-internal/src/export/apply_export_transforms.ts"
+ },
+ {
+ "plugin": "@kbn/core-saved-objects-import-export-server-internal",
+ "path": "packages/core/saved-objects/core-saved-objects-import-export-server-internal/src/export/apply_export_transforms.ts"
+ },
+ {
+ "plugin": "@kbn/core-saved-objects-import-export-server-internal",
+ "path": "packages/core/saved-objects/core-saved-objects-import-export-server-internal/src/export/apply_export_transforms.ts"
+ },
+ {
+ "plugin": "@kbn/core-saved-objects-import-export-server-internal",
+ "path": "packages/core/saved-objects/core-saved-objects-import-export-server-internal/src/export/apply_export_transforms.ts"
+ },
+ {
+ "plugin": "@kbn/core",
+ "path": "src/core/types/index.ts"
+ },
+ {
+ "plugin": "savedObjectsTaggingOss",
+ "path": "src/plugins/saved_objects_tagging_oss/public/api.ts"
+ },
+ {
+ "plugin": "savedObjectsTaggingOss",
+ "path": "src/plugins/saved_objects_tagging_oss/public/api.ts"
+ },
+ {
+ "plugin": "savedObjectsTaggingOss",
+ "path": "src/plugins/saved_objects_tagging_oss/public/api.ts"
+ },
+ {
+ "plugin": "savedObjectsTagging",
+ "path": "x-pack/plugins/saved_objects_tagging/common/types.ts"
+ },
+ {
+ "plugin": "savedObjectsTagging",
+ "path": "x-pack/plugins/saved_objects_tagging/common/types.ts"
+ },
+ {
+ "plugin": "savedObjectsTagging",
+ "path": "x-pack/plugins/saved_objects_tagging/public/utils.ts"
+ },
+ {
+ "plugin": "savedObjectsTagging",
+ "path": "x-pack/plugins/saved_objects_tagging/public/utils.ts"
+ },
+ {
+ "plugin": "lists",
+ "path": "x-pack/plugins/lists/server/services/exception_lists/exception_list_client.mock.ts"
+ },
+ {
+ "plugin": "lists",
+ "path": "x-pack/plugins/lists/server/services/exception_lists/exception_list_client.mock.ts"
+ },
+ {
+ "plugin": "lists",
+ "path": "x-pack/plugins/lists/server/services/exception_lists/exception_list_client.mock.ts"
+ },
+ {
+ "plugin": "lists",
+ "path": "x-pack/plugins/lists/server/services/exception_lists/exception_list_client.mock.ts"
+ },
+ {
+ "plugin": "lists",
+ "path": "x-pack/plugins/lists/server/services/exception_lists/exception_list_client.mock.ts"
+ },
+ {
+ "plugin": "securitySolution",
+ "path": "x-pack/plugins/security_solution/server/lib/risk_score/prebuilt_saved_objects/saved_object/host_risk_score_dashboards.ts"
+ },
+ {
+ "plugin": "securitySolution",
+ "path": "x-pack/plugins/security_solution/server/lib/risk_score/prebuilt_saved_objects/saved_object/host_risk_score_dashboards.ts"
+ },
+ {
+ "plugin": "securitySolution",
+ "path": "x-pack/plugins/security_solution/server/lib/risk_score/prebuilt_saved_objects/saved_object/user_risk_score_dashboards.ts"
+ },
+ {
+ "plugin": "securitySolution",
+ "path": "x-pack/plugins/security_solution/server/lib/risk_score/prebuilt_saved_objects/saved_object/user_risk_score_dashboards.ts"
+ },
+ {
+ "plugin": "savedObjectsTagging",
+ "path": "x-pack/plugins/saved_objects_tagging/public/utils.test.ts"
+ },
+ {
+ "plugin": "savedObjectsTagging",
+ "path": "x-pack/plugins/saved_objects_tagging/public/utils.test.ts"
+ },
+ {
+ "plugin": "savedObjectsTagging",
+ "path": "x-pack/plugins/saved_objects_tagging/public/utils.test.ts"
+ },
+ {
+ "plugin": "upgradeAssistant",
+ "path": "x-pack/plugins/upgrade_assistant/common/types.ts"
+ },
+ {
+ "plugin": "upgradeAssistant",
+ "path": "x-pack/plugins/upgrade_assistant/common/types.ts"
+ },
+ {
+ "plugin": "savedObjectsTagging",
+ "path": "x-pack/plugins/saved_objects_tagging/common/test_utils/index.ts"
+ },
+ {
+ "plugin": "savedObjectsTagging",
+ "path": "x-pack/plugins/saved_objects_tagging/common/test_utils/index.ts"
+ },
+ {
+ "plugin": "savedObjectsTagging",
+ "path": "x-pack/plugins/saved_objects_tagging/common/test_utils/index.ts"
+ },
+ {
+ "plugin": "savedObjectsManagement",
+ "path": "src/plugins/saved_objects_management/server/lib/find_relationships.test.ts"
+ },
+ {
+ "plugin": "savedObjectsManagement",
+ "path": "src/plugins/saved_objects_management/server/lib/find_relationships.test.ts"
+ },
+ {
+ "plugin": "savedObjectsManagement",
+ "path": "src/plugins/saved_objects_management/server/lib/find_relationships.test.ts"
+ },
+ {
+ "plugin": "savedObjectsManagement",
+ "path": "src/plugins/saved_objects_management/server/lib/find_relationships.test.ts"
+ },
+ {
+ "plugin": "@kbn/core-saved-objects-browser-internal",
+ "path": "packages/core/saved-objects/core-saved-objects-browser-internal/src/simple_saved_object.test.ts"
+ },
+ {
+ "plugin": "@kbn/core-saved-objects-browser-internal",
+ "path": "packages/core/saved-objects/core-saved-objects-browser-internal/src/simple_saved_object.test.ts"
+ },
+ {
+ "plugin": "@kbn/core-saved-objects-browser-internal",
+ "path": "packages/core/saved-objects/core-saved-objects-browser-internal/src/simple_saved_object.test.ts"
+ },
+ {
+ "plugin": "@kbn/core-saved-objects-browser-internal",
+ "path": "packages/core/saved-objects/core-saved-objects-browser-internal/src/simple_saved_object.test.ts"
+ },
+ {
+ "plugin": "@kbn/core-saved-objects-browser-internal",
+ "path": "packages/core/saved-objects/core-saved-objects-browser-internal/src/simple_saved_object.test.ts"
+ },
+ {
+ "plugin": "@kbn/core-saved-objects-browser-internal",
+ "path": "packages/core/saved-objects/core-saved-objects-browser-internal/src/simple_saved_object.test.ts"
+ },
+ {
+ "plugin": "@kbn/core-saved-objects-browser-internal",
+ "path": "packages/core/saved-objects/core-saved-objects-browser-internal/src/simple_saved_object.test.ts"
+ },
+ {
+ "plugin": "@kbn/core-saved-objects-browser-internal",
+ "path": "packages/core/saved-objects/core-saved-objects-browser-internal/src/simple_saved_object.test.ts"
+ },
+ {
+ "plugin": "@kbn/core-ui-settings-server-internal",
+ "path": "packages/core/ui-settings/core-ui-settings-server-internal/src/saved_objects/transforms.test.ts"
+ },
+ {
+ "plugin": "@kbn/core-ui-settings-server-internal",
+ "path": "packages/core/ui-settings/core-ui-settings-server-internal/src/saved_objects/transforms.test.ts"
+ },
+ {
+ "plugin": "@kbn/core-ui-settings-server-internal",
+ "path": "packages/core/ui-settings/core-ui-settings-server-internal/src/saved_objects/transforms.test.ts"
+ }
+ ],
+ "initialIsOpen": false
+ },
+ {
+ "parentPluginId": "@kbn/core-saved-objects-common",
+ "id": "def-common.SavedObjectAttribute",
+ "type": "Type",
+ "tags": [
+ "deprecated"
],
"label": "SavedObjectAttribute",
"description": [],
@@ -1519,10 +1519,6 @@
"deprecated": true,
"trackAdoption": false,
"references": [
- {
- "plugin": "@kbn/core",
- "path": "src/core/types/index.ts"
- },
{
"plugin": "@kbn/core",
"path": "src/core/public/index.ts"
@@ -1558,6 +1554,10 @@
{
"plugin": "advancedSettings",
"path": "src/plugins/advanced_settings/public/management_app/lib/to_editable_config.ts"
+ },
+ {
+ "plugin": "@kbn/core",
+ "path": "src/core/types/index.ts"
}
],
"initialIsOpen": false
@@ -1575,18 +1575,6 @@
"deprecated": true,
"trackAdoption": false,
"references": [
- {
- "plugin": "@kbn/core",
- "path": "src/core/types/index.ts"
- },
- {
- "plugin": "ml",
- "path": "x-pack/plugins/ml/common/types/modules.ts"
- },
- {
- "plugin": "ml",
- "path": "x-pack/plugins/ml/common/types/modules.ts"
- },
{
"plugin": "@kbn/core",
"path": "src/core/public/index.ts"
@@ -1754,6 +1742,18 @@
{
"plugin": "savedObjects",
"path": "src/plugins/saved_objects/public/saved_object/helpers/save_with_confirmation.test.ts"
+ },
+ {
+ "plugin": "@kbn/core",
+ "path": "src/core/types/index.ts"
+ },
+ {
+ "plugin": "ml",
+ "path": "x-pack/plugins/ml/common/types/modules.ts"
+ },
+ {
+ "plugin": "ml",
+ "path": "x-pack/plugins/ml/common/types/modules.ts"
}
],
"initialIsOpen": false
@@ -1784,11 +1784,11 @@
"references": [
{
"plugin": "@kbn/core",
- "path": "src/core/types/index.ts"
+ "path": "src/core/public/index.ts"
},
{
"plugin": "@kbn/core",
- "path": "src/core/public/index.ts"
+ "path": "src/core/types/index.ts"
}
],
"initialIsOpen": false
@@ -1807,836 +1807,836 @@
"trackAdoption": false,
"references": [
{
- "plugin": "@kbn/core",
- "path": "src/core/types/index.ts"
+ "plugin": "@kbn/core-saved-objects-api-browser",
+ "path": "packages/core/saved-objects/core-saved-objects-api-browser/src/apis/create.ts"
},
{
- "plugin": "kibanaUtils",
- "path": "src/plugins/kibana_utils/common/persistable_state/types.ts"
+ "plugin": "@kbn/core-saved-objects-api-browser",
+ "path": "packages/core/saved-objects/core-saved-objects-api-browser/src/apis/create.ts"
},
{
- "plugin": "kibanaUtils",
- "path": "src/plugins/kibana_utils/common/persistable_state/types.ts"
+ "plugin": "@kbn/core-saved-objects-api-browser",
+ "path": "packages/core/saved-objects/core-saved-objects-api-browser/src/apis/bulk_update.ts"
},
{
- "plugin": "kibanaUtils",
- "path": "src/plugins/kibana_utils/common/persistable_state/types.ts"
+ "plugin": "@kbn/core-saved-objects-api-browser",
+ "path": "packages/core/saved-objects/core-saved-objects-api-browser/src/apis/bulk_update.ts"
},
{
- "plugin": "kibanaUtils",
- "path": "src/plugins/kibana_utils/common/persistable_state/types.ts"
+ "plugin": "@kbn/core-saved-objects-api-browser",
+ "path": "packages/core/saved-objects/core-saved-objects-api-browser/src/apis/update.ts"
},
{
- "plugin": "kibanaUtils",
- "path": "src/plugins/kibana_utils/common/persistable_state/types.ts"
+ "plugin": "@kbn/core-saved-objects-api-browser",
+ "path": "packages/core/saved-objects/core-saved-objects-api-browser/src/apis/update.ts"
},
{
- "plugin": "expressions",
- "path": "src/plugins/expressions/common/expression_functions/expression_function.ts"
+ "plugin": "@kbn/core",
+ "path": "src/core/public/index.ts"
},
{
- "plugin": "expressions",
- "path": "src/plugins/expressions/common/expression_functions/expression_function.ts"
+ "plugin": "savedObjects",
+ "path": "src/plugins/saved_objects/public/types.ts"
},
{
- "plugin": "expressions",
- "path": "src/plugins/expressions/common/expression_functions/expression_function.ts"
+ "plugin": "savedObjects",
+ "path": "src/plugins/saved_objects/public/types.ts"
},
{
- "plugin": "expressions",
- "path": "src/plugins/expressions/common/service/expressions_services.ts"
+ "plugin": "savedObjects",
+ "path": "src/plugins/saved_objects/public/types.ts"
},
{
- "plugin": "expressions",
- "path": "src/plugins/expressions/common/service/expressions_services.ts"
+ "plugin": "savedObjects",
+ "path": "src/plugins/saved_objects/public/types.ts"
},
{
- "plugin": "expressions",
- "path": "src/plugins/expressions/common/service/expressions_services.ts"
+ "plugin": "savedObjects",
+ "path": "src/plugins/saved_objects/public/types.ts"
},
{
- "plugin": "expressions",
- "path": "src/plugins/expressions/common/service/expressions_services.ts"
+ "plugin": "savedObjects",
+ "path": "src/plugins/saved_objects/public/types.ts"
},
{
- "plugin": "expressions",
- "path": "src/plugins/expressions/common/executor/executor.ts"
+ "plugin": "savedObjectsManagement",
+ "path": "src/plugins/saved_objects_management/public/services/types/record.ts"
},
{
- "plugin": "expressions",
- "path": "src/plugins/expressions/common/executor/executor.ts"
+ "plugin": "savedObjectsManagement",
+ "path": "src/plugins/saved_objects_management/public/services/types/record.ts"
},
{
- "plugin": "expressions",
- "path": "src/plugins/expressions/common/executor/executor.ts"
+ "plugin": "visualizations",
+ "path": "src/plugins/visualizations/public/utils/saved_visualization_references/saved_visualization_references.ts"
},
{
- "plugin": "data",
- "path": "src/plugins/data/common/query/filters/persistable_state.ts"
+ "plugin": "visualizations",
+ "path": "src/plugins/visualizations/public/utils/saved_visualization_references/saved_visualization_references.ts"
},
{
- "plugin": "data",
- "path": "src/plugins/data/common/query/filters/persistable_state.ts"
+ "plugin": "visualizations",
+ "path": "src/plugins/visualizations/public/utils/saved_visualization_references/saved_visualization_references.ts"
},
{
- "plugin": "data",
- "path": "src/plugins/data/common/query/filters/persistable_state.ts"
+ "plugin": "visualizations",
+ "path": "src/plugins/visualizations/public/utils/saved_visualize_utils.ts"
},
{
- "plugin": "data",
- "path": "src/plugins/data/common/query/persistable_state.ts"
+ "plugin": "visualizations",
+ "path": "src/plugins/visualizations/public/utils/saved_visualize_utils.ts"
},
{
- "plugin": "data",
- "path": "src/plugins/data/common/query/persistable_state.ts"
+ "plugin": "visualizations",
+ "path": "src/plugins/visualizations/public/utils/saved_visualize_utils.ts"
},
{
- "plugin": "data",
- "path": "src/plugins/data/common/query/persistable_state.ts"
+ "plugin": "visualizations",
+ "path": "src/plugins/visualizations/public/utils/saved_visualize_utils.ts"
},
{
- "plugin": "savedObjectsTaggingOss",
- "path": "src/plugins/saved_objects_tagging_oss/public/api.ts"
+ "plugin": "visualizations",
+ "path": "src/plugins/visualizations/public/utils/saved_visualize_utils.ts"
},
{
- "plugin": "savedObjectsTaggingOss",
- "path": "src/plugins/saved_objects_tagging_oss/public/api.ts"
+ "plugin": "visualizations",
+ "path": "src/plugins/visualizations/public/utils/saved_visualize_utils.ts"
},
{
- "plugin": "savedObjectsTaggingOss",
- "path": "src/plugins/saved_objects_tagging_oss/public/api.ts"
+ "plugin": "visualizations",
+ "path": "src/plugins/visualizations/public/embeddable/visualize_embeddable_factory.tsx"
},
{
- "plugin": "savedObjectsTaggingOss",
- "path": "src/plugins/saved_objects_tagging_oss/public/api.ts"
+ "plugin": "visualizations",
+ "path": "src/plugins/visualizations/public/embeddable/visualize_embeddable_factory.tsx"
},
{
- "plugin": "embeddable",
- "path": "src/plugins/embeddable/common/lib/migrate_base_input.ts"
+ "plugin": "visualizations",
+ "path": "src/plugins/visualizations/public/visualize_app/components/visualize_listing.tsx"
},
{
- "plugin": "embeddable",
- "path": "src/plugins/embeddable/common/lib/migrate_base_input.ts"
+ "plugin": "visualizations",
+ "path": "src/plugins/visualizations/public/visualize_app/components/visualize_listing.tsx"
},
{
- "plugin": "embeddable",
- "path": "src/plugins/embeddable/common/lib/migrate_base_input.ts"
+ "plugin": "visualizations",
+ "path": "src/plugins/visualizations/public/visualize_app/components/visualize_listing.tsx"
},
{
- "plugin": "embeddable",
- "path": "src/plugins/embeddable/common/lib/inject.ts"
+ "plugin": "savedObjectsTagging",
+ "path": "x-pack/plugins/saved_objects_tagging/public/ui_api/get_table_column_definition.tsx"
},
{
- "plugin": "embeddable",
- "path": "src/plugins/embeddable/common/lib/inject.ts"
+ "plugin": "savedObjectsTagging",
+ "path": "x-pack/plugins/saved_objects_tagging/public/ui_api/get_table_column_definition.tsx"
},
{
- "plugin": "visualizations",
- "path": "src/plugins/visualizations/public/utils/saved_visualization_references/controls_references.ts"
+ "plugin": "eventAnnotation",
+ "path": "src/plugins/event_annotation/public/event_annotation_service/service.tsx"
},
{
- "plugin": "visualizations",
- "path": "src/plugins/visualizations/public/utils/saved_visualization_references/controls_references.ts"
+ "plugin": "eventAnnotation",
+ "path": "src/plugins/event_annotation/public/event_annotation_service/service.tsx"
},
{
- "plugin": "visualizations",
- "path": "src/plugins/visualizations/public/utils/saved_visualization_references/controls_references.ts"
+ "plugin": "eventAnnotation",
+ "path": "src/plugins/event_annotation/public/event_annotation_service/service.tsx"
},
{
- "plugin": "visualizations",
- "path": "src/plugins/visualizations/public/utils/saved_visualization_references/timeseries_references.ts"
+ "plugin": "lens",
+ "path": "x-pack/plugins/lens/public/persistence/saved_object_store.ts"
},
{
- "plugin": "visualizations",
- "path": "src/plugins/visualizations/public/utils/saved_visualization_references/timeseries_references.ts"
+ "plugin": "lens",
+ "path": "x-pack/plugins/lens/public/persistence/saved_object_store.ts"
},
{
- "plugin": "visualizations",
- "path": "src/plugins/visualizations/public/utils/saved_visualization_references/timeseries_references.ts"
+ "plugin": "lens",
+ "path": "x-pack/plugins/lens/public/persistence/saved_object_store.ts"
},
{
- "plugin": "controls",
- "path": "src/plugins/controls/common/options_list/options_list_persistable_state.ts"
+ "plugin": "lens",
+ "path": "x-pack/plugins/lens/public/state_management/selectors.ts"
},
{
- "plugin": "controls",
- "path": "src/plugins/controls/common/options_list/options_list_persistable_state.ts"
+ "plugin": "lens",
+ "path": "x-pack/plugins/lens/public/state_management/selectors.ts"
},
{
- "plugin": "controls",
- "path": "src/plugins/controls/common/options_list/options_list_persistable_state.ts"
+ "plugin": "lens",
+ "path": "x-pack/plugins/lens/public/state_management/selectors.ts"
},
{
- "plugin": "controls",
- "path": "src/plugins/controls/common/range_slider/range_slider_persistable_state.ts"
+ "plugin": "lens",
+ "path": "x-pack/plugins/lens/public/editor_frame_service/editor_frame/state_helpers.ts"
},
{
- "plugin": "controls",
- "path": "src/plugins/controls/common/range_slider/range_slider_persistable_state.ts"
+ "plugin": "lens",
+ "path": "x-pack/plugins/lens/public/editor_frame_service/editor_frame/state_helpers.ts"
},
{
- "plugin": "controls",
- "path": "src/plugins/controls/common/range_slider/range_slider_persistable_state.ts"
+ "plugin": "lens",
+ "path": "x-pack/plugins/lens/public/editor_frame_service/editor_frame/state_helpers.ts"
},
{
- "plugin": "controls",
- "path": "src/plugins/controls/common/time_slider/time_slider_persistable_state.ts"
+ "plugin": "lens",
+ "path": "x-pack/plugins/lens/public/editor_frame_service/editor_frame/state_helpers.ts"
},
{
- "plugin": "controls",
- "path": "src/plugins/controls/common/time_slider/time_slider_persistable_state.ts"
+ "plugin": "lens",
+ "path": "x-pack/plugins/lens/public/editor_frame_service/editor_frame/state_helpers.ts"
},
{
- "plugin": "controls",
- "path": "src/plugins/controls/common/time_slider/time_slider_persistable_state.ts"
+ "plugin": "lens",
+ "path": "x-pack/plugins/lens/public/editor_frame_service/editor_frame/state_helpers.ts"
},
{
- "plugin": "controls",
- "path": "src/plugins/controls/common/control_group/control_group_persistable_state.ts"
+ "plugin": "lens",
+ "path": "x-pack/plugins/lens/public/editor_frame_service/editor_frame/state_helpers.ts"
},
{
- "plugin": "controls",
- "path": "src/plugins/controls/common/control_group/control_group_persistable_state.ts"
+ "plugin": "lens",
+ "path": "x-pack/plugins/lens/public/utils.ts"
},
{
- "plugin": "controls",
- "path": "src/plugins/controls/common/control_group/control_group_persistable_state.ts"
+ "plugin": "lens",
+ "path": "x-pack/plugins/lens/public/utils.ts"
},
{
- "plugin": "savedObjectsTagging",
- "path": "x-pack/plugins/saved_objects_tagging/common/references.ts"
+ "plugin": "lens",
+ "path": "x-pack/plugins/lens/public/utils.ts"
},
{
- "plugin": "savedObjectsTagging",
- "path": "x-pack/plugins/saved_objects_tagging/common/references.ts"
+ "plugin": "lens",
+ "path": "x-pack/plugins/lens/public/utils.ts"
},
{
- "plugin": "savedObjectsTagging",
- "path": "x-pack/plugins/saved_objects_tagging/common/references.ts"
+ "plugin": "lens",
+ "path": "x-pack/plugins/lens/public/datasources/form_based/loader.ts"
},
{
- "plugin": "savedObjectsTagging",
- "path": "x-pack/plugins/saved_objects_tagging/common/references.ts"
+ "plugin": "lens",
+ "path": "x-pack/plugins/lens/public/datasources/form_based/loader.ts"
},
{
- "plugin": "savedObjectsTagging",
- "path": "x-pack/plugins/saved_objects_tagging/common/references.ts"
+ "plugin": "lens",
+ "path": "x-pack/plugins/lens/public/datasources/form_based/loader.ts"
},
{
- "plugin": "savedObjectsTagging",
- "path": "x-pack/plugins/saved_objects_tagging/common/references.ts"
+ "plugin": "lens",
+ "path": "x-pack/plugins/lens/public/datasources/form_based/loader.ts"
},
{
- "plugin": "savedObjectsTagging",
- "path": "x-pack/plugins/saved_objects_tagging/public/utils.ts"
+ "plugin": "lens",
+ "path": "x-pack/plugins/lens/public/datasources/form_based/loader.ts"
},
{
- "plugin": "savedObjectsTagging",
- "path": "x-pack/plugins/saved_objects_tagging/public/utils.ts"
+ "plugin": "lens",
+ "path": "x-pack/plugins/lens/public/datasources/form_based/form_based.tsx"
},
{
- "plugin": "savedObjectsTagging",
- "path": "x-pack/plugins/saved_objects_tagging/public/utils.ts"
+ "plugin": "lens",
+ "path": "x-pack/plugins/lens/public/datasources/form_based/form_based.tsx"
},
{
- "plugin": "savedObjectsTagging",
- "path": "x-pack/plugins/saved_objects_tagging/public/utils.ts"
+ "plugin": "lens",
+ "path": "x-pack/plugins/lens/public/datasources/form_based/form_based.tsx"
},
{
- "plugin": "savedObjectsTagging",
- "path": "x-pack/plugins/saved_objects_tagging/public/components/connected/tag_list.tsx"
+ "plugin": "lens",
+ "path": "x-pack/plugins/lens/public/datasources/form_based/form_based.tsx"
},
{
- "plugin": "savedObjectsTagging",
- "path": "x-pack/plugins/saved_objects_tagging/public/components/connected/tag_list.tsx"
+ "plugin": "lens",
+ "path": "x-pack/plugins/lens/public/visualizations/xy/state_helpers.ts"
},
{
- "plugin": "uiActionsEnhanced",
- "path": "src/plugins/ui_actions_enhanced/public/dynamic_actions/action_factory.ts"
+ "plugin": "lens",
+ "path": "x-pack/plugins/lens/public/visualizations/xy/state_helpers.ts"
},
{
- "plugin": "uiActionsEnhanced",
- "path": "src/plugins/ui_actions_enhanced/public/dynamic_actions/action_factory.ts"
+ "plugin": "lens",
+ "path": "x-pack/plugins/lens/public/visualizations/xy/state_helpers.ts"
},
{
- "plugin": "uiActionsEnhanced",
- "path": "src/plugins/ui_actions_enhanced/public/services/ui_actions_service_enhancements.ts"
+ "plugin": "lens",
+ "path": "x-pack/plugins/lens/public/visualizations/xy/visualization.tsx"
},
{
- "plugin": "uiActionsEnhanced",
- "path": "src/plugins/ui_actions_enhanced/public/services/ui_actions_service_enhancements.ts"
+ "plugin": "lens",
+ "path": "x-pack/plugins/lens/public/visualizations/xy/visualization.tsx"
},
{
- "plugin": "uiActionsEnhanced",
- "path": "src/plugins/ui_actions_enhanced/public/services/ui_actions_service_enhancements.ts"
+ "plugin": "lens",
+ "path": "x-pack/plugins/lens/public/datasources/text_based/text_based_languages.tsx"
},
{
- "plugin": "uiActionsEnhanced",
- "path": "src/plugins/ui_actions_enhanced/public/dynamic_actions/dynamic_action_enhancement.ts"
+ "plugin": "lens",
+ "path": "x-pack/plugins/lens/public/datasources/text_based/text_based_languages.tsx"
},
{
- "plugin": "uiActionsEnhanced",
- "path": "src/plugins/ui_actions_enhanced/public/dynamic_actions/dynamic_action_enhancement.ts"
+ "plugin": "lens",
+ "path": "x-pack/plugins/lens/public/datasources/text_based/text_based_languages.tsx"
},
{
"plugin": "lens",
- "path": "x-pack/plugins/lens/common/embeddable_factory/index.ts"
+ "path": "x-pack/plugins/lens/public/datasources/text_based/text_based_languages.tsx"
},
{
"plugin": "lens",
- "path": "x-pack/plugins/lens/common/embeddable_factory/index.ts"
+ "path": "x-pack/plugins/lens/public/app_plugin/save_modal_container.tsx"
},
{
"plugin": "lens",
- "path": "x-pack/plugins/lens/common/embeddable_factory/index.ts"
+ "path": "x-pack/plugins/lens/public/app_plugin/save_modal_container.tsx"
},
{
"plugin": "lens",
- "path": "x-pack/plugins/lens/common/embeddable_factory/index.ts"
+ "path": "x-pack/plugins/lens/public/types.ts"
},
{
"plugin": "lens",
- "path": "x-pack/plugins/lens/common/embeddable_factory/index.ts"
+ "path": "x-pack/plugins/lens/public/types.ts"
},
{
- "plugin": "maps",
- "path": "x-pack/plugins/maps/common/migrations/references.ts"
+ "plugin": "lens",
+ "path": "x-pack/plugins/lens/public/types.ts"
},
{
- "plugin": "maps",
- "path": "x-pack/plugins/maps/common/migrations/references.ts"
+ "plugin": "lens",
+ "path": "x-pack/plugins/lens/public/types.ts"
},
{
- "plugin": "maps",
- "path": "x-pack/plugins/maps/common/migrations/references.ts"
+ "plugin": "lens",
+ "path": "x-pack/plugins/lens/public/types.ts"
},
{
- "plugin": "maps",
- "path": "x-pack/plugins/maps/common/migrations/references.ts"
+ "plugin": "lens",
+ "path": "x-pack/plugins/lens/public/types.ts"
},
{
- "plugin": "maps",
- "path": "x-pack/plugins/maps/common/migrations/references.ts"
+ "plugin": "lens",
+ "path": "x-pack/plugins/lens/public/types.ts"
},
{
- "plugin": "maps",
- "path": "x-pack/plugins/maps/public/map_attribute_service.ts"
+ "plugin": "lens",
+ "path": "x-pack/plugins/lens/public/types.ts"
},
{
- "plugin": "maps",
- "path": "x-pack/plugins/maps/public/map_attribute_service.ts"
+ "plugin": "lens",
+ "path": "x-pack/plugins/lens/public/types.ts"
},
{
- "plugin": "canvas",
- "path": "x-pack/plugins/canvas/canvas_plugin_src/functions/external/saved_lens.ts"
+ "plugin": "lens",
+ "path": "x-pack/plugins/lens/public/types.ts"
},
{
- "plugin": "canvas",
- "path": "x-pack/plugins/canvas/canvas_plugin_src/functions/external/saved_lens.ts"
+ "plugin": "lens",
+ "path": "x-pack/plugins/lens/public/types.ts"
},
{
- "plugin": "canvas",
- "path": "x-pack/plugins/canvas/canvas_plugin_src/functions/external/saved_map.ts"
+ "plugin": "graph",
+ "path": "x-pack/plugins/graph/public/services/persistence/saved_workspace_references.ts"
},
{
- "plugin": "canvas",
- "path": "x-pack/plugins/canvas/canvas_plugin_src/functions/external/saved_map.ts"
+ "plugin": "graph",
+ "path": "x-pack/plugins/graph/public/services/persistence/saved_workspace_references.ts"
},
{
- "plugin": "canvas",
- "path": "x-pack/plugins/canvas/canvas_plugin_src/functions/external/saved_search.ts"
+ "plugin": "graph",
+ "path": "x-pack/plugins/graph/public/services/persistence/saved_workspace_references.ts"
},
{
- "plugin": "canvas",
- "path": "x-pack/plugins/canvas/canvas_plugin_src/functions/external/saved_search.ts"
+ "plugin": "graph",
+ "path": "x-pack/plugins/graph/public/types/persistence.ts"
},
{
- "plugin": "canvas",
- "path": "x-pack/plugins/canvas/canvas_plugin_src/functions/external/saved_visualization.ts"
+ "plugin": "graph",
+ "path": "x-pack/plugins/graph/public/types/persistence.ts"
},
{
- "plugin": "canvas",
- "path": "x-pack/plugins/canvas/canvas_plugin_src/functions/external/saved_visualization.ts"
+ "plugin": "lens",
+ "path": "x-pack/plugins/lens/public/datasources/form_based/form_based.test.ts"
},
{
- "plugin": "canvas",
- "path": "x-pack/plugins/canvas/canvas_plugin_src/functions/external/embeddable.ts"
+ "plugin": "lens",
+ "path": "x-pack/plugins/lens/public/datasources/form_based/form_based.test.ts"
},
{
- "plugin": "canvas",
- "path": "x-pack/plugins/canvas/canvas_plugin_src/functions/external/embeddable.ts"
+ "plugin": "lens",
+ "path": "x-pack/plugins/lens/public/datasources/form_based/form_based.test.ts"
},
{
- "plugin": "dashboardEnhanced",
- "path": "x-pack/plugins/dashboard_enhanced/common/drilldowns/dashboard_drilldown/dashboard_drilldown_persistable_state.ts"
+ "plugin": "dashboard",
+ "path": "src/plugins/dashboard/common/bwc/types.ts"
},
{
- "plugin": "dashboardEnhanced",
- "path": "x-pack/plugins/dashboard_enhanced/common/drilldowns/dashboard_drilldown/dashboard_drilldown_persistable_state.ts"
+ "plugin": "dashboard",
+ "path": "src/plugins/dashboard/common/bwc/types.ts"
},
{
- "plugin": "dashboardEnhanced",
- "path": "x-pack/plugins/dashboard_enhanced/common/drilldowns/dashboard_drilldown/dashboard_drilldown_persistable_state.ts"
+ "plugin": "savedObjectsTaggingOss",
+ "path": "src/plugins/saved_objects_tagging_oss/public/decorator/extract_tag_references.test.ts"
},
{
- "plugin": "uiActionsEnhanced",
- "path": "src/plugins/ui_actions_enhanced/server/dynamic_action_enhancement.ts"
+ "plugin": "savedObjectsTaggingOss",
+ "path": "src/plugins/saved_objects_tagging_oss/public/decorator/extract_tag_references.test.ts"
},
{
- "plugin": "uiActionsEnhanced",
- "path": "src/plugins/ui_actions_enhanced/server/dynamic_action_enhancement.ts"
+ "plugin": "savedObjectsTaggingOss",
+ "path": "src/plugins/saved_objects_tagging_oss/public/decorator/extract_tag_references.test.ts"
},
{
- "plugin": "uiActionsEnhanced",
- "path": "src/plugins/ui_actions_enhanced/server/dynamic_action_enhancement.ts"
+ "plugin": "savedObjectsTaggingOss",
+ "path": "src/plugins/saved_objects_tagging_oss/public/decorator/extract_tag_references.test.ts"
},
{
- "plugin": "savedObjectsTagging",
- "path": "x-pack/plugins/saved_objects_tagging/common/references.test.ts"
+ "plugin": "savedObjectsTaggingOss",
+ "path": "src/plugins/saved_objects_tagging_oss/public/decorator/extract_tag_references.test.ts"
},
{
- "plugin": "savedObjectsTagging",
- "path": "x-pack/plugins/saved_objects_tagging/common/references.test.ts"
+ "plugin": "savedObjectsTaggingOss",
+ "path": "src/plugins/saved_objects_tagging_oss/public/decorator/extract_tag_references.test.ts"
},
{
- "plugin": "savedObjectsTagging",
- "path": "x-pack/plugins/saved_objects_tagging/public/utils.test.ts"
+ "plugin": "savedObjectsTaggingOss",
+ "path": "src/plugins/saved_objects_tagging_oss/public/decorator/inject_tag_references.test.ts"
},
{
- "plugin": "savedObjectsTagging",
- "path": "x-pack/plugins/saved_objects_tagging/public/utils.test.ts"
+ "plugin": "savedObjectsTaggingOss",
+ "path": "src/plugins/saved_objects_tagging_oss/public/decorator/inject_tag_references.test.ts"
},
{
- "plugin": "savedObjectsTagging",
- "path": "x-pack/plugins/saved_objects_tagging/public/utils.test.ts"
+ "plugin": "@kbn/core",
+ "path": "src/core/types/index.ts"
},
{
- "plugin": "savedObjectsTagging",
- "path": "x-pack/plugins/saved_objects_tagging/common/test_utils/index.ts"
+ "plugin": "kibanaUtils",
+ "path": "src/plugins/kibana_utils/common/persistable_state/types.ts"
},
{
- "plugin": "savedObjectsTagging",
- "path": "x-pack/plugins/saved_objects_tagging/common/test_utils/index.ts"
+ "plugin": "kibanaUtils",
+ "path": "src/plugins/kibana_utils/common/persistable_state/types.ts"
},
{
- "plugin": "globalSearchProviders",
- "path": "x-pack/plugins/global_search_providers/server/providers/saved_objects/map_object_to_result.test.ts"
+ "plugin": "kibanaUtils",
+ "path": "src/plugins/kibana_utils/common/persistable_state/types.ts"
},
{
- "plugin": "globalSearchProviders",
- "path": "x-pack/plugins/global_search_providers/server/providers/saved_objects/map_object_to_result.test.ts"
+ "plugin": "kibanaUtils",
+ "path": "src/plugins/kibana_utils/common/persistable_state/types.ts"
},
{
- "plugin": "expressions",
- "path": "src/plugins/expressions/common/executor/executor.test.ts"
+ "plugin": "kibanaUtils",
+ "path": "src/plugins/kibana_utils/common/persistable_state/types.ts"
},
{
"plugin": "expressions",
- "path": "src/plugins/expressions/common/executor/executor.test.ts"
+ "path": "src/plugins/expressions/common/expression_functions/expression_function.ts"
},
{
"plugin": "expressions",
- "path": "src/plugins/expressions/common/executor/executor.test.ts"
+ "path": "src/plugins/expressions/common/expression_functions/expression_function.ts"
},
{
- "plugin": "@kbn/core-saved-objects-api-browser",
- "path": "packages/core/saved-objects/core-saved-objects-api-browser/src/apis/create.ts"
+ "plugin": "expressions",
+ "path": "src/plugins/expressions/common/expression_functions/expression_function.ts"
},
{
- "plugin": "@kbn/core-saved-objects-api-browser",
- "path": "packages/core/saved-objects/core-saved-objects-api-browser/src/apis/create.ts"
+ "plugin": "expressions",
+ "path": "src/plugins/expressions/common/service/expressions_services.ts"
},
{
- "plugin": "@kbn/core-saved-objects-api-browser",
- "path": "packages/core/saved-objects/core-saved-objects-api-browser/src/apis/bulk_update.ts"
+ "plugin": "expressions",
+ "path": "src/plugins/expressions/common/service/expressions_services.ts"
},
{
- "plugin": "@kbn/core-saved-objects-api-browser",
- "path": "packages/core/saved-objects/core-saved-objects-api-browser/src/apis/bulk_update.ts"
+ "plugin": "expressions",
+ "path": "src/plugins/expressions/common/service/expressions_services.ts"
},
{
- "plugin": "@kbn/core-saved-objects-api-browser",
- "path": "packages/core/saved-objects/core-saved-objects-api-browser/src/apis/update.ts"
+ "plugin": "expressions",
+ "path": "src/plugins/expressions/common/service/expressions_services.ts"
},
{
- "plugin": "@kbn/core-saved-objects-api-browser",
- "path": "packages/core/saved-objects/core-saved-objects-api-browser/src/apis/update.ts"
+ "plugin": "expressions",
+ "path": "src/plugins/expressions/common/executor/executor.ts"
},
{
- "plugin": "@kbn/core",
- "path": "src/core/public/index.ts"
+ "plugin": "expressions",
+ "path": "src/plugins/expressions/common/executor/executor.ts"
},
{
- "plugin": "savedObjects",
- "path": "src/plugins/saved_objects/public/types.ts"
+ "plugin": "expressions",
+ "path": "src/plugins/expressions/common/executor/executor.ts"
},
{
- "plugin": "savedObjects",
- "path": "src/plugins/saved_objects/public/types.ts"
+ "plugin": "data",
+ "path": "src/plugins/data/common/query/filters/persistable_state.ts"
},
{
- "plugin": "savedObjects",
- "path": "src/plugins/saved_objects/public/types.ts"
+ "plugin": "data",
+ "path": "src/plugins/data/common/query/filters/persistable_state.ts"
},
{
- "plugin": "savedObjects",
- "path": "src/plugins/saved_objects/public/types.ts"
+ "plugin": "data",
+ "path": "src/plugins/data/common/query/filters/persistable_state.ts"
},
{
- "plugin": "savedObjects",
- "path": "src/plugins/saved_objects/public/types.ts"
+ "plugin": "data",
+ "path": "src/plugins/data/common/query/persistable_state.ts"
},
{
- "plugin": "savedObjects",
- "path": "src/plugins/saved_objects/public/types.ts"
+ "plugin": "data",
+ "path": "src/plugins/data/common/query/persistable_state.ts"
},
{
- "plugin": "savedObjectsManagement",
- "path": "src/plugins/saved_objects_management/public/services/types/record.ts"
+ "plugin": "data",
+ "path": "src/plugins/data/common/query/persistable_state.ts"
},
{
- "plugin": "savedObjectsManagement",
- "path": "src/plugins/saved_objects_management/public/services/types/record.ts"
+ "plugin": "savedObjectsTaggingOss",
+ "path": "src/plugins/saved_objects_tagging_oss/public/api.ts"
},
{
- "plugin": "visualizations",
- "path": "src/plugins/visualizations/public/utils/saved_visualization_references/saved_visualization_references.ts"
+ "plugin": "savedObjectsTaggingOss",
+ "path": "src/plugins/saved_objects_tagging_oss/public/api.ts"
},
{
- "plugin": "visualizations",
- "path": "src/plugins/visualizations/public/utils/saved_visualization_references/saved_visualization_references.ts"
+ "plugin": "savedObjectsTaggingOss",
+ "path": "src/plugins/saved_objects_tagging_oss/public/api.ts"
},
{
- "plugin": "visualizations",
- "path": "src/plugins/visualizations/public/utils/saved_visualization_references/saved_visualization_references.ts"
+ "plugin": "savedObjectsTaggingOss",
+ "path": "src/plugins/saved_objects_tagging_oss/public/api.ts"
},
{
- "plugin": "visualizations",
- "path": "src/plugins/visualizations/public/utils/saved_visualize_utils.ts"
+ "plugin": "embeddable",
+ "path": "src/plugins/embeddable/common/lib/migrate_base_input.ts"
},
{
- "plugin": "visualizations",
- "path": "src/plugins/visualizations/public/utils/saved_visualize_utils.ts"
+ "plugin": "embeddable",
+ "path": "src/plugins/embeddable/common/lib/migrate_base_input.ts"
},
{
- "plugin": "visualizations",
- "path": "src/plugins/visualizations/public/utils/saved_visualize_utils.ts"
+ "plugin": "embeddable",
+ "path": "src/plugins/embeddable/common/lib/migrate_base_input.ts"
},
{
- "plugin": "visualizations",
- "path": "src/plugins/visualizations/public/utils/saved_visualize_utils.ts"
+ "plugin": "embeddable",
+ "path": "src/plugins/embeddable/common/lib/inject.ts"
},
{
- "plugin": "visualizations",
- "path": "src/plugins/visualizations/public/utils/saved_visualize_utils.ts"
+ "plugin": "embeddable",
+ "path": "src/plugins/embeddable/common/lib/inject.ts"
},
{
"plugin": "visualizations",
- "path": "src/plugins/visualizations/public/utils/saved_visualize_utils.ts"
+ "path": "src/plugins/visualizations/public/utils/saved_visualization_references/controls_references.ts"
},
{
"plugin": "visualizations",
- "path": "src/plugins/visualizations/public/embeddable/visualize_embeddable_factory.tsx"
+ "path": "src/plugins/visualizations/public/utils/saved_visualization_references/controls_references.ts"
},
{
"plugin": "visualizations",
- "path": "src/plugins/visualizations/public/embeddable/visualize_embeddable_factory.tsx"
+ "path": "src/plugins/visualizations/public/utils/saved_visualization_references/controls_references.ts"
},
{
"plugin": "visualizations",
- "path": "src/plugins/visualizations/public/visualize_app/components/visualize_listing.tsx"
+ "path": "src/plugins/visualizations/public/utils/saved_visualization_references/timeseries_references.ts"
},
{
"plugin": "visualizations",
- "path": "src/plugins/visualizations/public/visualize_app/components/visualize_listing.tsx"
+ "path": "src/plugins/visualizations/public/utils/saved_visualization_references/timeseries_references.ts"
},
{
"plugin": "visualizations",
- "path": "src/plugins/visualizations/public/visualize_app/components/visualize_listing.tsx"
+ "path": "src/plugins/visualizations/public/utils/saved_visualization_references/timeseries_references.ts"
},
{
- "plugin": "savedObjectsTagging",
- "path": "x-pack/plugins/saved_objects_tagging/public/ui_api/get_table_column_definition.tsx"
+ "plugin": "controls",
+ "path": "src/plugins/controls/common/options_list/options_list_persistable_state.ts"
},
{
- "plugin": "savedObjectsTagging",
- "path": "x-pack/plugins/saved_objects_tagging/public/ui_api/get_table_column_definition.tsx"
+ "plugin": "controls",
+ "path": "src/plugins/controls/common/options_list/options_list_persistable_state.ts"
},
{
- "plugin": "eventAnnotation",
- "path": "src/plugins/event_annotation/public/event_annotation_service/service.tsx"
+ "plugin": "controls",
+ "path": "src/plugins/controls/common/options_list/options_list_persistable_state.ts"
},
{
- "plugin": "eventAnnotation",
- "path": "src/plugins/event_annotation/public/event_annotation_service/service.tsx"
+ "plugin": "controls",
+ "path": "src/plugins/controls/common/range_slider/range_slider_persistable_state.ts"
},
{
- "plugin": "eventAnnotation",
- "path": "src/plugins/event_annotation/public/event_annotation_service/service.tsx"
+ "plugin": "controls",
+ "path": "src/plugins/controls/common/range_slider/range_slider_persistable_state.ts"
},
{
- "plugin": "lens",
- "path": "x-pack/plugins/lens/public/persistence/saved_object_store.ts"
+ "plugin": "controls",
+ "path": "src/plugins/controls/common/range_slider/range_slider_persistable_state.ts"
},
{
- "plugin": "lens",
- "path": "x-pack/plugins/lens/public/persistence/saved_object_store.ts"
+ "plugin": "controls",
+ "path": "src/plugins/controls/common/time_slider/time_slider_persistable_state.ts"
},
{
- "plugin": "lens",
- "path": "x-pack/plugins/lens/public/persistence/saved_object_store.ts"
+ "plugin": "controls",
+ "path": "src/plugins/controls/common/time_slider/time_slider_persistable_state.ts"
},
{
- "plugin": "lens",
- "path": "x-pack/plugins/lens/public/state_management/selectors.ts"
+ "plugin": "controls",
+ "path": "src/plugins/controls/common/time_slider/time_slider_persistable_state.ts"
},
{
- "plugin": "lens",
- "path": "x-pack/plugins/lens/public/state_management/selectors.ts"
+ "plugin": "controls",
+ "path": "src/plugins/controls/common/control_group/control_group_persistable_state.ts"
},
{
- "plugin": "lens",
- "path": "x-pack/plugins/lens/public/state_management/selectors.ts"
+ "plugin": "controls",
+ "path": "src/plugins/controls/common/control_group/control_group_persistable_state.ts"
},
{
- "plugin": "lens",
- "path": "x-pack/plugins/lens/public/editor_frame_service/editor_frame/state_helpers.ts"
+ "plugin": "controls",
+ "path": "src/plugins/controls/common/control_group/control_group_persistable_state.ts"
},
{
- "plugin": "lens",
- "path": "x-pack/plugins/lens/public/editor_frame_service/editor_frame/state_helpers.ts"
+ "plugin": "savedObjectsTagging",
+ "path": "x-pack/plugins/saved_objects_tagging/common/references.ts"
},
{
- "plugin": "lens",
- "path": "x-pack/plugins/lens/public/editor_frame_service/editor_frame/state_helpers.ts"
+ "plugin": "savedObjectsTagging",
+ "path": "x-pack/plugins/saved_objects_tagging/common/references.ts"
},
{
- "plugin": "lens",
- "path": "x-pack/plugins/lens/public/editor_frame_service/editor_frame/state_helpers.ts"
+ "plugin": "savedObjectsTagging",
+ "path": "x-pack/plugins/saved_objects_tagging/common/references.ts"
},
{
- "plugin": "lens",
- "path": "x-pack/plugins/lens/public/editor_frame_service/editor_frame/state_helpers.ts"
+ "plugin": "savedObjectsTagging",
+ "path": "x-pack/plugins/saved_objects_tagging/common/references.ts"
},
{
- "plugin": "lens",
- "path": "x-pack/plugins/lens/public/editor_frame_service/editor_frame/state_helpers.ts"
+ "plugin": "savedObjectsTagging",
+ "path": "x-pack/plugins/saved_objects_tagging/common/references.ts"
},
{
- "plugin": "lens",
- "path": "x-pack/plugins/lens/public/editor_frame_service/editor_frame/state_helpers.ts"
+ "plugin": "savedObjectsTagging",
+ "path": "x-pack/plugins/saved_objects_tagging/common/references.ts"
},
{
- "plugin": "lens",
- "path": "x-pack/plugins/lens/public/utils.ts"
+ "plugin": "savedObjectsTagging",
+ "path": "x-pack/plugins/saved_objects_tagging/public/utils.ts"
},
{
- "plugin": "lens",
- "path": "x-pack/plugins/lens/public/utils.ts"
+ "plugin": "savedObjectsTagging",
+ "path": "x-pack/plugins/saved_objects_tagging/public/utils.ts"
},
{
- "plugin": "lens",
- "path": "x-pack/plugins/lens/public/utils.ts"
+ "plugin": "savedObjectsTagging",
+ "path": "x-pack/plugins/saved_objects_tagging/public/utils.ts"
},
{
- "plugin": "lens",
- "path": "x-pack/plugins/lens/public/utils.ts"
+ "plugin": "savedObjectsTagging",
+ "path": "x-pack/plugins/saved_objects_tagging/public/utils.ts"
},
{
- "plugin": "lens",
- "path": "x-pack/plugins/lens/public/datasources/form_based/loader.ts"
+ "plugin": "savedObjectsTagging",
+ "path": "x-pack/plugins/saved_objects_tagging/public/components/connected/tag_list.tsx"
},
{
- "plugin": "lens",
- "path": "x-pack/plugins/lens/public/datasources/form_based/loader.ts"
+ "plugin": "savedObjectsTagging",
+ "path": "x-pack/plugins/saved_objects_tagging/public/components/connected/tag_list.tsx"
},
{
- "plugin": "lens",
- "path": "x-pack/plugins/lens/public/datasources/form_based/loader.ts"
+ "plugin": "uiActionsEnhanced",
+ "path": "src/plugins/ui_actions_enhanced/public/dynamic_actions/action_factory.ts"
},
{
- "plugin": "lens",
- "path": "x-pack/plugins/lens/public/datasources/form_based/loader.ts"
+ "plugin": "uiActionsEnhanced",
+ "path": "src/plugins/ui_actions_enhanced/public/dynamic_actions/action_factory.ts"
},
{
- "plugin": "lens",
- "path": "x-pack/plugins/lens/public/datasources/form_based/loader.ts"
+ "plugin": "uiActionsEnhanced",
+ "path": "src/plugins/ui_actions_enhanced/public/services/ui_actions_service_enhancements.ts"
},
{
- "plugin": "lens",
- "path": "x-pack/plugins/lens/public/datasources/form_based/form_based.tsx"
+ "plugin": "uiActionsEnhanced",
+ "path": "src/plugins/ui_actions_enhanced/public/services/ui_actions_service_enhancements.ts"
},
{
- "plugin": "lens",
- "path": "x-pack/plugins/lens/public/datasources/form_based/form_based.tsx"
+ "plugin": "uiActionsEnhanced",
+ "path": "src/plugins/ui_actions_enhanced/public/services/ui_actions_service_enhancements.ts"
},
{
- "plugin": "lens",
- "path": "x-pack/plugins/lens/public/datasources/form_based/form_based.tsx"
+ "plugin": "uiActionsEnhanced",
+ "path": "src/plugins/ui_actions_enhanced/public/dynamic_actions/dynamic_action_enhancement.ts"
},
{
- "plugin": "lens",
- "path": "x-pack/plugins/lens/public/datasources/form_based/form_based.tsx"
+ "plugin": "uiActionsEnhanced",
+ "path": "src/plugins/ui_actions_enhanced/public/dynamic_actions/dynamic_action_enhancement.ts"
},
{
"plugin": "lens",
- "path": "x-pack/plugins/lens/public/visualizations/xy/state_helpers.ts"
+ "path": "x-pack/plugins/lens/common/embeddable_factory/index.ts"
},
{
"plugin": "lens",
- "path": "x-pack/plugins/lens/public/visualizations/xy/state_helpers.ts"
+ "path": "x-pack/plugins/lens/common/embeddable_factory/index.ts"
},
{
"plugin": "lens",
- "path": "x-pack/plugins/lens/public/visualizations/xy/state_helpers.ts"
+ "path": "x-pack/plugins/lens/common/embeddable_factory/index.ts"
},
{
"plugin": "lens",
- "path": "x-pack/plugins/lens/public/visualizations/xy/visualization.tsx"
+ "path": "x-pack/plugins/lens/common/embeddable_factory/index.ts"
},
{
"plugin": "lens",
- "path": "x-pack/plugins/lens/public/visualizations/xy/visualization.tsx"
+ "path": "x-pack/plugins/lens/common/embeddable_factory/index.ts"
},
{
- "plugin": "lens",
- "path": "x-pack/plugins/lens/public/datasources/text_based/text_based_languages.tsx"
+ "plugin": "maps",
+ "path": "x-pack/plugins/maps/common/migrations/references.ts"
},
{
- "plugin": "lens",
- "path": "x-pack/plugins/lens/public/datasources/text_based/text_based_languages.tsx"
+ "plugin": "maps",
+ "path": "x-pack/plugins/maps/common/migrations/references.ts"
},
{
- "plugin": "lens",
- "path": "x-pack/plugins/lens/public/datasources/text_based/text_based_languages.tsx"
+ "plugin": "maps",
+ "path": "x-pack/plugins/maps/common/migrations/references.ts"
},
{
- "plugin": "lens",
- "path": "x-pack/plugins/lens/public/datasources/text_based/text_based_languages.tsx"
+ "plugin": "maps",
+ "path": "x-pack/plugins/maps/common/migrations/references.ts"
},
{
- "plugin": "lens",
- "path": "x-pack/plugins/lens/public/app_plugin/save_modal_container.tsx"
+ "plugin": "maps",
+ "path": "x-pack/plugins/maps/common/migrations/references.ts"
},
{
- "plugin": "lens",
- "path": "x-pack/plugins/lens/public/app_plugin/save_modal_container.tsx"
+ "plugin": "maps",
+ "path": "x-pack/plugins/maps/public/map_attribute_service.ts"
},
{
- "plugin": "lens",
- "path": "x-pack/plugins/lens/public/types.ts"
+ "plugin": "maps",
+ "path": "x-pack/plugins/maps/public/map_attribute_service.ts"
},
{
- "plugin": "lens",
- "path": "x-pack/plugins/lens/public/types.ts"
+ "plugin": "canvas",
+ "path": "x-pack/plugins/canvas/canvas_plugin_src/functions/external/saved_lens.ts"
},
{
- "plugin": "lens",
- "path": "x-pack/plugins/lens/public/types.ts"
+ "plugin": "canvas",
+ "path": "x-pack/plugins/canvas/canvas_plugin_src/functions/external/saved_lens.ts"
},
{
- "plugin": "lens",
- "path": "x-pack/plugins/lens/public/types.ts"
+ "plugin": "canvas",
+ "path": "x-pack/plugins/canvas/canvas_plugin_src/functions/external/saved_map.ts"
},
{
- "plugin": "lens",
- "path": "x-pack/plugins/lens/public/types.ts"
+ "plugin": "canvas",
+ "path": "x-pack/plugins/canvas/canvas_plugin_src/functions/external/saved_map.ts"
},
{
- "plugin": "lens",
- "path": "x-pack/plugins/lens/public/types.ts"
+ "plugin": "canvas",
+ "path": "x-pack/plugins/canvas/canvas_plugin_src/functions/external/saved_search.ts"
},
{
- "plugin": "lens",
- "path": "x-pack/plugins/lens/public/types.ts"
+ "plugin": "canvas",
+ "path": "x-pack/plugins/canvas/canvas_plugin_src/functions/external/saved_search.ts"
},
{
- "plugin": "lens",
- "path": "x-pack/plugins/lens/public/types.ts"
+ "plugin": "canvas",
+ "path": "x-pack/plugins/canvas/canvas_plugin_src/functions/external/saved_visualization.ts"
},
{
- "plugin": "lens",
- "path": "x-pack/plugins/lens/public/types.ts"
+ "plugin": "canvas",
+ "path": "x-pack/plugins/canvas/canvas_plugin_src/functions/external/saved_visualization.ts"
},
{
- "plugin": "lens",
- "path": "x-pack/plugins/lens/public/types.ts"
+ "plugin": "canvas",
+ "path": "x-pack/plugins/canvas/canvas_plugin_src/functions/external/embeddable.ts"
},
{
- "plugin": "lens",
- "path": "x-pack/plugins/lens/public/types.ts"
+ "plugin": "canvas",
+ "path": "x-pack/plugins/canvas/canvas_plugin_src/functions/external/embeddable.ts"
},
{
- "plugin": "graph",
- "path": "x-pack/plugins/graph/public/services/persistence/saved_workspace_references.ts"
+ "plugin": "dashboardEnhanced",
+ "path": "x-pack/plugins/dashboard_enhanced/common/drilldowns/dashboard_drilldown/dashboard_drilldown_persistable_state.ts"
},
{
- "plugin": "graph",
- "path": "x-pack/plugins/graph/public/services/persistence/saved_workspace_references.ts"
+ "plugin": "dashboardEnhanced",
+ "path": "x-pack/plugins/dashboard_enhanced/common/drilldowns/dashboard_drilldown/dashboard_drilldown_persistable_state.ts"
},
{
- "plugin": "graph",
- "path": "x-pack/plugins/graph/public/services/persistence/saved_workspace_references.ts"
+ "plugin": "dashboardEnhanced",
+ "path": "x-pack/plugins/dashboard_enhanced/common/drilldowns/dashboard_drilldown/dashboard_drilldown_persistable_state.ts"
},
{
- "plugin": "graph",
- "path": "x-pack/plugins/graph/public/types/persistence.ts"
+ "plugin": "uiActionsEnhanced",
+ "path": "src/plugins/ui_actions_enhanced/server/dynamic_action_enhancement.ts"
},
{
- "plugin": "graph",
- "path": "x-pack/plugins/graph/public/types/persistence.ts"
+ "plugin": "uiActionsEnhanced",
+ "path": "src/plugins/ui_actions_enhanced/server/dynamic_action_enhancement.ts"
},
{
- "plugin": "lens",
- "path": "x-pack/plugins/lens/public/datasources/form_based/form_based.test.ts"
+ "plugin": "uiActionsEnhanced",
+ "path": "src/plugins/ui_actions_enhanced/server/dynamic_action_enhancement.ts"
},
{
- "plugin": "lens",
- "path": "x-pack/plugins/lens/public/datasources/form_based/form_based.test.ts"
+ "plugin": "savedObjectsTagging",
+ "path": "x-pack/plugins/saved_objects_tagging/common/references.test.ts"
},
{
- "plugin": "lens",
- "path": "x-pack/plugins/lens/public/datasources/form_based/form_based.test.ts"
+ "plugin": "savedObjectsTagging",
+ "path": "x-pack/plugins/saved_objects_tagging/common/references.test.ts"
},
{
- "plugin": "dashboard",
- "path": "src/plugins/dashboard/common/bwc/types.ts"
+ "plugin": "savedObjectsTagging",
+ "path": "x-pack/plugins/saved_objects_tagging/public/utils.test.ts"
},
{
- "plugin": "dashboard",
- "path": "src/plugins/dashboard/common/bwc/types.ts"
+ "plugin": "savedObjectsTagging",
+ "path": "x-pack/plugins/saved_objects_tagging/public/utils.test.ts"
},
{
- "plugin": "savedObjectsTaggingOss",
- "path": "src/plugins/saved_objects_tagging_oss/public/decorator/extract_tag_references.test.ts"
+ "plugin": "savedObjectsTagging",
+ "path": "x-pack/plugins/saved_objects_tagging/public/utils.test.ts"
},
{
- "plugin": "savedObjectsTaggingOss",
- "path": "src/plugins/saved_objects_tagging_oss/public/decorator/extract_tag_references.test.ts"
+ "plugin": "savedObjectsTagging",
+ "path": "x-pack/plugins/saved_objects_tagging/common/test_utils/index.ts"
},
{
- "plugin": "savedObjectsTaggingOss",
- "path": "src/plugins/saved_objects_tagging_oss/public/decorator/extract_tag_references.test.ts"
+ "plugin": "savedObjectsTagging",
+ "path": "x-pack/plugins/saved_objects_tagging/common/test_utils/index.ts"
},
{
- "plugin": "savedObjectsTaggingOss",
- "path": "src/plugins/saved_objects_tagging_oss/public/decorator/extract_tag_references.test.ts"
+ "plugin": "globalSearchProviders",
+ "path": "x-pack/plugins/global_search_providers/server/providers/saved_objects/map_object_to_result.test.ts"
},
{
- "plugin": "savedObjectsTaggingOss",
- "path": "src/plugins/saved_objects_tagging_oss/public/decorator/extract_tag_references.test.ts"
+ "plugin": "globalSearchProviders",
+ "path": "x-pack/plugins/global_search_providers/server/providers/saved_objects/map_object_to_result.test.ts"
},
{
- "plugin": "savedObjectsTaggingOss",
- "path": "src/plugins/saved_objects_tagging_oss/public/decorator/extract_tag_references.test.ts"
+ "plugin": "expressions",
+ "path": "src/plugins/expressions/common/executor/executor.test.ts"
},
{
- "plugin": "savedObjectsTaggingOss",
- "path": "src/plugins/saved_objects_tagging_oss/public/decorator/inject_tag_references.test.ts"
+ "plugin": "expressions",
+ "path": "src/plugins/expressions/common/executor/executor.test.ts"
},
{
- "plugin": "savedObjectsTaggingOss",
- "path": "src/plugins/saved_objects_tagging_oss/public/decorator/inject_tag_references.test.ts"
+ "plugin": "expressions",
+ "path": "src/plugins/expressions/common/executor/executor.test.ts"
},
{
"plugin": "lens",
diff --git a/api_docs/kbn_core_saved_objects_common.mdx b/api_docs/kbn_core_saved_objects_common.mdx
index c5f492f5106dc..d59ae94970407 100644
--- a/api_docs/kbn_core_saved_objects_common.mdx
+++ b/api_docs/kbn_core_saved_objects_common.mdx
@@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-core-saved-objects-common
title: "@kbn/core-saved-objects-common"
image: https://source.unsplash.com/400x175/?github
description: API docs for the @kbn/core-saved-objects-common plugin
-date: 2023-09-28
+date: 2023-09-29
tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/core-saved-objects-common']
---
import kbnCoreSavedObjectsCommonObj from './kbn_core_saved_objects_common.devdocs.json';
diff --git a/api_docs/kbn_core_saved_objects_import_export_server_internal.mdx b/api_docs/kbn_core_saved_objects_import_export_server_internal.mdx
index 59b3f1336b5b0..a1fb4fe9a5797 100644
--- a/api_docs/kbn_core_saved_objects_import_export_server_internal.mdx
+++ b/api_docs/kbn_core_saved_objects_import_export_server_internal.mdx
@@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-core-saved-objects-import-export-server-internal
title: "@kbn/core-saved-objects-import-export-server-internal"
image: https://source.unsplash.com/400x175/?github
description: API docs for the @kbn/core-saved-objects-import-export-server-internal plugin
-date: 2023-09-28
+date: 2023-09-29
tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/core-saved-objects-import-export-server-internal']
---
import kbnCoreSavedObjectsImportExportServerInternalObj from './kbn_core_saved_objects_import_export_server_internal.devdocs.json';
diff --git a/api_docs/kbn_core_saved_objects_import_export_server_mocks.mdx b/api_docs/kbn_core_saved_objects_import_export_server_mocks.mdx
index a717ce03a9ddf..52b002a91ff53 100644
--- a/api_docs/kbn_core_saved_objects_import_export_server_mocks.mdx
+++ b/api_docs/kbn_core_saved_objects_import_export_server_mocks.mdx
@@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-core-saved-objects-import-export-server-mocks
title: "@kbn/core-saved-objects-import-export-server-mocks"
image: https://source.unsplash.com/400x175/?github
description: API docs for the @kbn/core-saved-objects-import-export-server-mocks plugin
-date: 2023-09-28
+date: 2023-09-29
tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/core-saved-objects-import-export-server-mocks']
---
import kbnCoreSavedObjectsImportExportServerMocksObj from './kbn_core_saved_objects_import_export_server_mocks.devdocs.json';
diff --git a/api_docs/kbn_core_saved_objects_migration_server_internal.mdx b/api_docs/kbn_core_saved_objects_migration_server_internal.mdx
index 8e7fd5914071c..2bd9034fc1dda 100644
--- a/api_docs/kbn_core_saved_objects_migration_server_internal.mdx
+++ b/api_docs/kbn_core_saved_objects_migration_server_internal.mdx
@@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-core-saved-objects-migration-server-internal
title: "@kbn/core-saved-objects-migration-server-internal"
image: https://source.unsplash.com/400x175/?github
description: API docs for the @kbn/core-saved-objects-migration-server-internal plugin
-date: 2023-09-28
+date: 2023-09-29
tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/core-saved-objects-migration-server-internal']
---
import kbnCoreSavedObjectsMigrationServerInternalObj from './kbn_core_saved_objects_migration_server_internal.devdocs.json';
diff --git a/api_docs/kbn_core_saved_objects_migration_server_mocks.mdx b/api_docs/kbn_core_saved_objects_migration_server_mocks.mdx
index cf77d20409705..8bcc9ce47af1a 100644
--- a/api_docs/kbn_core_saved_objects_migration_server_mocks.mdx
+++ b/api_docs/kbn_core_saved_objects_migration_server_mocks.mdx
@@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-core-saved-objects-migration-server-mocks
title: "@kbn/core-saved-objects-migration-server-mocks"
image: https://source.unsplash.com/400x175/?github
description: API docs for the @kbn/core-saved-objects-migration-server-mocks plugin
-date: 2023-09-28
+date: 2023-09-29
tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/core-saved-objects-migration-server-mocks']
---
import kbnCoreSavedObjectsMigrationServerMocksObj from './kbn_core_saved_objects_migration_server_mocks.devdocs.json';
diff --git a/api_docs/kbn_core_saved_objects_server.devdocs.json b/api_docs/kbn_core_saved_objects_server.devdocs.json
index 5f59c9dd45cd7..5b9051d7275bd 100644
--- a/api_docs/kbn_core_saved_objects_server.devdocs.json
+++ b/api_docs/kbn_core_saved_objects_server.devdocs.json
@@ -5759,18 +5759,6 @@
"deprecated": true,
"trackAdoption": false,
"references": [
- {
- "plugin": "@kbn/core-saved-objects-api-server-internal",
- "path": "packages/core/saved-objects/core-saved-objects-api-server-internal/src/lib/apis/utils/internal_utils.ts"
- },
- {
- "plugin": "@kbn/core-saved-objects-import-export-server-internal",
- "path": "packages/core/saved-objects/core-saved-objects-import-export-server-internal/src/import/lib/collect_saved_objects.ts"
- },
- {
- "plugin": "@kbn/core-saved-objects-server-internal",
- "path": "packages/core/saved-objects/core-saved-objects-server-internal/src/routes/legacy_import_export/lib/import_dashboards.ts"
- },
{
"plugin": "@kbn/core-saved-objects-api-browser",
"path": "packages/core/saved-objects/core-saved-objects-api-browser/src/simple_saved_object.ts"
@@ -5783,6 +5771,22 @@
"plugin": "@kbn/core-saved-objects-browser-internal",
"path": "packages/core/saved-objects/core-saved-objects-browser-internal/src/simple_saved_object.ts"
},
+ {
+ "plugin": "@kbn/core-saved-objects-browser-mocks",
+ "path": "packages/core/saved-objects/core-saved-objects-browser-mocks/src/simple_saved_object.mock.ts"
+ },
+ {
+ "plugin": "@kbn/core-saved-objects-api-server-internal",
+ "path": "packages/core/saved-objects/core-saved-objects-api-server-internal/src/lib/apis/utils/internal_utils.ts"
+ },
+ {
+ "plugin": "@kbn/core-saved-objects-import-export-server-internal",
+ "path": "packages/core/saved-objects/core-saved-objects-import-export-server-internal/src/import/lib/collect_saved_objects.ts"
+ },
+ {
+ "plugin": "@kbn/core-saved-objects-server-internal",
+ "path": "packages/core/saved-objects/core-saved-objects-server-internal/src/routes/legacy_import_export/lib/import_dashboards.ts"
+ },
{
"plugin": "fleet",
"path": "x-pack/plugins/fleet/server/services/epm/kibana/assets/install.ts"
@@ -5795,6 +5799,22 @@
"plugin": "fleet",
"path": "x-pack/plugins/fleet/server/services/epm/kibana/assets/install.ts"
},
+ {
+ "plugin": "graph",
+ "path": "x-pack/plugins/graph/server/sample_data/logs.ts"
+ },
+ {
+ "plugin": "graph",
+ "path": "x-pack/plugins/graph/server/sample_data/ecommerce.ts"
+ },
+ {
+ "plugin": "graph",
+ "path": "x-pack/plugins/graph/server/sample_data/flights.ts"
+ },
+ {
+ "plugin": "lists",
+ "path": "x-pack/plugins/lists/server/services/exception_lists/exception_list_client.mock.ts"
+ },
{
"plugin": "osquery",
"path": "x-pack/plugins/osquery/server/routes/pack/read_pack_route.ts"
@@ -5883,26 +5903,6 @@
"plugin": "securitySolution",
"path": "x-pack/plugins/security_solution/server/lib/risk_score/prebuilt_saved_objects/saved_object/user_risk_score_dashboards.ts"
},
- {
- "plugin": "@kbn/core-saved-objects-browser-mocks",
- "path": "packages/core/saved-objects/core-saved-objects-browser-mocks/src/simple_saved_object.mock.ts"
- },
- {
- "plugin": "graph",
- "path": "x-pack/plugins/graph/server/sample_data/logs.ts"
- },
- {
- "plugin": "graph",
- "path": "x-pack/plugins/graph/server/sample_data/ecommerce.ts"
- },
- {
- "plugin": "graph",
- "path": "x-pack/plugins/graph/server/sample_data/flights.ts"
- },
- {
- "plugin": "lists",
- "path": "x-pack/plugins/lists/server/services/exception_lists/exception_list_client.mock.ts"
- },
{
"plugin": "alerting",
"path": "x-pack/plugins/alerting/server/rules_client/lib/siem_legacy_actions/retrieve_migrated_legacy_actions.mock.ts"
@@ -6219,22 +6219,6 @@
"plugin": "alerting",
"path": "x-pack/plugins/alerting/server/types.ts"
},
- {
- "plugin": "securitySolution",
- "path": "x-pack/plugins/security_solution/server/lib/detection_engine/rule_actions_legacy/logic/rule_actions/legacy_types.ts"
- },
- {
- "plugin": "securitySolution",
- "path": "x-pack/plugins/security_solution/server/lib/detection_engine/rule_actions_legacy/logic/rule_actions/legacy_types.ts"
- },
- {
- "plugin": "securitySolution",
- "path": "x-pack/plugins/security_solution/server/lib/detection_engine/rule_actions_legacy/logic/rule_actions/legacy_migrations.ts"
- },
- {
- "plugin": "securitySolution",
- "path": "x-pack/plugins/security_solution/server/lib/detection_engine/rule_actions_legacy/logic/rule_actions/legacy_migrations.ts"
- },
{
"plugin": "savedSearch",
"path": "src/plugins/saved_search/server/saved_objects/search_migrations.ts"
@@ -6271,6 +6255,22 @@
"plugin": "enterpriseSearch",
"path": "x-pack/plugins/enterprise_search/server/collectors/lib/telemetry.ts"
},
+ {
+ "plugin": "securitySolution",
+ "path": "x-pack/plugins/security_solution/server/lib/detection_engine/rule_actions_legacy/logic/rule_actions/legacy_types.ts"
+ },
+ {
+ "plugin": "securitySolution",
+ "path": "x-pack/plugins/security_solution/server/lib/detection_engine/rule_actions_legacy/logic/rule_actions/legacy_types.ts"
+ },
+ {
+ "plugin": "securitySolution",
+ "path": "x-pack/plugins/security_solution/server/lib/detection_engine/rule_actions_legacy/logic/rule_actions/legacy_migrations.ts"
+ },
+ {
+ "plugin": "securitySolution",
+ "path": "x-pack/plugins/security_solution/server/lib/detection_engine/rule_actions_legacy/logic/rule_actions/legacy_migrations.ts"
+ },
{
"plugin": "taskManager",
"path": "x-pack/plugins/task_manager/server/task_store.test.ts"
@@ -10471,10 +10471,6 @@
"plugin": "lens",
"path": "x-pack/plugins/lens/server/saved_objects.ts"
},
- {
- "plugin": "lists",
- "path": "x-pack/plugins/lists/server/saved_objects/exception_list.ts"
- },
{
"plugin": "cases",
"path": "x-pack/plugins/cases/server/saved_object_types/cases.ts"
@@ -10499,22 +10495,6 @@
"plugin": "savedObjectsTagging",
"path": "x-pack/plugins/saved_objects_tagging/server/saved_objects/tag.ts"
},
- {
- "plugin": "securitySolution",
- "path": "x-pack/plugins/security_solution/server/lib/timeline/saved_object_mappings/timelines.ts"
- },
- {
- "plugin": "securitySolution",
- "path": "x-pack/plugins/security_solution/server/lib/timeline/saved_object_mappings/notes.ts"
- },
- {
- "plugin": "securitySolution",
- "path": "x-pack/plugins/security_solution/server/lib/timeline/saved_object_mappings/pinned_events.ts"
- },
- {
- "plugin": "securitySolution",
- "path": "x-pack/plugins/security_solution/server/lib/detection_engine/rule_actions_legacy/logic/rule_actions/legacy_saved_object_mappings.ts"
- },
{
"plugin": "savedSearch",
"path": "src/plugins/saved_search/server/saved_objects/search.ts"
@@ -10535,10 +10515,30 @@
"plugin": "visualizations",
"path": "src/plugins/visualizations/server/saved_objects/visualization.ts"
},
+ {
+ "plugin": "lists",
+ "path": "x-pack/plugins/lists/server/saved_objects/exception_list.ts"
+ },
{
"plugin": "maps",
"path": "x-pack/plugins/maps/server/saved_objects/setup_saved_objects.ts"
},
+ {
+ "plugin": "securitySolution",
+ "path": "x-pack/plugins/security_solution/server/lib/timeline/saved_object_mappings/timelines.ts"
+ },
+ {
+ "plugin": "securitySolution",
+ "path": "x-pack/plugins/security_solution/server/lib/timeline/saved_object_mappings/notes.ts"
+ },
+ {
+ "plugin": "securitySolution",
+ "path": "x-pack/plugins/security_solution/server/lib/timeline/saved_object_mappings/pinned_events.ts"
+ },
+ {
+ "plugin": "securitySolution",
+ "path": "x-pack/plugins/security_solution/server/lib/detection_engine/rule_actions_legacy/logic/rule_actions/legacy_saved_object_mappings.ts"
+ },
{
"plugin": "dashboard",
"path": "src/plugins/dashboard/server/dashboard_saved_object/dashboard_saved_object.ts"
diff --git a/api_docs/kbn_core_saved_objects_server.mdx b/api_docs/kbn_core_saved_objects_server.mdx
index 121f306390d37..70b04885fe3ab 100644
--- a/api_docs/kbn_core_saved_objects_server.mdx
+++ b/api_docs/kbn_core_saved_objects_server.mdx
@@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-core-saved-objects-server
title: "@kbn/core-saved-objects-server"
image: https://source.unsplash.com/400x175/?github
description: API docs for the @kbn/core-saved-objects-server plugin
-date: 2023-09-28
+date: 2023-09-29
tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/core-saved-objects-server']
---
import kbnCoreSavedObjectsServerObj from './kbn_core_saved_objects_server.devdocs.json';
diff --git a/api_docs/kbn_core_saved_objects_server_internal.mdx b/api_docs/kbn_core_saved_objects_server_internal.mdx
index d54314765ee07..32d46b9143941 100644
--- a/api_docs/kbn_core_saved_objects_server_internal.mdx
+++ b/api_docs/kbn_core_saved_objects_server_internal.mdx
@@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-core-saved-objects-server-internal
title: "@kbn/core-saved-objects-server-internal"
image: https://source.unsplash.com/400x175/?github
description: API docs for the @kbn/core-saved-objects-server-internal plugin
-date: 2023-09-28
+date: 2023-09-29
tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/core-saved-objects-server-internal']
---
import kbnCoreSavedObjectsServerInternalObj from './kbn_core_saved_objects_server_internal.devdocs.json';
diff --git a/api_docs/kbn_core_saved_objects_server_mocks.mdx b/api_docs/kbn_core_saved_objects_server_mocks.mdx
index e674795bb7d7a..ae066637e1e24 100644
--- a/api_docs/kbn_core_saved_objects_server_mocks.mdx
+++ b/api_docs/kbn_core_saved_objects_server_mocks.mdx
@@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-core-saved-objects-server-mocks
title: "@kbn/core-saved-objects-server-mocks"
image: https://source.unsplash.com/400x175/?github
description: API docs for the @kbn/core-saved-objects-server-mocks plugin
-date: 2023-09-28
+date: 2023-09-29
tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/core-saved-objects-server-mocks']
---
import kbnCoreSavedObjectsServerMocksObj from './kbn_core_saved_objects_server_mocks.devdocs.json';
diff --git a/api_docs/kbn_core_saved_objects_utils_server.mdx b/api_docs/kbn_core_saved_objects_utils_server.mdx
index 2e66dac37ee41..689014dd59e00 100644
--- a/api_docs/kbn_core_saved_objects_utils_server.mdx
+++ b/api_docs/kbn_core_saved_objects_utils_server.mdx
@@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-core-saved-objects-utils-server
title: "@kbn/core-saved-objects-utils-server"
image: https://source.unsplash.com/400x175/?github
description: API docs for the @kbn/core-saved-objects-utils-server plugin
-date: 2023-09-28
+date: 2023-09-29
tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/core-saved-objects-utils-server']
---
import kbnCoreSavedObjectsUtilsServerObj from './kbn_core_saved_objects_utils_server.devdocs.json';
diff --git a/api_docs/kbn_core_status_common.mdx b/api_docs/kbn_core_status_common.mdx
index bdbfa32906cba..1f39d43e95de6 100644
--- a/api_docs/kbn_core_status_common.mdx
+++ b/api_docs/kbn_core_status_common.mdx
@@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-core-status-common
title: "@kbn/core-status-common"
image: https://source.unsplash.com/400x175/?github
description: API docs for the @kbn/core-status-common plugin
-date: 2023-09-28
+date: 2023-09-29
tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/core-status-common']
---
import kbnCoreStatusCommonObj from './kbn_core_status_common.devdocs.json';
diff --git a/api_docs/kbn_core_status_common_internal.mdx b/api_docs/kbn_core_status_common_internal.mdx
index d4e797164e721..286ad8ba080bc 100644
--- a/api_docs/kbn_core_status_common_internal.mdx
+++ b/api_docs/kbn_core_status_common_internal.mdx
@@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-core-status-common-internal
title: "@kbn/core-status-common-internal"
image: https://source.unsplash.com/400x175/?github
description: API docs for the @kbn/core-status-common-internal plugin
-date: 2023-09-28
+date: 2023-09-29
tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/core-status-common-internal']
---
import kbnCoreStatusCommonInternalObj from './kbn_core_status_common_internal.devdocs.json';
diff --git a/api_docs/kbn_core_status_server.mdx b/api_docs/kbn_core_status_server.mdx
index 49c68f88fe825..1a6e4f8e6bb56 100644
--- a/api_docs/kbn_core_status_server.mdx
+++ b/api_docs/kbn_core_status_server.mdx
@@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-core-status-server
title: "@kbn/core-status-server"
image: https://source.unsplash.com/400x175/?github
description: API docs for the @kbn/core-status-server plugin
-date: 2023-09-28
+date: 2023-09-29
tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/core-status-server']
---
import kbnCoreStatusServerObj from './kbn_core_status_server.devdocs.json';
diff --git a/api_docs/kbn_core_status_server_internal.mdx b/api_docs/kbn_core_status_server_internal.mdx
index 1403d0bbce110..256ea08539b82 100644
--- a/api_docs/kbn_core_status_server_internal.mdx
+++ b/api_docs/kbn_core_status_server_internal.mdx
@@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-core-status-server-internal
title: "@kbn/core-status-server-internal"
image: https://source.unsplash.com/400x175/?github
description: API docs for the @kbn/core-status-server-internal plugin
-date: 2023-09-28
+date: 2023-09-29
tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/core-status-server-internal']
---
import kbnCoreStatusServerInternalObj from './kbn_core_status_server_internal.devdocs.json';
diff --git a/api_docs/kbn_core_status_server_mocks.mdx b/api_docs/kbn_core_status_server_mocks.mdx
index 624d513b8121b..29cb50c7ec525 100644
--- a/api_docs/kbn_core_status_server_mocks.mdx
+++ b/api_docs/kbn_core_status_server_mocks.mdx
@@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-core-status-server-mocks
title: "@kbn/core-status-server-mocks"
image: https://source.unsplash.com/400x175/?github
description: API docs for the @kbn/core-status-server-mocks plugin
-date: 2023-09-28
+date: 2023-09-29
tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/core-status-server-mocks']
---
import kbnCoreStatusServerMocksObj from './kbn_core_status_server_mocks.devdocs.json';
diff --git a/api_docs/kbn_core_test_helpers_deprecations_getters.mdx b/api_docs/kbn_core_test_helpers_deprecations_getters.mdx
index a6a09ae1ca817..caac093bbf325 100644
--- a/api_docs/kbn_core_test_helpers_deprecations_getters.mdx
+++ b/api_docs/kbn_core_test_helpers_deprecations_getters.mdx
@@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-core-test-helpers-deprecations-getters
title: "@kbn/core-test-helpers-deprecations-getters"
image: https://source.unsplash.com/400x175/?github
description: API docs for the @kbn/core-test-helpers-deprecations-getters plugin
-date: 2023-09-28
+date: 2023-09-29
tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/core-test-helpers-deprecations-getters']
---
import kbnCoreTestHelpersDeprecationsGettersObj from './kbn_core_test_helpers_deprecations_getters.devdocs.json';
diff --git a/api_docs/kbn_core_test_helpers_http_setup_browser.mdx b/api_docs/kbn_core_test_helpers_http_setup_browser.mdx
index 7f83d01655e64..c36935bfd0886 100644
--- a/api_docs/kbn_core_test_helpers_http_setup_browser.mdx
+++ b/api_docs/kbn_core_test_helpers_http_setup_browser.mdx
@@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-core-test-helpers-http-setup-browser
title: "@kbn/core-test-helpers-http-setup-browser"
image: https://source.unsplash.com/400x175/?github
description: API docs for the @kbn/core-test-helpers-http-setup-browser plugin
-date: 2023-09-28
+date: 2023-09-29
tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/core-test-helpers-http-setup-browser']
---
import kbnCoreTestHelpersHttpSetupBrowserObj from './kbn_core_test_helpers_http_setup_browser.devdocs.json';
diff --git a/api_docs/kbn_core_test_helpers_kbn_server.mdx b/api_docs/kbn_core_test_helpers_kbn_server.mdx
index 2b331379945b2..200c6e65f0d76 100644
--- a/api_docs/kbn_core_test_helpers_kbn_server.mdx
+++ b/api_docs/kbn_core_test_helpers_kbn_server.mdx
@@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-core-test-helpers-kbn-server
title: "@kbn/core-test-helpers-kbn-server"
image: https://source.unsplash.com/400x175/?github
description: API docs for the @kbn/core-test-helpers-kbn-server plugin
-date: 2023-09-28
+date: 2023-09-29
tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/core-test-helpers-kbn-server']
---
import kbnCoreTestHelpersKbnServerObj from './kbn_core_test_helpers_kbn_server.devdocs.json';
diff --git a/api_docs/kbn_core_test_helpers_so_type_serializer.mdx b/api_docs/kbn_core_test_helpers_so_type_serializer.mdx
index 46d2ba4365b33..6a47dbeae8269 100644
--- a/api_docs/kbn_core_test_helpers_so_type_serializer.mdx
+++ b/api_docs/kbn_core_test_helpers_so_type_serializer.mdx
@@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-core-test-helpers-so-type-serializer
title: "@kbn/core-test-helpers-so-type-serializer"
image: https://source.unsplash.com/400x175/?github
description: API docs for the @kbn/core-test-helpers-so-type-serializer plugin
-date: 2023-09-28
+date: 2023-09-29
tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/core-test-helpers-so-type-serializer']
---
import kbnCoreTestHelpersSoTypeSerializerObj from './kbn_core_test_helpers_so_type_serializer.devdocs.json';
diff --git a/api_docs/kbn_core_test_helpers_test_utils.mdx b/api_docs/kbn_core_test_helpers_test_utils.mdx
index 9858dae8af699..c0202a74dc94f 100644
--- a/api_docs/kbn_core_test_helpers_test_utils.mdx
+++ b/api_docs/kbn_core_test_helpers_test_utils.mdx
@@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-core-test-helpers-test-utils
title: "@kbn/core-test-helpers-test-utils"
image: https://source.unsplash.com/400x175/?github
description: API docs for the @kbn/core-test-helpers-test-utils plugin
-date: 2023-09-28
+date: 2023-09-29
tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/core-test-helpers-test-utils']
---
import kbnCoreTestHelpersTestUtilsObj from './kbn_core_test_helpers_test_utils.devdocs.json';
diff --git a/api_docs/kbn_core_theme_browser.mdx b/api_docs/kbn_core_theme_browser.mdx
index e90a3fe9e3be7..a47a7534b0770 100644
--- a/api_docs/kbn_core_theme_browser.mdx
+++ b/api_docs/kbn_core_theme_browser.mdx
@@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-core-theme-browser
title: "@kbn/core-theme-browser"
image: https://source.unsplash.com/400x175/?github
description: API docs for the @kbn/core-theme-browser plugin
-date: 2023-09-28
+date: 2023-09-29
tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/core-theme-browser']
---
import kbnCoreThemeBrowserObj from './kbn_core_theme_browser.devdocs.json';
diff --git a/api_docs/kbn_core_theme_browser_mocks.mdx b/api_docs/kbn_core_theme_browser_mocks.mdx
index e66d8531ab745..192518b56e633 100644
--- a/api_docs/kbn_core_theme_browser_mocks.mdx
+++ b/api_docs/kbn_core_theme_browser_mocks.mdx
@@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-core-theme-browser-mocks
title: "@kbn/core-theme-browser-mocks"
image: https://source.unsplash.com/400x175/?github
description: API docs for the @kbn/core-theme-browser-mocks plugin
-date: 2023-09-28
+date: 2023-09-29
tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/core-theme-browser-mocks']
---
import kbnCoreThemeBrowserMocksObj from './kbn_core_theme_browser_mocks.devdocs.json';
diff --git a/api_docs/kbn_core_ui_settings_browser.mdx b/api_docs/kbn_core_ui_settings_browser.mdx
index ce753601db8cd..03525a56c98f1 100644
--- a/api_docs/kbn_core_ui_settings_browser.mdx
+++ b/api_docs/kbn_core_ui_settings_browser.mdx
@@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-core-ui-settings-browser
title: "@kbn/core-ui-settings-browser"
image: https://source.unsplash.com/400x175/?github
description: API docs for the @kbn/core-ui-settings-browser plugin
-date: 2023-09-28
+date: 2023-09-29
tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/core-ui-settings-browser']
---
import kbnCoreUiSettingsBrowserObj from './kbn_core_ui_settings_browser.devdocs.json';
diff --git a/api_docs/kbn_core_ui_settings_browser_internal.mdx b/api_docs/kbn_core_ui_settings_browser_internal.mdx
index 4f2e72185c5f2..b5a503a3efe5f 100644
--- a/api_docs/kbn_core_ui_settings_browser_internal.mdx
+++ b/api_docs/kbn_core_ui_settings_browser_internal.mdx
@@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-core-ui-settings-browser-internal
title: "@kbn/core-ui-settings-browser-internal"
image: https://source.unsplash.com/400x175/?github
description: API docs for the @kbn/core-ui-settings-browser-internal plugin
-date: 2023-09-28
+date: 2023-09-29
tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/core-ui-settings-browser-internal']
---
import kbnCoreUiSettingsBrowserInternalObj from './kbn_core_ui_settings_browser_internal.devdocs.json';
diff --git a/api_docs/kbn_core_ui_settings_browser_mocks.mdx b/api_docs/kbn_core_ui_settings_browser_mocks.mdx
index ed51b6f61c185..d8c3b442ca770 100644
--- a/api_docs/kbn_core_ui_settings_browser_mocks.mdx
+++ b/api_docs/kbn_core_ui_settings_browser_mocks.mdx
@@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-core-ui-settings-browser-mocks
title: "@kbn/core-ui-settings-browser-mocks"
image: https://source.unsplash.com/400x175/?github
description: API docs for the @kbn/core-ui-settings-browser-mocks plugin
-date: 2023-09-28
+date: 2023-09-29
tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/core-ui-settings-browser-mocks']
---
import kbnCoreUiSettingsBrowserMocksObj from './kbn_core_ui_settings_browser_mocks.devdocs.json';
diff --git a/api_docs/kbn_core_ui_settings_common.mdx b/api_docs/kbn_core_ui_settings_common.mdx
index aa314d6075295..70c142af81abd 100644
--- a/api_docs/kbn_core_ui_settings_common.mdx
+++ b/api_docs/kbn_core_ui_settings_common.mdx
@@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-core-ui-settings-common
title: "@kbn/core-ui-settings-common"
image: https://source.unsplash.com/400x175/?github
description: API docs for the @kbn/core-ui-settings-common plugin
-date: 2023-09-28
+date: 2023-09-29
tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/core-ui-settings-common']
---
import kbnCoreUiSettingsCommonObj from './kbn_core_ui_settings_common.devdocs.json';
diff --git a/api_docs/kbn_core_ui_settings_server.mdx b/api_docs/kbn_core_ui_settings_server.mdx
index 188f58f540939..109f02899902f 100644
--- a/api_docs/kbn_core_ui_settings_server.mdx
+++ b/api_docs/kbn_core_ui_settings_server.mdx
@@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-core-ui-settings-server
title: "@kbn/core-ui-settings-server"
image: https://source.unsplash.com/400x175/?github
description: API docs for the @kbn/core-ui-settings-server plugin
-date: 2023-09-28
+date: 2023-09-29
tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/core-ui-settings-server']
---
import kbnCoreUiSettingsServerObj from './kbn_core_ui_settings_server.devdocs.json';
diff --git a/api_docs/kbn_core_ui_settings_server_internal.mdx b/api_docs/kbn_core_ui_settings_server_internal.mdx
index 8b5bdae1113e7..15a8580c08a17 100644
--- a/api_docs/kbn_core_ui_settings_server_internal.mdx
+++ b/api_docs/kbn_core_ui_settings_server_internal.mdx
@@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-core-ui-settings-server-internal
title: "@kbn/core-ui-settings-server-internal"
image: https://source.unsplash.com/400x175/?github
description: API docs for the @kbn/core-ui-settings-server-internal plugin
-date: 2023-09-28
+date: 2023-09-29
tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/core-ui-settings-server-internal']
---
import kbnCoreUiSettingsServerInternalObj from './kbn_core_ui_settings_server_internal.devdocs.json';
diff --git a/api_docs/kbn_core_ui_settings_server_mocks.mdx b/api_docs/kbn_core_ui_settings_server_mocks.mdx
index 47eedb089d877..1658f8bdf4568 100644
--- a/api_docs/kbn_core_ui_settings_server_mocks.mdx
+++ b/api_docs/kbn_core_ui_settings_server_mocks.mdx
@@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-core-ui-settings-server-mocks
title: "@kbn/core-ui-settings-server-mocks"
image: https://source.unsplash.com/400x175/?github
description: API docs for the @kbn/core-ui-settings-server-mocks plugin
-date: 2023-09-28
+date: 2023-09-29
tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/core-ui-settings-server-mocks']
---
import kbnCoreUiSettingsServerMocksObj from './kbn_core_ui_settings_server_mocks.devdocs.json';
diff --git a/api_docs/kbn_core_usage_data_server.mdx b/api_docs/kbn_core_usage_data_server.mdx
index 208a9a0feb9d7..faab580278775 100644
--- a/api_docs/kbn_core_usage_data_server.mdx
+++ b/api_docs/kbn_core_usage_data_server.mdx
@@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-core-usage-data-server
title: "@kbn/core-usage-data-server"
image: https://source.unsplash.com/400x175/?github
description: API docs for the @kbn/core-usage-data-server plugin
-date: 2023-09-28
+date: 2023-09-29
tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/core-usage-data-server']
---
import kbnCoreUsageDataServerObj from './kbn_core_usage_data_server.devdocs.json';
diff --git a/api_docs/kbn_core_usage_data_server_internal.mdx b/api_docs/kbn_core_usage_data_server_internal.mdx
index 88af0ad6e5597..029bce44b1fec 100644
--- a/api_docs/kbn_core_usage_data_server_internal.mdx
+++ b/api_docs/kbn_core_usage_data_server_internal.mdx
@@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-core-usage-data-server-internal
title: "@kbn/core-usage-data-server-internal"
image: https://source.unsplash.com/400x175/?github
description: API docs for the @kbn/core-usage-data-server-internal plugin
-date: 2023-09-28
+date: 2023-09-29
tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/core-usage-data-server-internal']
---
import kbnCoreUsageDataServerInternalObj from './kbn_core_usage_data_server_internal.devdocs.json';
diff --git a/api_docs/kbn_core_usage_data_server_mocks.mdx b/api_docs/kbn_core_usage_data_server_mocks.mdx
index e29baf4b5494d..787775f128ffa 100644
--- a/api_docs/kbn_core_usage_data_server_mocks.mdx
+++ b/api_docs/kbn_core_usage_data_server_mocks.mdx
@@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-core-usage-data-server-mocks
title: "@kbn/core-usage-data-server-mocks"
image: https://source.unsplash.com/400x175/?github
description: API docs for the @kbn/core-usage-data-server-mocks plugin
-date: 2023-09-28
+date: 2023-09-29
tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/core-usage-data-server-mocks']
---
import kbnCoreUsageDataServerMocksObj from './kbn_core_usage_data_server_mocks.devdocs.json';
diff --git a/api_docs/kbn_core_user_settings_server.mdx b/api_docs/kbn_core_user_settings_server.mdx
index 0a443c6756438..ad3047731f232 100644
--- a/api_docs/kbn_core_user_settings_server.mdx
+++ b/api_docs/kbn_core_user_settings_server.mdx
@@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-core-user-settings-server
title: "@kbn/core-user-settings-server"
image: https://source.unsplash.com/400x175/?github
description: API docs for the @kbn/core-user-settings-server plugin
-date: 2023-09-28
+date: 2023-09-29
tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/core-user-settings-server']
---
import kbnCoreUserSettingsServerObj from './kbn_core_user_settings_server.devdocs.json';
diff --git a/api_docs/kbn_core_user_settings_server_internal.mdx b/api_docs/kbn_core_user_settings_server_internal.mdx
index f634383349b8f..a9fcd75ad6497 100644
--- a/api_docs/kbn_core_user_settings_server_internal.mdx
+++ b/api_docs/kbn_core_user_settings_server_internal.mdx
@@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-core-user-settings-server-internal
title: "@kbn/core-user-settings-server-internal"
image: https://source.unsplash.com/400x175/?github
description: API docs for the @kbn/core-user-settings-server-internal plugin
-date: 2023-09-28
+date: 2023-09-29
tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/core-user-settings-server-internal']
---
import kbnCoreUserSettingsServerInternalObj from './kbn_core_user_settings_server_internal.devdocs.json';
diff --git a/api_docs/kbn_core_user_settings_server_mocks.mdx b/api_docs/kbn_core_user_settings_server_mocks.mdx
index f72ac8aa54458..be32949305a9e 100644
--- a/api_docs/kbn_core_user_settings_server_mocks.mdx
+++ b/api_docs/kbn_core_user_settings_server_mocks.mdx
@@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-core-user-settings-server-mocks
title: "@kbn/core-user-settings-server-mocks"
image: https://source.unsplash.com/400x175/?github
description: API docs for the @kbn/core-user-settings-server-mocks plugin
-date: 2023-09-28
+date: 2023-09-29
tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/core-user-settings-server-mocks']
---
import kbnCoreUserSettingsServerMocksObj from './kbn_core_user_settings_server_mocks.devdocs.json';
diff --git a/api_docs/kbn_crypto.mdx b/api_docs/kbn_crypto.mdx
index 18ebf327740a8..4497b3eb19a44 100644
--- a/api_docs/kbn_crypto.mdx
+++ b/api_docs/kbn_crypto.mdx
@@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-crypto
title: "@kbn/crypto"
image: https://source.unsplash.com/400x175/?github
description: API docs for the @kbn/crypto plugin
-date: 2023-09-28
+date: 2023-09-29
tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/crypto']
---
import kbnCryptoObj from './kbn_crypto.devdocs.json';
diff --git a/api_docs/kbn_crypto_browser.mdx b/api_docs/kbn_crypto_browser.mdx
index 4fe2c6c812b6f..b31d73f908450 100644
--- a/api_docs/kbn_crypto_browser.mdx
+++ b/api_docs/kbn_crypto_browser.mdx
@@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-crypto-browser
title: "@kbn/crypto-browser"
image: https://source.unsplash.com/400x175/?github
description: API docs for the @kbn/crypto-browser plugin
-date: 2023-09-28
+date: 2023-09-29
tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/crypto-browser']
---
import kbnCryptoBrowserObj from './kbn_crypto_browser.devdocs.json';
diff --git a/api_docs/kbn_custom_integrations.mdx b/api_docs/kbn_custom_integrations.mdx
index 34164c39ab444..3f0d89d516ec6 100644
--- a/api_docs/kbn_custom_integrations.mdx
+++ b/api_docs/kbn_custom_integrations.mdx
@@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-custom-integrations
title: "@kbn/custom-integrations"
image: https://source.unsplash.com/400x175/?github
description: API docs for the @kbn/custom-integrations plugin
-date: 2023-09-28
+date: 2023-09-29
tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/custom-integrations']
---
import kbnCustomIntegrationsObj from './kbn_custom_integrations.devdocs.json';
diff --git a/api_docs/kbn_cypress_config.mdx b/api_docs/kbn_cypress_config.mdx
index 3c21c81eaf4da..df52bad4c1261 100644
--- a/api_docs/kbn_cypress_config.mdx
+++ b/api_docs/kbn_cypress_config.mdx
@@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-cypress-config
title: "@kbn/cypress-config"
image: https://source.unsplash.com/400x175/?github
description: API docs for the @kbn/cypress-config plugin
-date: 2023-09-28
+date: 2023-09-29
tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/cypress-config']
---
import kbnCypressConfigObj from './kbn_cypress_config.devdocs.json';
diff --git a/api_docs/kbn_data_service.mdx b/api_docs/kbn_data_service.mdx
index d692dd9599aa2..7f1b3fb85d9b1 100644
--- a/api_docs/kbn_data_service.mdx
+++ b/api_docs/kbn_data_service.mdx
@@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-data-service
title: "@kbn/data-service"
image: https://source.unsplash.com/400x175/?github
description: API docs for the @kbn/data-service plugin
-date: 2023-09-28
+date: 2023-09-29
tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/data-service']
---
import kbnDataServiceObj from './kbn_data_service.devdocs.json';
diff --git a/api_docs/kbn_datemath.mdx b/api_docs/kbn_datemath.mdx
index 55ca0a7bf80c2..342e5d9bedbad 100644
--- a/api_docs/kbn_datemath.mdx
+++ b/api_docs/kbn_datemath.mdx
@@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-datemath
title: "@kbn/datemath"
image: https://source.unsplash.com/400x175/?github
description: API docs for the @kbn/datemath plugin
-date: 2023-09-28
+date: 2023-09-29
tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/datemath']
---
import kbnDatemathObj from './kbn_datemath.devdocs.json';
diff --git a/api_docs/kbn_deeplinks_analytics.mdx b/api_docs/kbn_deeplinks_analytics.mdx
index 3d2af8fc0751a..b0f2cd6c9b08e 100644
--- a/api_docs/kbn_deeplinks_analytics.mdx
+++ b/api_docs/kbn_deeplinks_analytics.mdx
@@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-deeplinks-analytics
title: "@kbn/deeplinks-analytics"
image: https://source.unsplash.com/400x175/?github
description: API docs for the @kbn/deeplinks-analytics plugin
-date: 2023-09-28
+date: 2023-09-29
tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/deeplinks-analytics']
---
import kbnDeeplinksAnalyticsObj from './kbn_deeplinks_analytics.devdocs.json';
diff --git a/api_docs/kbn_deeplinks_devtools.mdx b/api_docs/kbn_deeplinks_devtools.mdx
index 6c08dce9ef598..21c3a22630bca 100644
--- a/api_docs/kbn_deeplinks_devtools.mdx
+++ b/api_docs/kbn_deeplinks_devtools.mdx
@@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-deeplinks-devtools
title: "@kbn/deeplinks-devtools"
image: https://source.unsplash.com/400x175/?github
description: API docs for the @kbn/deeplinks-devtools plugin
-date: 2023-09-28
+date: 2023-09-29
tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/deeplinks-devtools']
---
import kbnDeeplinksDevtoolsObj from './kbn_deeplinks_devtools.devdocs.json';
diff --git a/api_docs/kbn_deeplinks_management.mdx b/api_docs/kbn_deeplinks_management.mdx
index 41d649fd4c062..f2840ad34ccba 100644
--- a/api_docs/kbn_deeplinks_management.mdx
+++ b/api_docs/kbn_deeplinks_management.mdx
@@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-deeplinks-management
title: "@kbn/deeplinks-management"
image: https://source.unsplash.com/400x175/?github
description: API docs for the @kbn/deeplinks-management plugin
-date: 2023-09-28
+date: 2023-09-29
tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/deeplinks-management']
---
import kbnDeeplinksManagementObj from './kbn_deeplinks_management.devdocs.json';
diff --git a/api_docs/kbn_deeplinks_ml.mdx b/api_docs/kbn_deeplinks_ml.mdx
index 292b91c3856ff..38092e91037ae 100644
--- a/api_docs/kbn_deeplinks_ml.mdx
+++ b/api_docs/kbn_deeplinks_ml.mdx
@@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-deeplinks-ml
title: "@kbn/deeplinks-ml"
image: https://source.unsplash.com/400x175/?github
description: API docs for the @kbn/deeplinks-ml plugin
-date: 2023-09-28
+date: 2023-09-29
tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/deeplinks-ml']
---
import kbnDeeplinksMlObj from './kbn_deeplinks_ml.devdocs.json';
diff --git a/api_docs/kbn_deeplinks_observability.mdx b/api_docs/kbn_deeplinks_observability.mdx
index 5aba148d03168..0783cc2c7f8fc 100644
--- a/api_docs/kbn_deeplinks_observability.mdx
+++ b/api_docs/kbn_deeplinks_observability.mdx
@@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-deeplinks-observability
title: "@kbn/deeplinks-observability"
image: https://source.unsplash.com/400x175/?github
description: API docs for the @kbn/deeplinks-observability plugin
-date: 2023-09-28
+date: 2023-09-29
tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/deeplinks-observability']
---
import kbnDeeplinksObservabilityObj from './kbn_deeplinks_observability.devdocs.json';
diff --git a/api_docs/kbn_deeplinks_search.mdx b/api_docs/kbn_deeplinks_search.mdx
index 29b10d15a5087..ecca6716215ff 100644
--- a/api_docs/kbn_deeplinks_search.mdx
+++ b/api_docs/kbn_deeplinks_search.mdx
@@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-deeplinks-search
title: "@kbn/deeplinks-search"
image: https://source.unsplash.com/400x175/?github
description: API docs for the @kbn/deeplinks-search plugin
-date: 2023-09-28
+date: 2023-09-29
tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/deeplinks-search']
---
import kbnDeeplinksSearchObj from './kbn_deeplinks_search.devdocs.json';
diff --git a/api_docs/kbn_default_nav_analytics.mdx b/api_docs/kbn_default_nav_analytics.mdx
index 2c47c2d916687..65930ba1d60fc 100644
--- a/api_docs/kbn_default_nav_analytics.mdx
+++ b/api_docs/kbn_default_nav_analytics.mdx
@@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-default-nav-analytics
title: "@kbn/default-nav-analytics"
image: https://source.unsplash.com/400x175/?github
description: API docs for the @kbn/default-nav-analytics plugin
-date: 2023-09-28
+date: 2023-09-29
tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/default-nav-analytics']
---
import kbnDefaultNavAnalyticsObj from './kbn_default_nav_analytics.devdocs.json';
diff --git a/api_docs/kbn_default_nav_devtools.mdx b/api_docs/kbn_default_nav_devtools.mdx
index d1a02ac85a818..f4a71a7d8e0ae 100644
--- a/api_docs/kbn_default_nav_devtools.mdx
+++ b/api_docs/kbn_default_nav_devtools.mdx
@@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-default-nav-devtools
title: "@kbn/default-nav-devtools"
image: https://source.unsplash.com/400x175/?github
description: API docs for the @kbn/default-nav-devtools plugin
-date: 2023-09-28
+date: 2023-09-29
tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/default-nav-devtools']
---
import kbnDefaultNavDevtoolsObj from './kbn_default_nav_devtools.devdocs.json';
diff --git a/api_docs/kbn_default_nav_management.mdx b/api_docs/kbn_default_nav_management.mdx
index 56a49ae0cc9a2..ea83086eb0cbf 100644
--- a/api_docs/kbn_default_nav_management.mdx
+++ b/api_docs/kbn_default_nav_management.mdx
@@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-default-nav-management
title: "@kbn/default-nav-management"
image: https://source.unsplash.com/400x175/?github
description: API docs for the @kbn/default-nav-management plugin
-date: 2023-09-28
+date: 2023-09-29
tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/default-nav-management']
---
import kbnDefaultNavManagementObj from './kbn_default_nav_management.devdocs.json';
diff --git a/api_docs/kbn_default_nav_ml.mdx b/api_docs/kbn_default_nav_ml.mdx
index 46926535b1dc2..723aa76fe7479 100644
--- a/api_docs/kbn_default_nav_ml.mdx
+++ b/api_docs/kbn_default_nav_ml.mdx
@@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-default-nav-ml
title: "@kbn/default-nav-ml"
image: https://source.unsplash.com/400x175/?github
description: API docs for the @kbn/default-nav-ml plugin
-date: 2023-09-28
+date: 2023-09-29
tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/default-nav-ml']
---
import kbnDefaultNavMlObj from './kbn_default_nav_ml.devdocs.json';
diff --git a/api_docs/kbn_dev_cli_errors.mdx b/api_docs/kbn_dev_cli_errors.mdx
index 1e62370f1b7e9..46ffe58d4a72d 100644
--- a/api_docs/kbn_dev_cli_errors.mdx
+++ b/api_docs/kbn_dev_cli_errors.mdx
@@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-dev-cli-errors
title: "@kbn/dev-cli-errors"
image: https://source.unsplash.com/400x175/?github
description: API docs for the @kbn/dev-cli-errors plugin
-date: 2023-09-28
+date: 2023-09-29
tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/dev-cli-errors']
---
import kbnDevCliErrorsObj from './kbn_dev_cli_errors.devdocs.json';
diff --git a/api_docs/kbn_dev_cli_runner.mdx b/api_docs/kbn_dev_cli_runner.mdx
index b744a4276ad00..cd2dd7e811430 100644
--- a/api_docs/kbn_dev_cli_runner.mdx
+++ b/api_docs/kbn_dev_cli_runner.mdx
@@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-dev-cli-runner
title: "@kbn/dev-cli-runner"
image: https://source.unsplash.com/400x175/?github
description: API docs for the @kbn/dev-cli-runner plugin
-date: 2023-09-28
+date: 2023-09-29
tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/dev-cli-runner']
---
import kbnDevCliRunnerObj from './kbn_dev_cli_runner.devdocs.json';
diff --git a/api_docs/kbn_dev_proc_runner.mdx b/api_docs/kbn_dev_proc_runner.mdx
index 9cecd22fdc35f..6678205080986 100644
--- a/api_docs/kbn_dev_proc_runner.mdx
+++ b/api_docs/kbn_dev_proc_runner.mdx
@@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-dev-proc-runner
title: "@kbn/dev-proc-runner"
image: https://source.unsplash.com/400x175/?github
description: API docs for the @kbn/dev-proc-runner plugin
-date: 2023-09-28
+date: 2023-09-29
tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/dev-proc-runner']
---
import kbnDevProcRunnerObj from './kbn_dev_proc_runner.devdocs.json';
diff --git a/api_docs/kbn_dev_utils.mdx b/api_docs/kbn_dev_utils.mdx
index 116e08ece3b4f..c71393e968224 100644
--- a/api_docs/kbn_dev_utils.mdx
+++ b/api_docs/kbn_dev_utils.mdx
@@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-dev-utils
title: "@kbn/dev-utils"
image: https://source.unsplash.com/400x175/?github
description: API docs for the @kbn/dev-utils plugin
-date: 2023-09-28
+date: 2023-09-29
tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/dev-utils']
---
import kbnDevUtilsObj from './kbn_dev_utils.devdocs.json';
diff --git a/api_docs/kbn_discover_utils.mdx b/api_docs/kbn_discover_utils.mdx
index 8e23446898bb5..2fc9d4f7a89b4 100644
--- a/api_docs/kbn_discover_utils.mdx
+++ b/api_docs/kbn_discover_utils.mdx
@@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-discover-utils
title: "@kbn/discover-utils"
image: https://source.unsplash.com/400x175/?github
description: API docs for the @kbn/discover-utils plugin
-date: 2023-09-28
+date: 2023-09-29
tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/discover-utils']
---
import kbnDiscoverUtilsObj from './kbn_discover_utils.devdocs.json';
diff --git a/api_docs/kbn_doc_links.mdx b/api_docs/kbn_doc_links.mdx
index 22f5ecedc367f..136ba4b0c21c3 100644
--- a/api_docs/kbn_doc_links.mdx
+++ b/api_docs/kbn_doc_links.mdx
@@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-doc-links
title: "@kbn/doc-links"
image: https://source.unsplash.com/400x175/?github
description: API docs for the @kbn/doc-links plugin
-date: 2023-09-28
+date: 2023-09-29
tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/doc-links']
---
import kbnDocLinksObj from './kbn_doc_links.devdocs.json';
diff --git a/api_docs/kbn_docs_utils.mdx b/api_docs/kbn_docs_utils.mdx
index bc589ba587925..50b119ba41e99 100644
--- a/api_docs/kbn_docs_utils.mdx
+++ b/api_docs/kbn_docs_utils.mdx
@@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-docs-utils
title: "@kbn/docs-utils"
image: https://source.unsplash.com/400x175/?github
description: API docs for the @kbn/docs-utils plugin
-date: 2023-09-28
+date: 2023-09-29
tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/docs-utils']
---
import kbnDocsUtilsObj from './kbn_docs_utils.devdocs.json';
diff --git a/api_docs/kbn_dom_drag_drop.mdx b/api_docs/kbn_dom_drag_drop.mdx
index bd8452f3a6102..b642b7946e3ea 100644
--- a/api_docs/kbn_dom_drag_drop.mdx
+++ b/api_docs/kbn_dom_drag_drop.mdx
@@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-dom-drag-drop
title: "@kbn/dom-drag-drop"
image: https://source.unsplash.com/400x175/?github
description: API docs for the @kbn/dom-drag-drop plugin
-date: 2023-09-28
+date: 2023-09-29
tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/dom-drag-drop']
---
import kbnDomDragDropObj from './kbn_dom_drag_drop.devdocs.json';
diff --git a/api_docs/kbn_ebt_tools.mdx b/api_docs/kbn_ebt_tools.mdx
index f886d9e1f72fe..e81b4fa73f615 100644
--- a/api_docs/kbn_ebt_tools.mdx
+++ b/api_docs/kbn_ebt_tools.mdx
@@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-ebt-tools
title: "@kbn/ebt-tools"
image: https://source.unsplash.com/400x175/?github
description: API docs for the @kbn/ebt-tools plugin
-date: 2023-09-28
+date: 2023-09-29
tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/ebt-tools']
---
import kbnEbtToolsObj from './kbn_ebt_tools.devdocs.json';
diff --git a/api_docs/kbn_ecs.mdx b/api_docs/kbn_ecs.mdx
index 531b4047d8102..f4d963b816f06 100644
--- a/api_docs/kbn_ecs.mdx
+++ b/api_docs/kbn_ecs.mdx
@@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-ecs
title: "@kbn/ecs"
image: https://source.unsplash.com/400x175/?github
description: API docs for the @kbn/ecs plugin
-date: 2023-09-28
+date: 2023-09-29
tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/ecs']
---
import kbnEcsObj from './kbn_ecs.devdocs.json';
diff --git a/api_docs/kbn_ecs_data_quality_dashboard.mdx b/api_docs/kbn_ecs_data_quality_dashboard.mdx
index da4278b0f24e0..91210949e7616 100644
--- a/api_docs/kbn_ecs_data_quality_dashboard.mdx
+++ b/api_docs/kbn_ecs_data_quality_dashboard.mdx
@@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-ecs-data-quality-dashboard
title: "@kbn/ecs-data-quality-dashboard"
image: https://source.unsplash.com/400x175/?github
description: API docs for the @kbn/ecs-data-quality-dashboard plugin
-date: 2023-09-28
+date: 2023-09-29
tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/ecs-data-quality-dashboard']
---
import kbnEcsDataQualityDashboardObj from './kbn_ecs_data_quality_dashboard.devdocs.json';
diff --git a/api_docs/kbn_elastic_assistant.mdx b/api_docs/kbn_elastic_assistant.mdx
index 66e87a962a939..e4616e38d7bfa 100644
--- a/api_docs/kbn_elastic_assistant.mdx
+++ b/api_docs/kbn_elastic_assistant.mdx
@@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-elastic-assistant
title: "@kbn/elastic-assistant"
image: https://source.unsplash.com/400x175/?github
description: API docs for the @kbn/elastic-assistant plugin
-date: 2023-09-28
+date: 2023-09-29
tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/elastic-assistant']
---
import kbnElasticAssistantObj from './kbn_elastic_assistant.devdocs.json';
diff --git a/api_docs/kbn_es.mdx b/api_docs/kbn_es.mdx
index a21f177dd1087..c4d0ef6962312 100644
--- a/api_docs/kbn_es.mdx
+++ b/api_docs/kbn_es.mdx
@@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-es
title: "@kbn/es"
image: https://source.unsplash.com/400x175/?github
description: API docs for the @kbn/es plugin
-date: 2023-09-28
+date: 2023-09-29
tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/es']
---
import kbnEsObj from './kbn_es.devdocs.json';
diff --git a/api_docs/kbn_es_archiver.mdx b/api_docs/kbn_es_archiver.mdx
index dfee656986ba3..80762f37ca6f1 100644
--- a/api_docs/kbn_es_archiver.mdx
+++ b/api_docs/kbn_es_archiver.mdx
@@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-es-archiver
title: "@kbn/es-archiver"
image: https://source.unsplash.com/400x175/?github
description: API docs for the @kbn/es-archiver plugin
-date: 2023-09-28
+date: 2023-09-29
tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/es-archiver']
---
import kbnEsArchiverObj from './kbn_es_archiver.devdocs.json';
diff --git a/api_docs/kbn_es_errors.mdx b/api_docs/kbn_es_errors.mdx
index 472297928e76c..2907bf47ab431 100644
--- a/api_docs/kbn_es_errors.mdx
+++ b/api_docs/kbn_es_errors.mdx
@@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-es-errors
title: "@kbn/es-errors"
image: https://source.unsplash.com/400x175/?github
description: API docs for the @kbn/es-errors plugin
-date: 2023-09-28
+date: 2023-09-29
tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/es-errors']
---
import kbnEsErrorsObj from './kbn_es_errors.devdocs.json';
diff --git a/api_docs/kbn_es_query.mdx b/api_docs/kbn_es_query.mdx
index a4dd3216a0b01..71facb56985d0 100644
--- a/api_docs/kbn_es_query.mdx
+++ b/api_docs/kbn_es_query.mdx
@@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-es-query
title: "@kbn/es-query"
image: https://source.unsplash.com/400x175/?github
description: API docs for the @kbn/es-query plugin
-date: 2023-09-28
+date: 2023-09-29
tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/es-query']
---
import kbnEsQueryObj from './kbn_es_query.devdocs.json';
diff --git a/api_docs/kbn_es_types.mdx b/api_docs/kbn_es_types.mdx
index 90a8ed9e98666..7936b0f8f1f1c 100644
--- a/api_docs/kbn_es_types.mdx
+++ b/api_docs/kbn_es_types.mdx
@@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-es-types
title: "@kbn/es-types"
image: https://source.unsplash.com/400x175/?github
description: API docs for the @kbn/es-types plugin
-date: 2023-09-28
+date: 2023-09-29
tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/es-types']
---
import kbnEsTypesObj from './kbn_es_types.devdocs.json';
diff --git a/api_docs/kbn_eslint_plugin_imports.mdx b/api_docs/kbn_eslint_plugin_imports.mdx
index 7e3a61cda6952..1f5f4fc5b97be 100644
--- a/api_docs/kbn_eslint_plugin_imports.mdx
+++ b/api_docs/kbn_eslint_plugin_imports.mdx
@@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-eslint-plugin-imports
title: "@kbn/eslint-plugin-imports"
image: https://source.unsplash.com/400x175/?github
description: API docs for the @kbn/eslint-plugin-imports plugin
-date: 2023-09-28
+date: 2023-09-29
tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/eslint-plugin-imports']
---
import kbnEslintPluginImportsObj from './kbn_eslint_plugin_imports.devdocs.json';
diff --git a/api_docs/kbn_event_annotation_common.mdx b/api_docs/kbn_event_annotation_common.mdx
index 6a2505c663d65..908935fb3ad9d 100644
--- a/api_docs/kbn_event_annotation_common.mdx
+++ b/api_docs/kbn_event_annotation_common.mdx
@@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-event-annotation-common
title: "@kbn/event-annotation-common"
image: https://source.unsplash.com/400x175/?github
description: API docs for the @kbn/event-annotation-common plugin
-date: 2023-09-28
+date: 2023-09-29
tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/event-annotation-common']
---
import kbnEventAnnotationCommonObj from './kbn_event_annotation_common.devdocs.json';
diff --git a/api_docs/kbn_event_annotation_components.mdx b/api_docs/kbn_event_annotation_components.mdx
index 4ff534569925c..37a70ef64fbf0 100644
--- a/api_docs/kbn_event_annotation_components.mdx
+++ b/api_docs/kbn_event_annotation_components.mdx
@@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-event-annotation-components
title: "@kbn/event-annotation-components"
image: https://source.unsplash.com/400x175/?github
description: API docs for the @kbn/event-annotation-components plugin
-date: 2023-09-28
+date: 2023-09-29
tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/event-annotation-components']
---
import kbnEventAnnotationComponentsObj from './kbn_event_annotation_components.devdocs.json';
diff --git a/api_docs/kbn_expandable_flyout.mdx b/api_docs/kbn_expandable_flyout.mdx
index 9f07c4635c4a7..f5830fef0e457 100644
--- a/api_docs/kbn_expandable_flyout.mdx
+++ b/api_docs/kbn_expandable_flyout.mdx
@@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-expandable-flyout
title: "@kbn/expandable-flyout"
image: https://source.unsplash.com/400x175/?github
description: API docs for the @kbn/expandable-flyout plugin
-date: 2023-09-28
+date: 2023-09-29
tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/expandable-flyout']
---
import kbnExpandableFlyoutObj from './kbn_expandable_flyout.devdocs.json';
diff --git a/api_docs/kbn_field_types.mdx b/api_docs/kbn_field_types.mdx
index 69ab90341b498..172d1601be401 100644
--- a/api_docs/kbn_field_types.mdx
+++ b/api_docs/kbn_field_types.mdx
@@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-field-types
title: "@kbn/field-types"
image: https://source.unsplash.com/400x175/?github
description: API docs for the @kbn/field-types plugin
-date: 2023-09-28
+date: 2023-09-29
tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/field-types']
---
import kbnFieldTypesObj from './kbn_field_types.devdocs.json';
diff --git a/api_docs/kbn_find_used_node_modules.mdx b/api_docs/kbn_find_used_node_modules.mdx
index f17ad7ae6202e..92fbe0bbd3f1e 100644
--- a/api_docs/kbn_find_used_node_modules.mdx
+++ b/api_docs/kbn_find_used_node_modules.mdx
@@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-find-used-node-modules
title: "@kbn/find-used-node-modules"
image: https://source.unsplash.com/400x175/?github
description: API docs for the @kbn/find-used-node-modules plugin
-date: 2023-09-28
+date: 2023-09-29
tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/find-used-node-modules']
---
import kbnFindUsedNodeModulesObj from './kbn_find_used_node_modules.devdocs.json';
diff --git a/api_docs/kbn_ftr_common_functional_services.mdx b/api_docs/kbn_ftr_common_functional_services.mdx
index 40777ac9193b4..286efea1b631c 100644
--- a/api_docs/kbn_ftr_common_functional_services.mdx
+++ b/api_docs/kbn_ftr_common_functional_services.mdx
@@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-ftr-common-functional-services
title: "@kbn/ftr-common-functional-services"
image: https://source.unsplash.com/400x175/?github
description: API docs for the @kbn/ftr-common-functional-services plugin
-date: 2023-09-28
+date: 2023-09-29
tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/ftr-common-functional-services']
---
import kbnFtrCommonFunctionalServicesObj from './kbn_ftr_common_functional_services.devdocs.json';
diff --git a/api_docs/kbn_generate.mdx b/api_docs/kbn_generate.mdx
index e343b48f3a7fc..01b83dc267fc5 100644
--- a/api_docs/kbn_generate.mdx
+++ b/api_docs/kbn_generate.mdx
@@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-generate
title: "@kbn/generate"
image: https://source.unsplash.com/400x175/?github
description: API docs for the @kbn/generate plugin
-date: 2023-09-28
+date: 2023-09-29
tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/generate']
---
import kbnGenerateObj from './kbn_generate.devdocs.json';
diff --git a/api_docs/kbn_generate_console_definitions.mdx b/api_docs/kbn_generate_console_definitions.mdx
index 9843c4d219c1e..9b98854e98509 100644
--- a/api_docs/kbn_generate_console_definitions.mdx
+++ b/api_docs/kbn_generate_console_definitions.mdx
@@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-generate-console-definitions
title: "@kbn/generate-console-definitions"
image: https://source.unsplash.com/400x175/?github
description: API docs for the @kbn/generate-console-definitions plugin
-date: 2023-09-28
+date: 2023-09-29
tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/generate-console-definitions']
---
import kbnGenerateConsoleDefinitionsObj from './kbn_generate_console_definitions.devdocs.json';
diff --git a/api_docs/kbn_generate_csv.mdx b/api_docs/kbn_generate_csv.mdx
index 79e1f9c19fb71..9fe22e68f2e53 100644
--- a/api_docs/kbn_generate_csv.mdx
+++ b/api_docs/kbn_generate_csv.mdx
@@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-generate-csv
title: "@kbn/generate-csv"
image: https://source.unsplash.com/400x175/?github
description: API docs for the @kbn/generate-csv plugin
-date: 2023-09-28
+date: 2023-09-29
tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/generate-csv']
---
import kbnGenerateCsvObj from './kbn_generate_csv.devdocs.json';
diff --git a/api_docs/kbn_generate_csv_types.mdx b/api_docs/kbn_generate_csv_types.mdx
index b9702b01d7c45..f132075bec29d 100644
--- a/api_docs/kbn_generate_csv_types.mdx
+++ b/api_docs/kbn_generate_csv_types.mdx
@@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-generate-csv-types
title: "@kbn/generate-csv-types"
image: https://source.unsplash.com/400x175/?github
description: API docs for the @kbn/generate-csv-types plugin
-date: 2023-09-28
+date: 2023-09-29
tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/generate-csv-types']
---
import kbnGenerateCsvTypesObj from './kbn_generate_csv_types.devdocs.json';
diff --git a/api_docs/kbn_guided_onboarding.mdx b/api_docs/kbn_guided_onboarding.mdx
index 071db8d4ad27d..a0cf51023448f 100644
--- a/api_docs/kbn_guided_onboarding.mdx
+++ b/api_docs/kbn_guided_onboarding.mdx
@@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-guided-onboarding
title: "@kbn/guided-onboarding"
image: https://source.unsplash.com/400x175/?github
description: API docs for the @kbn/guided-onboarding plugin
-date: 2023-09-28
+date: 2023-09-29
tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/guided-onboarding']
---
import kbnGuidedOnboardingObj from './kbn_guided_onboarding.devdocs.json';
diff --git a/api_docs/kbn_handlebars.mdx b/api_docs/kbn_handlebars.mdx
index ac79c85fa8ec6..a68b7d49ca68c 100644
--- a/api_docs/kbn_handlebars.mdx
+++ b/api_docs/kbn_handlebars.mdx
@@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-handlebars
title: "@kbn/handlebars"
image: https://source.unsplash.com/400x175/?github
description: API docs for the @kbn/handlebars plugin
-date: 2023-09-28
+date: 2023-09-29
tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/handlebars']
---
import kbnHandlebarsObj from './kbn_handlebars.devdocs.json';
diff --git a/api_docs/kbn_hapi_mocks.mdx b/api_docs/kbn_hapi_mocks.mdx
index dcc6fb20b9bcb..8bd961931dbdb 100644
--- a/api_docs/kbn_hapi_mocks.mdx
+++ b/api_docs/kbn_hapi_mocks.mdx
@@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-hapi-mocks
title: "@kbn/hapi-mocks"
image: https://source.unsplash.com/400x175/?github
description: API docs for the @kbn/hapi-mocks plugin
-date: 2023-09-28
+date: 2023-09-29
tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/hapi-mocks']
---
import kbnHapiMocksObj from './kbn_hapi_mocks.devdocs.json';
diff --git a/api_docs/kbn_health_gateway_server.mdx b/api_docs/kbn_health_gateway_server.mdx
index c8634f2261ce5..2be1caed5f96b 100644
--- a/api_docs/kbn_health_gateway_server.mdx
+++ b/api_docs/kbn_health_gateway_server.mdx
@@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-health-gateway-server
title: "@kbn/health-gateway-server"
image: https://source.unsplash.com/400x175/?github
description: API docs for the @kbn/health-gateway-server plugin
-date: 2023-09-28
+date: 2023-09-29
tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/health-gateway-server']
---
import kbnHealthGatewayServerObj from './kbn_health_gateway_server.devdocs.json';
diff --git a/api_docs/kbn_home_sample_data_card.mdx b/api_docs/kbn_home_sample_data_card.mdx
index d31168b65d591..a4940591dad6e 100644
--- a/api_docs/kbn_home_sample_data_card.mdx
+++ b/api_docs/kbn_home_sample_data_card.mdx
@@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-home-sample-data-card
title: "@kbn/home-sample-data-card"
image: https://source.unsplash.com/400x175/?github
description: API docs for the @kbn/home-sample-data-card plugin
-date: 2023-09-28
+date: 2023-09-29
tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/home-sample-data-card']
---
import kbnHomeSampleDataCardObj from './kbn_home_sample_data_card.devdocs.json';
diff --git a/api_docs/kbn_home_sample_data_tab.mdx b/api_docs/kbn_home_sample_data_tab.mdx
index d0fe5ae21bbd3..3806b3ccc74f4 100644
--- a/api_docs/kbn_home_sample_data_tab.mdx
+++ b/api_docs/kbn_home_sample_data_tab.mdx
@@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-home-sample-data-tab
title: "@kbn/home-sample-data-tab"
image: https://source.unsplash.com/400x175/?github
description: API docs for the @kbn/home-sample-data-tab plugin
-date: 2023-09-28
+date: 2023-09-29
tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/home-sample-data-tab']
---
import kbnHomeSampleDataTabObj from './kbn_home_sample_data_tab.devdocs.json';
diff --git a/api_docs/kbn_i18n.mdx b/api_docs/kbn_i18n.mdx
index 6365ba964cd7f..9f4326312c679 100644
--- a/api_docs/kbn_i18n.mdx
+++ b/api_docs/kbn_i18n.mdx
@@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-i18n
title: "@kbn/i18n"
image: https://source.unsplash.com/400x175/?github
description: API docs for the @kbn/i18n plugin
-date: 2023-09-28
+date: 2023-09-29
tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/i18n']
---
import kbnI18nObj from './kbn_i18n.devdocs.json';
diff --git a/api_docs/kbn_i18n_react.mdx b/api_docs/kbn_i18n_react.mdx
index 83826ec32c075..a7c3193494afc 100644
--- a/api_docs/kbn_i18n_react.mdx
+++ b/api_docs/kbn_i18n_react.mdx
@@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-i18n-react
title: "@kbn/i18n-react"
image: https://source.unsplash.com/400x175/?github
description: API docs for the @kbn/i18n-react plugin
-date: 2023-09-28
+date: 2023-09-29
tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/i18n-react']
---
import kbnI18nReactObj from './kbn_i18n_react.devdocs.json';
diff --git a/api_docs/kbn_import_resolver.mdx b/api_docs/kbn_import_resolver.mdx
index 4defa432ad86e..7555b145fd94a 100644
--- a/api_docs/kbn_import_resolver.mdx
+++ b/api_docs/kbn_import_resolver.mdx
@@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-import-resolver
title: "@kbn/import-resolver"
image: https://source.unsplash.com/400x175/?github
description: API docs for the @kbn/import-resolver plugin
-date: 2023-09-28
+date: 2023-09-29
tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/import-resolver']
---
import kbnImportResolverObj from './kbn_import_resolver.devdocs.json';
diff --git a/api_docs/kbn_infra_forge.mdx b/api_docs/kbn_infra_forge.mdx
index e02b981ea3546..089d05d8f7d78 100644
--- a/api_docs/kbn_infra_forge.mdx
+++ b/api_docs/kbn_infra_forge.mdx
@@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-infra-forge
title: "@kbn/infra-forge"
image: https://source.unsplash.com/400x175/?github
description: API docs for the @kbn/infra-forge plugin
-date: 2023-09-28
+date: 2023-09-29
tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/infra-forge']
---
import kbnInfraForgeObj from './kbn_infra_forge.devdocs.json';
diff --git a/api_docs/kbn_interpreter.mdx b/api_docs/kbn_interpreter.mdx
index 4abcf85aaf870..f8d89d50711a0 100644
--- a/api_docs/kbn_interpreter.mdx
+++ b/api_docs/kbn_interpreter.mdx
@@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-interpreter
title: "@kbn/interpreter"
image: https://source.unsplash.com/400x175/?github
description: API docs for the @kbn/interpreter plugin
-date: 2023-09-28
+date: 2023-09-29
tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/interpreter']
---
import kbnInterpreterObj from './kbn_interpreter.devdocs.json';
diff --git a/api_docs/kbn_io_ts_utils.mdx b/api_docs/kbn_io_ts_utils.mdx
index f0e6c22e99717..5dd1cc44caa8d 100644
--- a/api_docs/kbn_io_ts_utils.mdx
+++ b/api_docs/kbn_io_ts_utils.mdx
@@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-io-ts-utils
title: "@kbn/io-ts-utils"
image: https://source.unsplash.com/400x175/?github
description: API docs for the @kbn/io-ts-utils plugin
-date: 2023-09-28
+date: 2023-09-29
tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/io-ts-utils']
---
import kbnIoTsUtilsObj from './kbn_io_ts_utils.devdocs.json';
diff --git a/api_docs/kbn_jest_serializers.mdx b/api_docs/kbn_jest_serializers.mdx
index c25eb7c8bf940..17f274a3728b5 100644
--- a/api_docs/kbn_jest_serializers.mdx
+++ b/api_docs/kbn_jest_serializers.mdx
@@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-jest-serializers
title: "@kbn/jest-serializers"
image: https://source.unsplash.com/400x175/?github
description: API docs for the @kbn/jest-serializers plugin
-date: 2023-09-28
+date: 2023-09-29
tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/jest-serializers']
---
import kbnJestSerializersObj from './kbn_jest_serializers.devdocs.json';
diff --git a/api_docs/kbn_journeys.devdocs.json b/api_docs/kbn_journeys.devdocs.json
index 24a4280bfdb1a..fe8ff4a3f4d5e 100644
--- a/api_docs/kbn_journeys.devdocs.json
+++ b/api_docs/kbn_journeys.devdocs.json
@@ -276,13 +276,7 @@
],
"signature": [
"({ getService }: ",
- {
- "pluginId": "@kbn/ftr-common-functional-services",
- "scope": "common",
- "docId": "kibKbnFtrCommonFunctionalServicesPluginApi",
- "section": "def-common.FtrProviderContext",
- "text": "FtrProviderContext"
- },
+ "FtrProviderContext",
") => void"
],
"path": "packages/kbn-journeys/journey/journey.ts",
@@ -297,13 +291,7 @@
"label": "{ getService }",
"description": [],
"signature": [
- {
- "pluginId": "@kbn/ftr-common-functional-services",
- "scope": "common",
- "docId": "kibKbnFtrCommonFunctionalServicesPluginApi",
- "section": "def-common.FtrProviderContext",
- "text": "FtrProviderContext"
- }
+ "FtrProviderContext"
],
"path": "packages/kbn-journeys/journey/journey.ts",
"deprecated": false,
diff --git a/api_docs/kbn_journeys.mdx b/api_docs/kbn_journeys.mdx
index e94e0c092caae..60109153e09ab 100644
--- a/api_docs/kbn_journeys.mdx
+++ b/api_docs/kbn_journeys.mdx
@@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-journeys
title: "@kbn/journeys"
image: https://source.unsplash.com/400x175/?github
description: API docs for the @kbn/journeys plugin
-date: 2023-09-28
+date: 2023-09-29
tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/journeys']
---
import kbnJourneysObj from './kbn_journeys.devdocs.json';
@@ -21,7 +21,7 @@ Contact [@elastic/kibana-operations](https://github.com/orgs/elastic/teams/kiban
| Public API count | Any count | Items lacking comments | Missing exports |
|-------------------|-----------|------------------------|-----------------|
-| 85 | 0 | 77 | 5 |
+| 85 | 0 | 77 | 6 |
## Common
diff --git a/api_docs/kbn_json_ast.mdx b/api_docs/kbn_json_ast.mdx
index 2e7231863ff76..92e4e3b55fd0a 100644
--- a/api_docs/kbn_json_ast.mdx
+++ b/api_docs/kbn_json_ast.mdx
@@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-json-ast
title: "@kbn/json-ast"
image: https://source.unsplash.com/400x175/?github
description: API docs for the @kbn/json-ast plugin
-date: 2023-09-28
+date: 2023-09-29
tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/json-ast']
---
import kbnJsonAstObj from './kbn_json_ast.devdocs.json';
diff --git a/api_docs/kbn_kibana_manifest_schema.mdx b/api_docs/kbn_kibana_manifest_schema.mdx
index 8fd5a7ef11ae4..4884895d9a740 100644
--- a/api_docs/kbn_kibana_manifest_schema.mdx
+++ b/api_docs/kbn_kibana_manifest_schema.mdx
@@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-kibana-manifest-schema
title: "@kbn/kibana-manifest-schema"
image: https://source.unsplash.com/400x175/?github
description: API docs for the @kbn/kibana-manifest-schema plugin
-date: 2023-09-28
+date: 2023-09-29
tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/kibana-manifest-schema']
---
import kbnKibanaManifestSchemaObj from './kbn_kibana_manifest_schema.devdocs.json';
diff --git a/api_docs/kbn_language_documentation_popover.mdx b/api_docs/kbn_language_documentation_popover.mdx
index bdcf9b2f52415..8031cb830ad63 100644
--- a/api_docs/kbn_language_documentation_popover.mdx
+++ b/api_docs/kbn_language_documentation_popover.mdx
@@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-language-documentation-popover
title: "@kbn/language-documentation-popover"
image: https://source.unsplash.com/400x175/?github
description: API docs for the @kbn/language-documentation-popover plugin
-date: 2023-09-28
+date: 2023-09-29
tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/language-documentation-popover']
---
import kbnLanguageDocumentationPopoverObj from './kbn_language_documentation_popover.devdocs.json';
diff --git a/api_docs/kbn_lens_embeddable_utils.mdx b/api_docs/kbn_lens_embeddable_utils.mdx
index 9489ac900110d..d06fc4e82f387 100644
--- a/api_docs/kbn_lens_embeddable_utils.mdx
+++ b/api_docs/kbn_lens_embeddable_utils.mdx
@@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-lens-embeddable-utils
title: "@kbn/lens-embeddable-utils"
image: https://source.unsplash.com/400x175/?github
description: API docs for the @kbn/lens-embeddable-utils plugin
-date: 2023-09-28
+date: 2023-09-29
tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/lens-embeddable-utils']
---
import kbnLensEmbeddableUtilsObj from './kbn_lens_embeddable_utils.devdocs.json';
diff --git a/api_docs/kbn_logging.mdx b/api_docs/kbn_logging.mdx
index a0146c7960242..0da5205f99557 100644
--- a/api_docs/kbn_logging.mdx
+++ b/api_docs/kbn_logging.mdx
@@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-logging
title: "@kbn/logging"
image: https://source.unsplash.com/400x175/?github
description: API docs for the @kbn/logging plugin
-date: 2023-09-28
+date: 2023-09-29
tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/logging']
---
import kbnLoggingObj from './kbn_logging.devdocs.json';
diff --git a/api_docs/kbn_logging_mocks.mdx b/api_docs/kbn_logging_mocks.mdx
index b96907067c4db..c8931bc3b557b 100644
--- a/api_docs/kbn_logging_mocks.mdx
+++ b/api_docs/kbn_logging_mocks.mdx
@@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-logging-mocks
title: "@kbn/logging-mocks"
image: https://source.unsplash.com/400x175/?github
description: API docs for the @kbn/logging-mocks plugin
-date: 2023-09-28
+date: 2023-09-29
tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/logging-mocks']
---
import kbnLoggingMocksObj from './kbn_logging_mocks.devdocs.json';
diff --git a/api_docs/kbn_managed_vscode_config.mdx b/api_docs/kbn_managed_vscode_config.mdx
index e9feca276bc8e..b7e654a927bb1 100644
--- a/api_docs/kbn_managed_vscode_config.mdx
+++ b/api_docs/kbn_managed_vscode_config.mdx
@@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-managed-vscode-config
title: "@kbn/managed-vscode-config"
image: https://source.unsplash.com/400x175/?github
description: API docs for the @kbn/managed-vscode-config plugin
-date: 2023-09-28
+date: 2023-09-29
tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/managed-vscode-config']
---
import kbnManagedVscodeConfigObj from './kbn_managed_vscode_config.devdocs.json';
diff --git a/api_docs/kbn_management_cards_navigation.mdx b/api_docs/kbn_management_cards_navigation.mdx
index ec1bcf3885a36..c323548b3de0b 100644
--- a/api_docs/kbn_management_cards_navigation.mdx
+++ b/api_docs/kbn_management_cards_navigation.mdx
@@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-management-cards-navigation
title: "@kbn/management-cards-navigation"
image: https://source.unsplash.com/400x175/?github
description: API docs for the @kbn/management-cards-navigation plugin
-date: 2023-09-28
+date: 2023-09-29
tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/management-cards-navigation']
---
import kbnManagementCardsNavigationObj from './kbn_management_cards_navigation.devdocs.json';
diff --git a/api_docs/kbn_management_settings_components_field_category.devdocs.json b/api_docs/kbn_management_settings_components_field_category.devdocs.json
new file mode 100644
index 0000000000000..5489d44497e63
--- /dev/null
+++ b/api_docs/kbn_management_settings_components_field_category.devdocs.json
@@ -0,0 +1,569 @@
+{
+ "id": "@kbn/management-settings-components-field-category",
+ "client": {
+ "classes": [],
+ "functions": [],
+ "interfaces": [],
+ "enums": [],
+ "misc": [],
+ "objects": []
+ },
+ "server": {
+ "classes": [],
+ "functions": [],
+ "interfaces": [],
+ "enums": [],
+ "misc": [],
+ "objects": []
+ },
+ "common": {
+ "classes": [],
+ "functions": [
+ {
+ "parentPluginId": "@kbn/management-settings-components-field-category",
+ "id": "def-common.FieldCategories",
+ "type": "Function",
+ "tags": [],
+ "label": "FieldCategories",
+ "description": [
+ "\nConvenience component for displaying a set of {@link FieldCategory} components, given\na set of categorized fields.\n"
+ ],
+ "signature": [
+ "({ categorizedFields, unsavedChanges, onClearQuery, isSavingEnabled, onFieldChange, }: ",
+ {
+ "pluginId": "@kbn/management-settings-components-field-category",
+ "scope": "common",
+ "docId": "kibKbnManagementSettingsComponentsFieldCategoryPluginApi",
+ "section": "def-common.FieldCategoriesProps",
+ "text": "FieldCategoriesProps"
+ },
+ ") => JSX.Element"
+ ],
+ "path": "packages/kbn-management/settings/components/field_category/categories.tsx",
+ "deprecated": false,
+ "trackAdoption": false,
+ "children": [
+ {
+ "parentPluginId": "@kbn/management-settings-components-field-category",
+ "id": "def-common.FieldCategories.$1",
+ "type": "Object",
+ "tags": [],
+ "label": "{\n categorizedFields,\n unsavedChanges = {},\n onClearQuery,\n isSavingEnabled,\n onFieldChange,\n}",
+ "description": [],
+ "signature": [
+ {
+ "pluginId": "@kbn/management-settings-components-field-category",
+ "scope": "common",
+ "docId": "kibKbnManagementSettingsComponentsFieldCategoryPluginApi",
+ "section": "def-common.FieldCategoriesProps",
+ "text": "FieldCategoriesProps"
+ }
+ ],
+ "path": "packages/kbn-management/settings/components/field_category/categories.tsx",
+ "deprecated": false,
+ "trackAdoption": false,
+ "isRequired": true
+ }
+ ],
+ "returnComment": [],
+ "initialIsOpen": false
+ },
+ {
+ "parentPluginId": "@kbn/management-settings-components-field-category",
+ "id": "def-common.FieldCategory",
+ "type": "Function",
+ "tags": [],
+ "label": "FieldCategory",
+ "description": [
+ "\nComponent for displaying a container of fields pertaining to a single\ncategory."
+ ],
+ "signature": [
+ "(props: ",
+ {
+ "pluginId": "@kbn/management-settings-components-field-category",
+ "scope": "common",
+ "docId": "kibKbnManagementSettingsComponentsFieldCategoryPluginApi",
+ "section": "def-common.FieldCategoryProps",
+ "text": "FieldCategoryProps"
+ },
+ ") => JSX.Element"
+ ],
+ "path": "packages/kbn-management/settings/components/field_category/category.tsx",
+ "deprecated": false,
+ "trackAdoption": false,
+ "children": [
+ {
+ "parentPluginId": "@kbn/management-settings-components-field-category",
+ "id": "def-common.FieldCategory.$1",
+ "type": "Object",
+ "tags": [],
+ "label": "props",
+ "description": [
+ "- the props to pass to the {@link FieldCategory } component."
+ ],
+ "signature": [
+ {
+ "pluginId": "@kbn/management-settings-components-field-category",
+ "scope": "common",
+ "docId": "kibKbnManagementSettingsComponentsFieldCategoryPluginApi",
+ "section": "def-common.FieldCategoryProps",
+ "text": "FieldCategoryProps"
+ }
+ ],
+ "path": "packages/kbn-management/settings/components/field_category/category.tsx",
+ "deprecated": false,
+ "trackAdoption": false,
+ "isRequired": true
+ }
+ ],
+ "returnComment": [],
+ "initialIsOpen": false
+ },
+ {
+ "parentPluginId": "@kbn/management-settings-components-field-category",
+ "id": "def-common.FieldCategoryKibanaProvider",
+ "type": "Function",
+ "tags": [],
+ "label": "FieldCategoryKibanaProvider",
+ "description": [
+ "\nKibana-specific Provider that maps Kibana plugins and services to a {@link FieldCategoryProvider}."
+ ],
+ "signature": [
+ "React.FunctionComponent<",
+ {
+ "pluginId": "@kbn/management-settings-components-field-row",
+ "scope": "common",
+ "docId": "kibKbnManagementSettingsComponentsFieldRowPluginApi",
+ "section": "def-common.FieldRowKibanaDependencies",
+ "text": "FieldRowKibanaDependencies"
+ },
+ ">"
+ ],
+ "path": "packages/kbn-management/settings/components/field_category/services.tsx",
+ "deprecated": false,
+ "trackAdoption": false,
+ "returnComment": [],
+ "children": [
+ {
+ "parentPluginId": "@kbn/management-settings-components-field-category",
+ "id": "def-common.FieldCategoryKibanaProvider.$1",
+ "type": "CompoundType",
+ "tags": [],
+ "label": "props",
+ "description": [],
+ "signature": [
+ "P & { children?: React.ReactNode; }"
+ ],
+ "path": "node_modules/@types/react/index.d.ts",
+ "deprecated": false,
+ "trackAdoption": false
+ },
+ {
+ "parentPluginId": "@kbn/management-settings-components-field-category",
+ "id": "def-common.FieldCategoryKibanaProvider.$2",
+ "type": "Any",
+ "tags": [],
+ "label": "context",
+ "description": [],
+ "signature": [
+ "any"
+ ],
+ "path": "node_modules/@types/react/index.d.ts",
+ "deprecated": false,
+ "trackAdoption": false
+ }
+ ],
+ "initialIsOpen": false
+ },
+ {
+ "parentPluginId": "@kbn/management-settings-components-field-category",
+ "id": "def-common.FieldCategoryProvider",
+ "type": "Function",
+ "tags": [],
+ "label": "FieldCategoryProvider",
+ "description": [
+ "\nReact Provider that provides services to a {@link FieldCategory} component and its dependents."
+ ],
+ "signature": [
+ "({ children, ...services }: ",
+ {
+ "pluginId": "@kbn/management-settings-components-field-row",
+ "scope": "common",
+ "docId": "kibKbnManagementSettingsComponentsFieldRowPluginApi",
+ "section": "def-common.FieldRowProviderProps",
+ "text": "FieldRowProviderProps"
+ },
+ ") => JSX.Element"
+ ],
+ "path": "packages/kbn-management/settings/components/field_category/services.tsx",
+ "deprecated": false,
+ "trackAdoption": false,
+ "returnComment": [],
+ "children": [
+ {
+ "parentPluginId": "@kbn/management-settings-components-field-category",
+ "id": "def-common.FieldCategoryProvider.$1",
+ "type": "Object",
+ "tags": [],
+ "label": "__0",
+ "description": [],
+ "signature": [
+ {
+ "pluginId": "@kbn/management-settings-components-field-row",
+ "scope": "common",
+ "docId": "kibKbnManagementSettingsComponentsFieldRowPluginApi",
+ "section": "def-common.FieldRowProviderProps",
+ "text": "FieldRowProviderProps"
+ }
+ ],
+ "path": "packages/kbn-management/settings/components/field_row/services.tsx",
+ "deprecated": false,
+ "trackAdoption": false
+ }
+ ],
+ "initialIsOpen": false
+ }
+ ],
+ "interfaces": [
+ {
+ "parentPluginId": "@kbn/management-settings-components-field-category",
+ "id": "def-common.ClearQueryLinkProps",
+ "type": "Interface",
+ "tags": [],
+ "label": "ClearQueryLinkProps",
+ "description": [
+ "\nProps for the {@link ClearQueryLink} component."
+ ],
+ "path": "packages/kbn-management/settings/components/field_category/clear_query_link.tsx",
+ "deprecated": false,
+ "trackAdoption": false,
+ "children": [
+ {
+ "parentPluginId": "@kbn/management-settings-components-field-category",
+ "id": "def-common.ClearQueryLinkProps.fieldCount",
+ "type": "number",
+ "tags": [],
+ "label": "fieldCount",
+ "description": [
+ "The total number of fields in the category."
+ ],
+ "path": "packages/kbn-management/settings/components/field_category/clear_query_link.tsx",
+ "deprecated": false,
+ "trackAdoption": false
+ },
+ {
+ "parentPluginId": "@kbn/management-settings-components-field-category",
+ "id": "def-common.ClearQueryLinkProps.displayCount",
+ "type": "number",
+ "tags": [],
+ "label": "displayCount",
+ "description": [
+ "The number of fields currently being displayed."
+ ],
+ "path": "packages/kbn-management/settings/components/field_category/clear_query_link.tsx",
+ "deprecated": false,
+ "trackAdoption": false
+ },
+ {
+ "parentPluginId": "@kbn/management-settings-components-field-category",
+ "id": "def-common.ClearQueryLinkProps.onClearQuery",
+ "type": "Function",
+ "tags": [],
+ "label": "onClearQuery",
+ "description": [
+ "Handler to invoke when clearing the current filtering query."
+ ],
+ "signature": [
+ "() => void"
+ ],
+ "path": "packages/kbn-management/settings/components/field_category/clear_query_link.tsx",
+ "deprecated": false,
+ "trackAdoption": false,
+ "children": [],
+ "returnComment": []
+ }
+ ],
+ "initialIsOpen": false
+ },
+ {
+ "parentPluginId": "@kbn/management-settings-components-field-category",
+ "id": "def-common.FieldCategoriesProps",
+ "type": "Interface",
+ "tags": [],
+ "label": "FieldCategoriesProps",
+ "description": [
+ "\nProps for the {@link FieldCategories} component."
+ ],
+ "signature": [
+ {
+ "pluginId": "@kbn/management-settings-components-field-category",
+ "scope": "common",
+ "docId": "kibKbnManagementSettingsComponentsFieldCategoryPluginApi",
+ "section": "def-common.FieldCategoriesProps",
+ "text": "FieldCategoriesProps"
+ },
+ " extends Pick<",
+ {
+ "pluginId": "@kbn/management-settings-components-field-category",
+ "scope": "common",
+ "docId": "kibKbnManagementSettingsComponentsFieldCategoryPluginApi",
+ "section": "def-common.FieldCategoryProps",
+ "text": "FieldCategoryProps"
+ },
+ ", \"onClearQuery\">,Pick<",
+ {
+ "pluginId": "@kbn/management-settings-components-field-row",
+ "scope": "common",
+ "docId": "kibKbnManagementSettingsComponentsFieldRowPluginApi",
+ "section": "def-common.FieldRowProps",
+ "text": "FieldRowProps"
+ },
+ ", \"onFieldChange\" | \"isSavingEnabled\">"
+ ],
+ "path": "packages/kbn-management/settings/components/field_category/categories.tsx",
+ "deprecated": false,
+ "trackAdoption": false,
+ "children": [
+ {
+ "parentPluginId": "@kbn/management-settings-components-field-category",
+ "id": "def-common.FieldCategoriesProps.categorizedFields",
+ "type": "Object",
+ "tags": [],
+ "label": "categorizedFields",
+ "description": [
+ "Categorized fields for display."
+ ],
+ "signature": [
+ {
+ "pluginId": "@kbn/management-settings-types",
+ "scope": "common",
+ "docId": "kibKbnManagementSettingsTypesPluginApi",
+ "section": "def-common.CategorizedFields",
+ "text": "CategorizedFields"
+ }
+ ],
+ "path": "packages/kbn-management/settings/components/field_category/categories.tsx",
+ "deprecated": false,
+ "trackAdoption": false
+ },
+ {
+ "parentPluginId": "@kbn/management-settings-components-field-category",
+ "id": "def-common.FieldCategoriesProps.unsavedChanges",
+ "type": "Object",
+ "tags": [],
+ "label": "unsavedChanges",
+ "description": [
+ "And unsaved changes currently managed by the parent component."
+ ],
+ "signature": [
+ {
+ "pluginId": "@kbn/management-settings-types",
+ "scope": "common",
+ "docId": "kibKbnManagementSettingsTypesPluginApi",
+ "section": "def-common.UnsavedFieldChanges",
+ "text": "UnsavedFieldChanges"
+ },
+ " | undefined"
+ ],
+ "path": "packages/kbn-management/settings/components/field_category/categories.tsx",
+ "deprecated": false,
+ "trackAdoption": false
+ }
+ ],
+ "initialIsOpen": false
+ },
+ {
+ "parentPluginId": "@kbn/management-settings-components-field-category",
+ "id": "def-common.FieldCategoryProps",
+ "type": "Interface",
+ "tags": [],
+ "label": "FieldCategoryProps",
+ "description": [
+ "\nProps for a {@link FieldCategory} component."
+ ],
+ "signature": [
+ {
+ "pluginId": "@kbn/management-settings-components-field-category",
+ "scope": "common",
+ "docId": "kibKbnManagementSettingsComponentsFieldCategoryPluginApi",
+ "section": "def-common.FieldCategoryProps",
+ "text": "FieldCategoryProps"
+ },
+ " extends Pick<",
+ {
+ "pluginId": "@kbn/management-settings-components-field-category",
+ "scope": "common",
+ "docId": "kibKbnManagementSettingsComponentsFieldCategoryPluginApi",
+ "section": "def-common.ClearQueryLinkProps",
+ "text": "ClearQueryLinkProps"
+ },
+ ", \"onClearQuery\" | \"fieldCount\">"
+ ],
+ "path": "packages/kbn-management/settings/components/field_category/category.tsx",
+ "deprecated": false,
+ "trackAdoption": false,
+ "children": [
+ {
+ "parentPluginId": "@kbn/management-settings-components-field-category",
+ "id": "def-common.FieldCategoryProps.category",
+ "type": "string",
+ "tags": [],
+ "label": "category",
+ "description": [
+ "The name of the category."
+ ],
+ "path": "packages/kbn-management/settings/components/field_category/category.tsx",
+ "deprecated": false,
+ "trackAdoption": false
+ },
+ {
+ "parentPluginId": "@kbn/management-settings-components-field-category",
+ "id": "def-common.FieldCategoryProps.children",
+ "type": "CompoundType",
+ "tags": [],
+ "label": "children",
+ "description": [
+ "Children-- should be {@link FieldRow} components."
+ ],
+ "signature": [
+ "React.ReactElement<",
+ {
+ "pluginId": "@kbn/management-settings-components-field-row",
+ "scope": "common",
+ "docId": "kibKbnManagementSettingsComponentsFieldRowPluginApi",
+ "section": "def-common.FieldRowProps",
+ "text": "FieldRowProps"
+ },
+ ", \"FieldRow\"> | React.ReactElement<",
+ {
+ "pluginId": "@kbn/management-settings-components-field-row",
+ "scope": "common",
+ "docId": "kibKbnManagementSettingsComponentsFieldRowPluginApi",
+ "section": "def-common.FieldRowProps",
+ "text": "FieldRowProps"
+ },
+ ", \"FieldRow\">[]"
+ ],
+ "path": "packages/kbn-management/settings/components/field_category/category.tsx",
+ "deprecated": false,
+ "trackAdoption": false
+ }
+ ],
+ "initialIsOpen": false
+ },
+ {
+ "parentPluginId": "@kbn/management-settings-components-field-category",
+ "id": "def-common.FieldCategoryProviderProps",
+ "type": "Interface",
+ "tags": [],
+ "label": "FieldCategoryProviderProps",
+ "description": [
+ "\nProps for {@link FieldCategoryProvider}."
+ ],
+ "signature": [
+ {
+ "pluginId": "@kbn/management-settings-components-field-category",
+ "scope": "common",
+ "docId": "kibKbnManagementSettingsComponentsFieldCategoryPluginApi",
+ "section": "def-common.FieldCategoryProviderProps",
+ "text": "FieldCategoryProviderProps"
+ },
+ " extends ",
+ {
+ "pluginId": "@kbn/management-settings-components-field-row",
+ "scope": "common",
+ "docId": "kibKbnManagementSettingsComponentsFieldRowPluginApi",
+ "section": "def-common.FieldRowServices",
+ "text": "FieldRowServices"
+ }
+ ],
+ "path": "packages/kbn-management/settings/components/field_category/services.tsx",
+ "deprecated": false,
+ "trackAdoption": false,
+ "children": [
+ {
+ "parentPluginId": "@kbn/management-settings-components-field-category",
+ "id": "def-common.FieldCategoryProviderProps.children",
+ "type": "CompoundType",
+ "tags": [],
+ "label": "children",
+ "description": [],
+ "signature": [
+ "boolean | React.ReactChild | React.ReactFragment | React.ReactPortal | null | undefined"
+ ],
+ "path": "packages/kbn-management/settings/components/field_category/services.tsx",
+ "deprecated": false,
+ "trackAdoption": false
+ }
+ ],
+ "initialIsOpen": false
+ }
+ ],
+ "enums": [],
+ "misc": [
+ {
+ "parentPluginId": "@kbn/management-settings-components-field-category",
+ "id": "def-common.FieldCategoryKibanaDependencies",
+ "type": "Type",
+ "tags": [],
+ "label": "FieldCategoryKibanaDependencies",
+ "description": [
+ "\nAn interface containing a collection of Kibana plugins and services required to\nrender a {@link FieldCategory} component and its dependents."
+ ],
+ "signature": [
+ {
+ "pluginId": "@kbn/management-settings-components-field-row",
+ "scope": "common",
+ "docId": "kibKbnManagementSettingsComponentsFieldRowPluginApi",
+ "section": "def-common.KibanaDependencies",
+ "text": "KibanaDependencies"
+ },
+ " & ",
+ {
+ "pluginId": "@kbn/management-settings-components-field-input",
+ "scope": "common",
+ "docId": "kibKbnManagementSettingsComponentsFieldInputPluginApi",
+ "section": "def-common.FieldInputKibanaDependencies",
+ "text": "FieldInputKibanaDependencies"
+ }
+ ],
+ "path": "packages/kbn-management/settings/components/field_category/types.ts",
+ "deprecated": false,
+ "trackAdoption": false,
+ "initialIsOpen": false
+ },
+ {
+ "parentPluginId": "@kbn/management-settings-components-field-category",
+ "id": "def-common.FieldCategoryServices",
+ "type": "Type",
+ "tags": [],
+ "label": "FieldCategoryServices",
+ "description": [
+ "\nContextual services used by a {@link FieldCategory} component and its dependents."
+ ],
+ "signature": [
+ {
+ "pluginId": "@kbn/management-settings-components-field-input",
+ "scope": "common",
+ "docId": "kibKbnManagementSettingsComponentsFieldInputPluginApi",
+ "section": "def-common.FieldInputServices",
+ "text": "FieldInputServices"
+ },
+ " & ",
+ {
+ "pluginId": "@kbn/management-settings-components-field-row",
+ "scope": "common",
+ "docId": "kibKbnManagementSettingsComponentsFieldRowPluginApi",
+ "section": "def-common.Services",
+ "text": "Services"
+ }
+ ],
+ "path": "packages/kbn-management/settings/components/field_category/types.ts",
+ "deprecated": false,
+ "trackAdoption": false,
+ "initialIsOpen": false
+ }
+ ],
+ "objects": []
+ }
+}
\ No newline at end of file
diff --git a/api_docs/kbn_management_settings_components_field_category.mdx b/api_docs/kbn_management_settings_components_field_category.mdx
new file mode 100644
index 0000000000000..f60ad79408a16
--- /dev/null
+++ b/api_docs/kbn_management_settings_components_field_category.mdx
@@ -0,0 +1,36 @@
+---
+####
+#### This document is auto-generated and is meant to be viewed inside our experimental, new docs system.
+#### Reach out in #docs-engineering for more info.
+####
+id: kibKbnManagementSettingsComponentsFieldCategoryPluginApi
+slug: /kibana-dev-docs/api/kbn-management-settings-components-field-category
+title: "@kbn/management-settings-components-field-category"
+image: https://source.unsplash.com/400x175/?github
+description: API docs for the @kbn/management-settings-components-field-category plugin
+date: 2023-09-29
+tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/management-settings-components-field-category']
+---
+import kbnManagementSettingsComponentsFieldCategoryObj from './kbn_management_settings_components_field_category.devdocs.json';
+
+
+
+Contact [@elastic/platform-deployment-management](https://github.com/orgs/elastic/teams/platform-deployment-management) for questions regarding this plugin.
+
+**Code health stats**
+
+| Public API count | Any count | Items lacking comments | Missing exports |
+|-------------------|-----------|------------------------|-----------------|
+| 23 | 0 | 3 | 0 |
+
+## Common
+
+### Functions
+
+
+### Interfaces
+
+
+### Consts, variables and types
+
+
diff --git a/api_docs/kbn_management_settings_components_field_input.devdocs.json b/api_docs/kbn_management_settings_components_field_input.devdocs.json
index 3209874b93880..0111313c651b3 100644
--- a/api_docs/kbn_management_settings_components_field_input.devdocs.json
+++ b/api_docs/kbn_management_settings_components_field_input.devdocs.json
@@ -193,12 +193,12 @@
},
{
"parentPluginId": "@kbn/management-settings-components-field-input",
- "id": "def-common.FieldInputProps.onChange",
+ "id": "def-common.FieldInputProps.onInputChange",
"type": "Function",
"tags": [],
- "label": "onChange",
+ "label": "onInputChange",
"description": [
- "The `onChange` handler for the input."
+ "The `onInputChange` handler for the input."
],
"signature": [
"(change?: ",
@@ -218,7 +218,7 @@
"children": [
{
"parentPluginId": "@kbn/management-settings-components-field-input",
- "id": "def-common.FieldInputProps.onChange.$1",
+ "id": "def-common.FieldInputProps.onInputChange.$1",
"type": "Object",
"tags": [],
"label": "change",
@@ -410,12 +410,12 @@
},
{
"parentPluginId": "@kbn/management-settings-components-field-input",
- "id": "def-common.InputProps.onChange",
+ "id": "def-common.InputProps.onInputChange",
"type": "Function",
"tags": [],
- "label": "onChange",
+ "label": "onInputChange",
"description": [
- "The `onChange` handler."
+ "The `onInputChange` handler."
],
"signature": [
"(change?: ",
@@ -435,7 +435,7 @@
"children": [
{
"parentPluginId": "@kbn/management-settings-components-field-input",
- "id": "def-common.InputProps.onChange.$1",
+ "id": "def-common.InputProps.onInputChange.$1",
"type": "Object",
"tags": [],
"label": "change",
diff --git a/api_docs/kbn_management_settings_components_field_input.mdx b/api_docs/kbn_management_settings_components_field_input.mdx
index 148678fdfa01f..b8ca13d665b69 100644
--- a/api_docs/kbn_management_settings_components_field_input.mdx
+++ b/api_docs/kbn_management_settings_components_field_input.mdx
@@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-management-settings-components-field-input
title: "@kbn/management-settings-components-field-input"
image: https://source.unsplash.com/400x175/?github
description: API docs for the @kbn/management-settings-components-field-input plugin
-date: 2023-09-28
+date: 2023-09-29
tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/management-settings-components-field-input']
---
import kbnManagementSettingsComponentsFieldInputObj from './kbn_management_settings_components_field_input.devdocs.json';
diff --git a/api_docs/kbn_management_settings_components_field_row.devdocs.json b/api_docs/kbn_management_settings_components_field_row.devdocs.json
index c1f7c49ed5c67..e41adc6ff1164 100644
--- a/api_docs/kbn_management_settings_components_field_row.devdocs.json
+++ b/api_docs/kbn_management_settings_components_field_row.devdocs.json
@@ -224,12 +224,12 @@
},
{
"parentPluginId": "@kbn/management-settings-components-field-row",
- "id": "def-common.FieldRowProps.onChange",
+ "id": "def-common.FieldRowProps.onFieldChange",
"type": "Function",
"tags": [],
- "label": "onChange",
+ "label": "onFieldChange",
"description": [
- "The {@link OnChangeFn} handler."
+ "The {@link OnInputChangeFn} handler."
],
"signature": [
"(id: string, change?: ",
@@ -257,18 +257,18 @@
"children": [
{
"parentPluginId": "@kbn/management-settings-components-field-row",
- "id": "def-common.FieldRowProps.onChange.$1",
+ "id": "def-common.FieldRowProps.onFieldChange.$1",
"type": "string",
"tags": [],
"label": "id",
"description": [],
- "path": "packages/kbn-management/settings/components/field_row/types.ts",
+ "path": "packages/kbn-management/settings/types/index.ts",
"deprecated": false,
"trackAdoption": false
},
{
"parentPluginId": "@kbn/management-settings-components-field-row",
- "id": "def-common.FieldRowProps.onChange.$2",
+ "id": "def-common.FieldRowProps.onFieldChange.$2",
"type": "Object",
"tags": [],
"label": "change",
@@ -283,7 +283,7 @@
},
" | undefined"
],
- "path": "packages/kbn-management/settings/components/field_row/types.ts",
+ "path": "packages/kbn-management/settings/types/index.ts",
"deprecated": false,
"trackAdoption": false
}
@@ -530,70 +530,6 @@
"deprecated": false,
"trackAdoption": false,
"initialIsOpen": false
- },
- {
- "parentPluginId": "@kbn/management-settings-components-field-row",
- "id": "def-common.RowOnChangeFn",
- "type": "Type",
- "tags": [],
- "label": "RowOnChangeFn",
- "description": [
- "\nAn `onChange` handler for a {@link FieldRow} component."
- ],
- "signature": [
- "(id: string, change?: ",
- {
- "pluginId": "@kbn/management-settings-types",
- "scope": "common",
- "docId": "kibKbnManagementSettingsTypesPluginApi",
- "section": "def-common.UnsavedFieldChange",
- "text": "UnsavedFieldChange"
- },
- " | undefined) => void"
- ],
- "path": "packages/kbn-management/settings/components/field_row/types.ts",
- "deprecated": false,
- "trackAdoption": false,
- "returnComment": [],
- "children": [
- {
- "parentPluginId": "@kbn/management-settings-components-field-row",
- "id": "def-common.RowOnChangeFn.$1",
- "type": "string",
- "tags": [],
- "label": "id",
- "description": [
- "A unique id corresponding to the particular setting being changed."
- ],
- "path": "packages/kbn-management/settings/components/field_row/types.ts",
- "deprecated": false,
- "trackAdoption": false
- },
- {
- "parentPluginId": "@kbn/management-settings-components-field-row",
- "id": "def-common.RowOnChangeFn.$2",
- "type": "Object",
- "tags": [],
- "label": "change",
- "description": [
- "The {@link UnsavedFieldChange } corresponding to any unsaved change to the field."
- ],
- "signature": [
- {
- "pluginId": "@kbn/management-settings-types",
- "scope": "common",
- "docId": "kibKbnManagementSettingsTypesPluginApi",
- "section": "def-common.UnsavedFieldChange",
- "text": "UnsavedFieldChange"
- },
- " | undefined"
- ],
- "path": "packages/kbn-management/settings/components/field_row/types.ts",
- "deprecated": false,
- "trackAdoption": false
- }
- ],
- "initialIsOpen": false
}
],
"objects": []
diff --git a/api_docs/kbn_management_settings_components_field_row.mdx b/api_docs/kbn_management_settings_components_field_row.mdx
index 6fe1b473d3b0c..623b3aa9bf02e 100644
--- a/api_docs/kbn_management_settings_components_field_row.mdx
+++ b/api_docs/kbn_management_settings_components_field_row.mdx
@@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-management-settings-components-field-row
title: "@kbn/management-settings-components-field-row"
image: https://source.unsplash.com/400x175/?github
description: API docs for the @kbn/management-settings-components-field-row plugin
-date: 2023-09-28
+date: 2023-09-29
tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/management-settings-components-field-row']
---
import kbnManagementSettingsComponentsFieldRowObj from './kbn_management_settings_components_field_row.devdocs.json';
@@ -21,7 +21,7 @@ Contact [@elastic/platform-deployment-management](https://github.com/orgs/elasti
| Public API count | Any count | Items lacking comments | Missing exports |
|-------------------|-----------|------------------------|-----------------|
-| 26 | 0 | 7 | 0 |
+| 23 | 0 | 7 | 0 |
## Common
diff --git a/api_docs/kbn_management_settings_components_form.mdx b/api_docs/kbn_management_settings_components_form.mdx
index 91c5441bebc84..c51ef707e7061 100644
--- a/api_docs/kbn_management_settings_components_form.mdx
+++ b/api_docs/kbn_management_settings_components_form.mdx
@@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-management-settings-components-form
title: "@kbn/management-settings-components-form"
image: https://source.unsplash.com/400x175/?github
description: API docs for the @kbn/management-settings-components-form plugin
-date: 2023-09-28
+date: 2023-09-29
tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/management-settings-components-form']
---
import kbnManagementSettingsComponentsFormObj from './kbn_management_settings_components_form.devdocs.json';
diff --git a/api_docs/kbn_management_settings_field_definition.mdx b/api_docs/kbn_management_settings_field_definition.mdx
index 23a1088ee7ef3..9e6532a974c2a 100644
--- a/api_docs/kbn_management_settings_field_definition.mdx
+++ b/api_docs/kbn_management_settings_field_definition.mdx
@@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-management-settings-field-definition
title: "@kbn/management-settings-field-definition"
image: https://source.unsplash.com/400x175/?github
description: API docs for the @kbn/management-settings-field-definition plugin
-date: 2023-09-28
+date: 2023-09-29
tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/management-settings-field-definition']
---
import kbnManagementSettingsFieldDefinitionObj from './kbn_management_settings_field_definition.devdocs.json';
diff --git a/api_docs/kbn_management_settings_ids.mdx b/api_docs/kbn_management_settings_ids.mdx
index 30bd79f1b35ae..e59878f21b59a 100644
--- a/api_docs/kbn_management_settings_ids.mdx
+++ b/api_docs/kbn_management_settings_ids.mdx
@@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-management-settings-ids
title: "@kbn/management-settings-ids"
image: https://source.unsplash.com/400x175/?github
description: API docs for the @kbn/management-settings-ids plugin
-date: 2023-09-28
+date: 2023-09-29
tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/management-settings-ids']
---
import kbnManagementSettingsIdsObj from './kbn_management_settings_ids.devdocs.json';
diff --git a/api_docs/kbn_management_settings_section_registry.mdx b/api_docs/kbn_management_settings_section_registry.mdx
index dd8052acb1b98..0ff86124acdb0 100644
--- a/api_docs/kbn_management_settings_section_registry.mdx
+++ b/api_docs/kbn_management_settings_section_registry.mdx
@@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-management-settings-section-registry
title: "@kbn/management-settings-section-registry"
image: https://source.unsplash.com/400x175/?github
description: API docs for the @kbn/management-settings-section-registry plugin
-date: 2023-09-28
+date: 2023-09-29
tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/management-settings-section-registry']
---
import kbnManagementSettingsSectionRegistryObj from './kbn_management_settings_section_registry.devdocs.json';
diff --git a/api_docs/kbn_management_settings_types.devdocs.json b/api_docs/kbn_management_settings_types.devdocs.json
index 1cb92153d5159..c4ac18ed37f62 100644
--- a/api_docs/kbn_management_settings_types.devdocs.json
+++ b/api_docs/kbn_management_settings_types.devdocs.json
@@ -20,6 +20,50 @@
"classes": [],
"functions": [],
"interfaces": [
+ {
+ "parentPluginId": "@kbn/management-settings-types",
+ "id": "def-common.CategorizedFields",
+ "type": "Interface",
+ "tags": [],
+ "label": "CategorizedFields",
+ "description": [],
+ "path": "packages/kbn-management/settings/types/category.ts",
+ "deprecated": false,
+ "trackAdoption": false,
+ "children": [
+ {
+ "parentPluginId": "@kbn/management-settings-types",
+ "id": "def-common.CategorizedFields.Unnamed",
+ "type": "IndexSignature",
+ "tags": [],
+ "label": "[category: string]: { count: number; fields: FieldDefinition[]; }",
+ "description": [],
+ "signature": [
+ "[category: string]: { count: number; fields: ",
+ {
+ "pluginId": "@kbn/management-settings-types",
+ "scope": "common",
+ "docId": "kibKbnManagementSettingsTypesPluginApi",
+ "section": "def-common.FieldDefinition",
+ "text": "FieldDefinition"
+ },
+ "<",
+ {
+ "pluginId": "@kbn/core-ui-settings-common",
+ "scope": "common",
+ "docId": "kibKbnCoreUiSettingsCommonPluginApi",
+ "section": "def-common.UiSettingsType",
+ "text": "UiSettingsType"
+ },
+ ", string | number | boolean | (string | number)[] | null | undefined>[]; }"
+ ],
+ "path": "packages/kbn-management/settings/types/category.ts",
+ "deprecated": false,
+ "trackAdoption": false
+ }
+ ],
+ "initialIsOpen": false
+ },
{
"parentPluginId": "@kbn/management-settings-types",
"id": "def-common.FieldDefinition",
@@ -1267,10 +1311,74 @@
},
{
"parentPluginId": "@kbn/management-settings-types",
- "id": "def-common.OnChangeFn",
+ "id": "def-common.OnFieldChangeFn",
"type": "Type",
"tags": [],
- "label": "OnChangeFn",
+ "label": "OnFieldChangeFn",
+ "description": [
+ "\nAn `onFieldChange` handler when a Field changes."
+ ],
+ "signature": [
+ "(id: string, change?: ",
+ {
+ "pluginId": "@kbn/management-settings-types",
+ "scope": "common",
+ "docId": "kibKbnManagementSettingsTypesPluginApi",
+ "section": "def-common.UnsavedFieldChange",
+ "text": "UnsavedFieldChange"
+ },
+ " | undefined) => void"
+ ],
+ "path": "packages/kbn-management/settings/types/index.ts",
+ "deprecated": false,
+ "trackAdoption": false,
+ "returnComment": [],
+ "children": [
+ {
+ "parentPluginId": "@kbn/management-settings-types",
+ "id": "def-common.OnFieldChangeFn.$1",
+ "type": "string",
+ "tags": [],
+ "label": "id",
+ "description": [
+ "A unique id corresponding to the particular setting being changed."
+ ],
+ "path": "packages/kbn-management/settings/types/index.ts",
+ "deprecated": false,
+ "trackAdoption": false
+ },
+ {
+ "parentPluginId": "@kbn/management-settings-types",
+ "id": "def-common.OnFieldChangeFn.$2",
+ "type": "Object",
+ "tags": [],
+ "label": "change",
+ "description": [
+ "The {@link UnsavedFieldChange } corresponding to any unsaved change to the field."
+ ],
+ "signature": [
+ {
+ "pluginId": "@kbn/management-settings-types",
+ "scope": "common",
+ "docId": "kibKbnManagementSettingsTypesPluginApi",
+ "section": "def-common.UnsavedFieldChange",
+ "text": "UnsavedFieldChange"
+ },
+ " | undefined"
+ ],
+ "path": "packages/kbn-management/settings/types/index.ts",
+ "deprecated": false,
+ "trackAdoption": false
+ }
+ ],
+ "initialIsOpen": false
+ },
+ {
+ "parentPluginId": "@kbn/management-settings-types",
+ "id": "def-common.OnInputChangeFn",
+ "type": "Type",
+ "tags": [],
+ "label": "OnInputChangeFn",
"description": [
"\nA function that is called when the value of a {@link FieldInput} changes."
],
@@ -1292,7 +1400,7 @@
"children": [
{
"parentPluginId": "@kbn/management-settings-types",
- "id": "def-common.OnChangeFn.$1",
+ "id": "def-common.OnInputChangeFn.$1",
"type": "Object",
"tags": [],
"label": "change",
@@ -1608,6 +1716,37 @@
"trackAdoption": false,
"initialIsOpen": false
},
+ {
+ "parentPluginId": "@kbn/management-settings-types",
+ "id": "def-common.UnsavedFieldChanges",
+ "type": "Type",
+ "tags": [],
+ "label": "UnsavedFieldChanges",
+ "description": [],
+ "signature": [
+ "{ [x: string]: ",
+ {
+ "pluginId": "@kbn/management-settings-types",
+ "scope": "common",
+ "docId": "kibKbnManagementSettingsTypesPluginApi",
+ "section": "def-common.UnsavedFieldChange",
+ "text": "UnsavedFieldChange"
+ },
+ "<",
+ {
+ "pluginId": "@kbn/core-ui-settings-common",
+ "scope": "common",
+ "docId": "kibKbnCoreUiSettingsCommonPluginApi",
+ "section": "def-common.UiSettingsType",
+ "text": "UiSettingsType"
+ },
+ ">; }"
+ ],
+ "path": "packages/kbn-management/settings/types/unsaved_change.ts",
+ "deprecated": false,
+ "trackAdoption": false,
+ "initialIsOpen": false
+ },
{
"parentPluginId": "@kbn/management-settings-types",
"id": "def-common.Value",
diff --git a/api_docs/kbn_management_settings_types.mdx b/api_docs/kbn_management_settings_types.mdx
index 4cdcb7214472a..8c87ae69ad7da 100644
--- a/api_docs/kbn_management_settings_types.mdx
+++ b/api_docs/kbn_management_settings_types.mdx
@@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-management-settings-types
title: "@kbn/management-settings-types"
image: https://source.unsplash.com/400x175/?github
description: API docs for the @kbn/management-settings-types plugin
-date: 2023-09-28
+date: 2023-09-29
tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/management-settings-types']
---
import kbnManagementSettingsTypesObj from './kbn_management_settings_types.devdocs.json';
@@ -21,7 +21,7 @@ Contact [@elastic/platform-deployment-management](https://github.com/orgs/elasti
| Public API count | Any count | Items lacking comments | Missing exports |
|-------------------|-----------|------------------------|-----------------|
-| 75 | 0 | 0 | 0 |
+| 81 | 0 | 3 | 0 |
## Common
diff --git a/api_docs/kbn_management_settings_utilities.devdocs.json b/api_docs/kbn_management_settings_utilities.devdocs.json
index 5412a77029610..b443c15d3ee17 100644
--- a/api_docs/kbn_management_settings_utilities.devdocs.json
+++ b/api_docs/kbn_management_settings_utilities.devdocs.json
@@ -19,6 +19,110 @@
"common": {
"classes": [],
"functions": [
+ {
+ "parentPluginId": "@kbn/management-settings-utilities",
+ "id": "def-common.categorizeFields",
+ "type": "Function",
+ "tags": [],
+ "label": "categorizeFields",
+ "description": [],
+ "signature": [
+ "(fields: ",
+ {
+ "pluginId": "@kbn/management-settings-types",
+ "scope": "common",
+ "docId": "kibKbnManagementSettingsTypesPluginApi",
+ "section": "def-common.FieldDefinition",
+ "text": "FieldDefinition"
+ },
+ "<",
+ {
+ "pluginId": "@kbn/core-ui-settings-common",
+ "scope": "common",
+ "docId": "kibKbnCoreUiSettingsCommonPluginApi",
+ "section": "def-common.UiSettingsType",
+ "text": "UiSettingsType"
+ },
+ ", string | number | boolean | (string | number)[] | null | undefined>[]) => ",
+ {
+ "pluginId": "@kbn/management-settings-types",
+ "scope": "common",
+ "docId": "kibKbnManagementSettingsTypesPluginApi",
+ "section": "def-common.CategorizedFields",
+ "text": "CategorizedFields"
+ }
+ ],
+ "path": "packages/kbn-management/settings/utilities/category/categorize_fields.ts",
+ "deprecated": false,
+ "trackAdoption": false,
+ "children": [
+ {
+ "parentPluginId": "@kbn/management-settings-utilities",
+ "id": "def-common.categorizeFields.$1",
+ "type": "Array",
+ "tags": [],
+ "label": "fields",
+ "description": [],
+ "signature": [
+ {
+ "pluginId": "@kbn/management-settings-types",
+ "scope": "common",
+ "docId": "kibKbnManagementSettingsTypesPluginApi",
+ "section": "def-common.FieldDefinition",
+ "text": "FieldDefinition"
+ },
+ "<",
+ {
+ "pluginId": "@kbn/core-ui-settings-common",
+ "scope": "common",
+ "docId": "kibKbnCoreUiSettingsCommonPluginApi",
+ "section": "def-common.UiSettingsType",
+ "text": "UiSettingsType"
+ },
+ ", string | number | boolean | (string | number)[] | null | undefined>[]"
+ ],
+ "path": "packages/kbn-management/settings/utilities/category/categorize_fields.ts",
+ "deprecated": false,
+ "trackAdoption": false,
+ "isRequired": true
+ }
+ ],
+ "returnComment": [],
+ "initialIsOpen": false
+ },
+ {
+ "parentPluginId": "@kbn/management-settings-utilities",
+ "id": "def-common.getCategoryName",
+ "type": "Function",
+ "tags": [],
+ "label": "getCategoryName",
+ "description": [],
+ "signature": [
+ "(category: string | undefined) => string"
+ ],
+ "path": "packages/kbn-management/settings/utilities/category/get_category_name.ts",
+ "deprecated": false,
+ "trackAdoption": false,
+ "children": [
+ {
+ "parentPluginId": "@kbn/management-settings-utilities",
+ "id": "def-common.getCategoryName.$1",
+ "type": "string",
+ "tags": [],
+ "label": "category",
+ "description": [],
+ "signature": [
+ "string | undefined"
+ ],
+ "path": "packages/kbn-management/settings/utilities/category/get_category_name.ts",
+ "deprecated": false,
+ "trackAdoption": false,
+ "isRequired": false
+ }
+ ],
+ "returnComment": [],
+ "initialIsOpen": false
+ },
{
"parentPluginId": "@kbn/management-settings-utilities",
"id": "def-common.getFieldInputValue",
@@ -948,7 +1052,7 @@
"tags": [],
"label": "useUpdate",
"description": [
- "\nHook to provide a standard {@link OnChangeFn} that will send an update to the\nfield.\n"
+ "\nHook to provide a standard {@link OnInputChangeFn} that will send an update to the\nfield.\n"
],
"signature": [
""
],
@@ -1007,7 +1111,7 @@
}
],
"returnComment": [
- "An {@link OnChangeFn } that will send an update to the field."
+ "An {@link OnInputChangeFn } that will send an update to the field."
],
"initialIsOpen": false
}
@@ -1036,12 +1140,12 @@
"children": [
{
"parentPluginId": "@kbn/management-settings-utilities",
- "id": "def-common.UseUpdateParameters.onChange",
+ "id": "def-common.UseUpdateParameters.onInputChange",
"type": "Function",
"tags": [],
- "label": "onChange",
+ "label": "onInputChange",
"description": [
- "The {@link OnChangeFn} to invoke."
+ "The {@link OnInputChangeFn} to invoke."
],
"signature": [
"(change?: ",
@@ -1061,7 +1165,7 @@
"children": [
{
"parentPluginId": "@kbn/management-settings-utilities",
- "id": "def-common.UseUpdateParameters.onChange.$1",
+ "id": "def-common.UseUpdateParameters.onInputChange.$1",
"type": "Object",
"tags": [],
"label": "change",
diff --git a/api_docs/kbn_management_settings_utilities.mdx b/api_docs/kbn_management_settings_utilities.mdx
index 9b7e11335d67a..0f38cb53fefcd 100644
--- a/api_docs/kbn_management_settings_utilities.mdx
+++ b/api_docs/kbn_management_settings_utilities.mdx
@@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-management-settings-utilities
title: "@kbn/management-settings-utilities"
image: https://source.unsplash.com/400x175/?github
description: API docs for the @kbn/management-settings-utilities plugin
-date: 2023-09-28
+date: 2023-09-29
tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/management-settings-utilities']
---
import kbnManagementSettingsUtilitiesObj from './kbn_management_settings_utilities.devdocs.json';
@@ -21,7 +21,7 @@ Contact [@elastic/platform-deployment-management](https://github.com/orgs/elasti
| Public API count | Any count | Items lacking comments | Missing exports |
|-------------------|-----------|------------------------|-----------------|
-| 50 | 0 | 2 | 0 |
+| 54 | 0 | 6 | 0 |
## Common
diff --git a/api_docs/kbn_management_storybook_config.mdx b/api_docs/kbn_management_storybook_config.mdx
index 4ad452c18fe8d..083b61fb6bdb8 100644
--- a/api_docs/kbn_management_storybook_config.mdx
+++ b/api_docs/kbn_management_storybook_config.mdx
@@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-management-storybook-config
title: "@kbn/management-storybook-config"
image: https://source.unsplash.com/400x175/?github
description: API docs for the @kbn/management-storybook-config plugin
-date: 2023-09-28
+date: 2023-09-29
tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/management-storybook-config']
---
import kbnManagementStorybookConfigObj from './kbn_management_storybook_config.devdocs.json';
diff --git a/api_docs/kbn_mapbox_gl.mdx b/api_docs/kbn_mapbox_gl.mdx
index be8f0fec4c0a4..864edee504b59 100644
--- a/api_docs/kbn_mapbox_gl.mdx
+++ b/api_docs/kbn_mapbox_gl.mdx
@@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-mapbox-gl
title: "@kbn/mapbox-gl"
image: https://source.unsplash.com/400x175/?github
description: API docs for the @kbn/mapbox-gl plugin
-date: 2023-09-28
+date: 2023-09-29
tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/mapbox-gl']
---
import kbnMapboxGlObj from './kbn_mapbox_gl.devdocs.json';
diff --git a/api_docs/kbn_maps_vector_tile_utils.mdx b/api_docs/kbn_maps_vector_tile_utils.mdx
index 171172230f811..c3d3e2317a749 100644
--- a/api_docs/kbn_maps_vector_tile_utils.mdx
+++ b/api_docs/kbn_maps_vector_tile_utils.mdx
@@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-maps-vector-tile-utils
title: "@kbn/maps-vector-tile-utils"
image: https://source.unsplash.com/400x175/?github
description: API docs for the @kbn/maps-vector-tile-utils plugin
-date: 2023-09-28
+date: 2023-09-29
tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/maps-vector-tile-utils']
---
import kbnMapsVectorTileUtilsObj from './kbn_maps_vector_tile_utils.devdocs.json';
diff --git a/api_docs/kbn_ml_agg_utils.mdx b/api_docs/kbn_ml_agg_utils.mdx
index 54c67af908275..7cde657693b7d 100644
--- a/api_docs/kbn_ml_agg_utils.mdx
+++ b/api_docs/kbn_ml_agg_utils.mdx
@@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-ml-agg-utils
title: "@kbn/ml-agg-utils"
image: https://source.unsplash.com/400x175/?github
description: API docs for the @kbn/ml-agg-utils plugin
-date: 2023-09-28
+date: 2023-09-29
tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/ml-agg-utils']
---
import kbnMlAggUtilsObj from './kbn_ml_agg_utils.devdocs.json';
diff --git a/api_docs/kbn_ml_anomaly_utils.mdx b/api_docs/kbn_ml_anomaly_utils.mdx
index 0c892a58f1818..3046aace99741 100644
--- a/api_docs/kbn_ml_anomaly_utils.mdx
+++ b/api_docs/kbn_ml_anomaly_utils.mdx
@@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-ml-anomaly-utils
title: "@kbn/ml-anomaly-utils"
image: https://source.unsplash.com/400x175/?github
description: API docs for the @kbn/ml-anomaly-utils plugin
-date: 2023-09-28
+date: 2023-09-29
tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/ml-anomaly-utils']
---
import kbnMlAnomalyUtilsObj from './kbn_ml_anomaly_utils.devdocs.json';
diff --git a/api_docs/kbn_ml_category_validator.mdx b/api_docs/kbn_ml_category_validator.mdx
index bb895312ff958..608f604dc1bb8 100644
--- a/api_docs/kbn_ml_category_validator.mdx
+++ b/api_docs/kbn_ml_category_validator.mdx
@@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-ml-category-validator
title: "@kbn/ml-category-validator"
image: https://source.unsplash.com/400x175/?github
description: API docs for the @kbn/ml-category-validator plugin
-date: 2023-09-28
+date: 2023-09-29
tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/ml-category-validator']
---
import kbnMlCategoryValidatorObj from './kbn_ml_category_validator.devdocs.json';
diff --git a/api_docs/kbn_ml_chi2test.mdx b/api_docs/kbn_ml_chi2test.mdx
index e6db0c8150575..6fcc0ae3533e6 100644
--- a/api_docs/kbn_ml_chi2test.mdx
+++ b/api_docs/kbn_ml_chi2test.mdx
@@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-ml-chi2test
title: "@kbn/ml-chi2test"
image: https://source.unsplash.com/400x175/?github
description: API docs for the @kbn/ml-chi2test plugin
-date: 2023-09-28
+date: 2023-09-29
tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/ml-chi2test']
---
import kbnMlChi2testObj from './kbn_ml_chi2test.devdocs.json';
diff --git a/api_docs/kbn_ml_data_frame_analytics_utils.mdx b/api_docs/kbn_ml_data_frame_analytics_utils.mdx
index 08aff6980d248..c38aa26fb6746 100644
--- a/api_docs/kbn_ml_data_frame_analytics_utils.mdx
+++ b/api_docs/kbn_ml_data_frame_analytics_utils.mdx
@@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-ml-data-frame-analytics-utils
title: "@kbn/ml-data-frame-analytics-utils"
image: https://source.unsplash.com/400x175/?github
description: API docs for the @kbn/ml-data-frame-analytics-utils plugin
-date: 2023-09-28
+date: 2023-09-29
tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/ml-data-frame-analytics-utils']
---
import kbnMlDataFrameAnalyticsUtilsObj from './kbn_ml_data_frame_analytics_utils.devdocs.json';
diff --git a/api_docs/kbn_ml_data_grid.mdx b/api_docs/kbn_ml_data_grid.mdx
index 4133de8b78c3c..d0538d1d60ca0 100644
--- a/api_docs/kbn_ml_data_grid.mdx
+++ b/api_docs/kbn_ml_data_grid.mdx
@@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-ml-data-grid
title: "@kbn/ml-data-grid"
image: https://source.unsplash.com/400x175/?github
description: API docs for the @kbn/ml-data-grid plugin
-date: 2023-09-28
+date: 2023-09-29
tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/ml-data-grid']
---
import kbnMlDataGridObj from './kbn_ml_data_grid.devdocs.json';
diff --git a/api_docs/kbn_ml_date_picker.mdx b/api_docs/kbn_ml_date_picker.mdx
index 65355d8ab5c04..dd49227cd2a8e 100644
--- a/api_docs/kbn_ml_date_picker.mdx
+++ b/api_docs/kbn_ml_date_picker.mdx
@@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-ml-date-picker
title: "@kbn/ml-date-picker"
image: https://source.unsplash.com/400x175/?github
description: API docs for the @kbn/ml-date-picker plugin
-date: 2023-09-28
+date: 2023-09-29
tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/ml-date-picker']
---
import kbnMlDatePickerObj from './kbn_ml_date_picker.devdocs.json';
diff --git a/api_docs/kbn_ml_date_utils.mdx b/api_docs/kbn_ml_date_utils.mdx
index 9b406da6dcad9..da9794499f023 100644
--- a/api_docs/kbn_ml_date_utils.mdx
+++ b/api_docs/kbn_ml_date_utils.mdx
@@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-ml-date-utils
title: "@kbn/ml-date-utils"
image: https://source.unsplash.com/400x175/?github
description: API docs for the @kbn/ml-date-utils plugin
-date: 2023-09-28
+date: 2023-09-29
tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/ml-date-utils']
---
import kbnMlDateUtilsObj from './kbn_ml_date_utils.devdocs.json';
diff --git a/api_docs/kbn_ml_error_utils.mdx b/api_docs/kbn_ml_error_utils.mdx
index 22ad62d73b583..37871b7fc2d07 100644
--- a/api_docs/kbn_ml_error_utils.mdx
+++ b/api_docs/kbn_ml_error_utils.mdx
@@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-ml-error-utils
title: "@kbn/ml-error-utils"
image: https://source.unsplash.com/400x175/?github
description: API docs for the @kbn/ml-error-utils plugin
-date: 2023-09-28
+date: 2023-09-29
tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/ml-error-utils']
---
import kbnMlErrorUtilsObj from './kbn_ml_error_utils.devdocs.json';
diff --git a/api_docs/kbn_ml_in_memory_table.mdx b/api_docs/kbn_ml_in_memory_table.mdx
index 77bf076f4abfd..38c65cb482dd8 100644
--- a/api_docs/kbn_ml_in_memory_table.mdx
+++ b/api_docs/kbn_ml_in_memory_table.mdx
@@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-ml-in-memory-table
title: "@kbn/ml-in-memory-table"
image: https://source.unsplash.com/400x175/?github
description: API docs for the @kbn/ml-in-memory-table plugin
-date: 2023-09-28
+date: 2023-09-29
tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/ml-in-memory-table']
---
import kbnMlInMemoryTableObj from './kbn_ml_in_memory_table.devdocs.json';
diff --git a/api_docs/kbn_ml_is_defined.mdx b/api_docs/kbn_ml_is_defined.mdx
index 07d9aedac5526..80f18b3a38fa4 100644
--- a/api_docs/kbn_ml_is_defined.mdx
+++ b/api_docs/kbn_ml_is_defined.mdx
@@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-ml-is-defined
title: "@kbn/ml-is-defined"
image: https://source.unsplash.com/400x175/?github
description: API docs for the @kbn/ml-is-defined plugin
-date: 2023-09-28
+date: 2023-09-29
tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/ml-is-defined']
---
import kbnMlIsDefinedObj from './kbn_ml_is_defined.devdocs.json';
diff --git a/api_docs/kbn_ml_is_populated_object.mdx b/api_docs/kbn_ml_is_populated_object.mdx
index b24f60582ea29..45fdaed1a1d1a 100644
--- a/api_docs/kbn_ml_is_populated_object.mdx
+++ b/api_docs/kbn_ml_is_populated_object.mdx
@@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-ml-is-populated-object
title: "@kbn/ml-is-populated-object"
image: https://source.unsplash.com/400x175/?github
description: API docs for the @kbn/ml-is-populated-object plugin
-date: 2023-09-28
+date: 2023-09-29
tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/ml-is-populated-object']
---
import kbnMlIsPopulatedObjectObj from './kbn_ml_is_populated_object.devdocs.json';
diff --git a/api_docs/kbn_ml_kibana_theme.mdx b/api_docs/kbn_ml_kibana_theme.mdx
index 445daff4e58f6..dc9836770aa04 100644
--- a/api_docs/kbn_ml_kibana_theme.mdx
+++ b/api_docs/kbn_ml_kibana_theme.mdx
@@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-ml-kibana-theme
title: "@kbn/ml-kibana-theme"
image: https://source.unsplash.com/400x175/?github
description: API docs for the @kbn/ml-kibana-theme plugin
-date: 2023-09-28
+date: 2023-09-29
tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/ml-kibana-theme']
---
import kbnMlKibanaThemeObj from './kbn_ml_kibana_theme.devdocs.json';
diff --git a/api_docs/kbn_ml_local_storage.mdx b/api_docs/kbn_ml_local_storage.mdx
index 1e8eef4aafa4a..196c5eaad86ca 100644
--- a/api_docs/kbn_ml_local_storage.mdx
+++ b/api_docs/kbn_ml_local_storage.mdx
@@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-ml-local-storage
title: "@kbn/ml-local-storage"
image: https://source.unsplash.com/400x175/?github
description: API docs for the @kbn/ml-local-storage plugin
-date: 2023-09-28
+date: 2023-09-29
tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/ml-local-storage']
---
import kbnMlLocalStorageObj from './kbn_ml_local_storage.devdocs.json';
diff --git a/api_docs/kbn_ml_nested_property.mdx b/api_docs/kbn_ml_nested_property.mdx
index 5c55088883f20..3cae9cbc51cad 100644
--- a/api_docs/kbn_ml_nested_property.mdx
+++ b/api_docs/kbn_ml_nested_property.mdx
@@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-ml-nested-property
title: "@kbn/ml-nested-property"
image: https://source.unsplash.com/400x175/?github
description: API docs for the @kbn/ml-nested-property plugin
-date: 2023-09-28
+date: 2023-09-29
tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/ml-nested-property']
---
import kbnMlNestedPropertyObj from './kbn_ml_nested_property.devdocs.json';
diff --git a/api_docs/kbn_ml_number_utils.mdx b/api_docs/kbn_ml_number_utils.mdx
index 7b21c59ef5a46..8f412c9a0cc72 100644
--- a/api_docs/kbn_ml_number_utils.mdx
+++ b/api_docs/kbn_ml_number_utils.mdx
@@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-ml-number-utils
title: "@kbn/ml-number-utils"
image: https://source.unsplash.com/400x175/?github
description: API docs for the @kbn/ml-number-utils plugin
-date: 2023-09-28
+date: 2023-09-29
tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/ml-number-utils']
---
import kbnMlNumberUtilsObj from './kbn_ml_number_utils.devdocs.json';
diff --git a/api_docs/kbn_ml_query_utils.mdx b/api_docs/kbn_ml_query_utils.mdx
index 57446eff69ef4..fffaf0f85bc79 100644
--- a/api_docs/kbn_ml_query_utils.mdx
+++ b/api_docs/kbn_ml_query_utils.mdx
@@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-ml-query-utils
title: "@kbn/ml-query-utils"
image: https://source.unsplash.com/400x175/?github
description: API docs for the @kbn/ml-query-utils plugin
-date: 2023-09-28
+date: 2023-09-29
tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/ml-query-utils']
---
import kbnMlQueryUtilsObj from './kbn_ml_query_utils.devdocs.json';
diff --git a/api_docs/kbn_ml_random_sampler_utils.mdx b/api_docs/kbn_ml_random_sampler_utils.mdx
index bcae0b67f88b0..07fbd73031b21 100644
--- a/api_docs/kbn_ml_random_sampler_utils.mdx
+++ b/api_docs/kbn_ml_random_sampler_utils.mdx
@@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-ml-random-sampler-utils
title: "@kbn/ml-random-sampler-utils"
image: https://source.unsplash.com/400x175/?github
description: API docs for the @kbn/ml-random-sampler-utils plugin
-date: 2023-09-28
+date: 2023-09-29
tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/ml-random-sampler-utils']
---
import kbnMlRandomSamplerUtilsObj from './kbn_ml_random_sampler_utils.devdocs.json';
diff --git a/api_docs/kbn_ml_route_utils.mdx b/api_docs/kbn_ml_route_utils.mdx
index 3eefcc9e9ca40..c4ef5249fef01 100644
--- a/api_docs/kbn_ml_route_utils.mdx
+++ b/api_docs/kbn_ml_route_utils.mdx
@@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-ml-route-utils
title: "@kbn/ml-route-utils"
image: https://source.unsplash.com/400x175/?github
description: API docs for the @kbn/ml-route-utils plugin
-date: 2023-09-28
+date: 2023-09-29
tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/ml-route-utils']
---
import kbnMlRouteUtilsObj from './kbn_ml_route_utils.devdocs.json';
diff --git a/api_docs/kbn_ml_runtime_field_utils.mdx b/api_docs/kbn_ml_runtime_field_utils.mdx
index e4f86dcbb89a8..c84f96606da67 100644
--- a/api_docs/kbn_ml_runtime_field_utils.mdx
+++ b/api_docs/kbn_ml_runtime_field_utils.mdx
@@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-ml-runtime-field-utils
title: "@kbn/ml-runtime-field-utils"
image: https://source.unsplash.com/400x175/?github
description: API docs for the @kbn/ml-runtime-field-utils plugin
-date: 2023-09-28
+date: 2023-09-29
tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/ml-runtime-field-utils']
---
import kbnMlRuntimeFieldUtilsObj from './kbn_ml_runtime_field_utils.devdocs.json';
diff --git a/api_docs/kbn_ml_string_hash.mdx b/api_docs/kbn_ml_string_hash.mdx
index af3dab5b7ccd8..983f230906b4a 100644
--- a/api_docs/kbn_ml_string_hash.mdx
+++ b/api_docs/kbn_ml_string_hash.mdx
@@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-ml-string-hash
title: "@kbn/ml-string-hash"
image: https://source.unsplash.com/400x175/?github
description: API docs for the @kbn/ml-string-hash plugin
-date: 2023-09-28
+date: 2023-09-29
tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/ml-string-hash']
---
import kbnMlStringHashObj from './kbn_ml_string_hash.devdocs.json';
diff --git a/api_docs/kbn_ml_trained_models_utils.mdx b/api_docs/kbn_ml_trained_models_utils.mdx
index 27108572f4e4b..60203a7bdf744 100644
--- a/api_docs/kbn_ml_trained_models_utils.mdx
+++ b/api_docs/kbn_ml_trained_models_utils.mdx
@@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-ml-trained-models-utils
title: "@kbn/ml-trained-models-utils"
image: https://source.unsplash.com/400x175/?github
description: API docs for the @kbn/ml-trained-models-utils plugin
-date: 2023-09-28
+date: 2023-09-29
tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/ml-trained-models-utils']
---
import kbnMlTrainedModelsUtilsObj from './kbn_ml_trained_models_utils.devdocs.json';
diff --git a/api_docs/kbn_ml_url_state.mdx b/api_docs/kbn_ml_url_state.mdx
index d9f4892631de7..8030c55f05a4b 100644
--- a/api_docs/kbn_ml_url_state.mdx
+++ b/api_docs/kbn_ml_url_state.mdx
@@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-ml-url-state
title: "@kbn/ml-url-state"
image: https://source.unsplash.com/400x175/?github
description: API docs for the @kbn/ml-url-state plugin
-date: 2023-09-28
+date: 2023-09-29
tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/ml-url-state']
---
import kbnMlUrlStateObj from './kbn_ml_url_state.devdocs.json';
diff --git a/api_docs/kbn_monaco.mdx b/api_docs/kbn_monaco.mdx
index 699938fc3fbe3..2ae8a0a5385ee 100644
--- a/api_docs/kbn_monaco.mdx
+++ b/api_docs/kbn_monaco.mdx
@@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-monaco
title: "@kbn/monaco"
image: https://source.unsplash.com/400x175/?github
description: API docs for the @kbn/monaco plugin
-date: 2023-09-28
+date: 2023-09-29
tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/monaco']
---
import kbnMonacoObj from './kbn_monaco.devdocs.json';
diff --git a/api_docs/kbn_object_versioning.mdx b/api_docs/kbn_object_versioning.mdx
index 61e53db7164ca..3e3e9c2f1eee7 100644
--- a/api_docs/kbn_object_versioning.mdx
+++ b/api_docs/kbn_object_versioning.mdx
@@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-object-versioning
title: "@kbn/object-versioning"
image: https://source.unsplash.com/400x175/?github
description: API docs for the @kbn/object-versioning plugin
-date: 2023-09-28
+date: 2023-09-29
tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/object-versioning']
---
import kbnObjectVersioningObj from './kbn_object_versioning.devdocs.json';
diff --git a/api_docs/kbn_observability_alert_details.mdx b/api_docs/kbn_observability_alert_details.mdx
index db29880d10a29..94d09b3992ba4 100644
--- a/api_docs/kbn_observability_alert_details.mdx
+++ b/api_docs/kbn_observability_alert_details.mdx
@@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-observability-alert-details
title: "@kbn/observability-alert-details"
image: https://source.unsplash.com/400x175/?github
description: API docs for the @kbn/observability-alert-details plugin
-date: 2023-09-28
+date: 2023-09-29
tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/observability-alert-details']
---
import kbnObservabilityAlertDetailsObj from './kbn_observability_alert_details.devdocs.json';
diff --git a/api_docs/kbn_openapi_generator.mdx b/api_docs/kbn_openapi_generator.mdx
index e34b9e16604cb..a8c0daf05a769 100644
--- a/api_docs/kbn_openapi_generator.mdx
+++ b/api_docs/kbn_openapi_generator.mdx
@@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-openapi-generator
title: "@kbn/openapi-generator"
image: https://source.unsplash.com/400x175/?github
description: API docs for the @kbn/openapi-generator plugin
-date: 2023-09-28
+date: 2023-09-29
tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/openapi-generator']
---
import kbnOpenapiGeneratorObj from './kbn_openapi_generator.devdocs.json';
diff --git a/api_docs/kbn_optimizer.mdx b/api_docs/kbn_optimizer.mdx
index a70d81ee2c979..ed38d77779844 100644
--- a/api_docs/kbn_optimizer.mdx
+++ b/api_docs/kbn_optimizer.mdx
@@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-optimizer
title: "@kbn/optimizer"
image: https://source.unsplash.com/400x175/?github
description: API docs for the @kbn/optimizer plugin
-date: 2023-09-28
+date: 2023-09-29
tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/optimizer']
---
import kbnOptimizerObj from './kbn_optimizer.devdocs.json';
diff --git a/api_docs/kbn_optimizer_webpack_helpers.mdx b/api_docs/kbn_optimizer_webpack_helpers.mdx
index 5bb7a5a3a3c9f..3fbd1fa558d96 100644
--- a/api_docs/kbn_optimizer_webpack_helpers.mdx
+++ b/api_docs/kbn_optimizer_webpack_helpers.mdx
@@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-optimizer-webpack-helpers
title: "@kbn/optimizer-webpack-helpers"
image: https://source.unsplash.com/400x175/?github
description: API docs for the @kbn/optimizer-webpack-helpers plugin
-date: 2023-09-28
+date: 2023-09-29
tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/optimizer-webpack-helpers']
---
import kbnOptimizerWebpackHelpersObj from './kbn_optimizer_webpack_helpers.devdocs.json';
diff --git a/api_docs/kbn_osquery_io_ts_types.mdx b/api_docs/kbn_osquery_io_ts_types.mdx
index 1d4e68e64d45c..79192eb71b7e2 100644
--- a/api_docs/kbn_osquery_io_ts_types.mdx
+++ b/api_docs/kbn_osquery_io_ts_types.mdx
@@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-osquery-io-ts-types
title: "@kbn/osquery-io-ts-types"
image: https://source.unsplash.com/400x175/?github
description: API docs for the @kbn/osquery-io-ts-types plugin
-date: 2023-09-28
+date: 2023-09-29
tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/osquery-io-ts-types']
---
import kbnOsqueryIoTsTypesObj from './kbn_osquery_io_ts_types.devdocs.json';
diff --git a/api_docs/kbn_performance_testing_dataset_extractor.mdx b/api_docs/kbn_performance_testing_dataset_extractor.mdx
index 878129557b2d4..73ee007b9cb3b 100644
--- a/api_docs/kbn_performance_testing_dataset_extractor.mdx
+++ b/api_docs/kbn_performance_testing_dataset_extractor.mdx
@@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-performance-testing-dataset-extractor
title: "@kbn/performance-testing-dataset-extractor"
image: https://source.unsplash.com/400x175/?github
description: API docs for the @kbn/performance-testing-dataset-extractor plugin
-date: 2023-09-28
+date: 2023-09-29
tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/performance-testing-dataset-extractor']
---
import kbnPerformanceTestingDatasetExtractorObj from './kbn_performance_testing_dataset_extractor.devdocs.json';
diff --git a/api_docs/kbn_plugin_generator.mdx b/api_docs/kbn_plugin_generator.mdx
index 082f1de03f775..60f6a7ab452bb 100644
--- a/api_docs/kbn_plugin_generator.mdx
+++ b/api_docs/kbn_plugin_generator.mdx
@@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-plugin-generator
title: "@kbn/plugin-generator"
image: https://source.unsplash.com/400x175/?github
description: API docs for the @kbn/plugin-generator plugin
-date: 2023-09-28
+date: 2023-09-29
tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/plugin-generator']
---
import kbnPluginGeneratorObj from './kbn_plugin_generator.devdocs.json';
diff --git a/api_docs/kbn_plugin_helpers.mdx b/api_docs/kbn_plugin_helpers.mdx
index 56b6a83cce3a3..d58ebc476ebc1 100644
--- a/api_docs/kbn_plugin_helpers.mdx
+++ b/api_docs/kbn_plugin_helpers.mdx
@@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-plugin-helpers
title: "@kbn/plugin-helpers"
image: https://source.unsplash.com/400x175/?github
description: API docs for the @kbn/plugin-helpers plugin
-date: 2023-09-28
+date: 2023-09-29
tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/plugin-helpers']
---
import kbnPluginHelpersObj from './kbn_plugin_helpers.devdocs.json';
diff --git a/api_docs/kbn_profiling_utils.mdx b/api_docs/kbn_profiling_utils.mdx
index 3ad2e3cf41108..ed4465de6cf4d 100644
--- a/api_docs/kbn_profiling_utils.mdx
+++ b/api_docs/kbn_profiling_utils.mdx
@@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-profiling-utils
title: "@kbn/profiling-utils"
image: https://source.unsplash.com/400x175/?github
description: API docs for the @kbn/profiling-utils plugin
-date: 2023-09-28
+date: 2023-09-29
tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/profiling-utils']
---
import kbnProfilingUtilsObj from './kbn_profiling_utils.devdocs.json';
diff --git a/api_docs/kbn_random_sampling.mdx b/api_docs/kbn_random_sampling.mdx
index 3179689b14c3f..65a5d07e4b570 100644
--- a/api_docs/kbn_random_sampling.mdx
+++ b/api_docs/kbn_random_sampling.mdx
@@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-random-sampling
title: "@kbn/random-sampling"
image: https://source.unsplash.com/400x175/?github
description: API docs for the @kbn/random-sampling plugin
-date: 2023-09-28
+date: 2023-09-29
tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/random-sampling']
---
import kbnRandomSamplingObj from './kbn_random_sampling.devdocs.json';
diff --git a/api_docs/kbn_react_field.mdx b/api_docs/kbn_react_field.mdx
index 8a2d417fae7f3..4839b9481d219 100644
--- a/api_docs/kbn_react_field.mdx
+++ b/api_docs/kbn_react_field.mdx
@@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-react-field
title: "@kbn/react-field"
image: https://source.unsplash.com/400x175/?github
description: API docs for the @kbn/react-field plugin
-date: 2023-09-28
+date: 2023-09-29
tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/react-field']
---
import kbnReactFieldObj from './kbn_react_field.devdocs.json';
diff --git a/api_docs/kbn_react_kibana_context_common.mdx b/api_docs/kbn_react_kibana_context_common.mdx
index 1876ea26da9e7..17eb17dd82a96 100644
--- a/api_docs/kbn_react_kibana_context_common.mdx
+++ b/api_docs/kbn_react_kibana_context_common.mdx
@@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-react-kibana-context-common
title: "@kbn/react-kibana-context-common"
image: https://source.unsplash.com/400x175/?github
description: API docs for the @kbn/react-kibana-context-common plugin
-date: 2023-09-28
+date: 2023-09-29
tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/react-kibana-context-common']
---
import kbnReactKibanaContextCommonObj from './kbn_react_kibana_context_common.devdocs.json';
diff --git a/api_docs/kbn_react_kibana_context_render.mdx b/api_docs/kbn_react_kibana_context_render.mdx
index cc294d648fc00..70cb410c7a0c5 100644
--- a/api_docs/kbn_react_kibana_context_render.mdx
+++ b/api_docs/kbn_react_kibana_context_render.mdx
@@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-react-kibana-context-render
title: "@kbn/react-kibana-context-render"
image: https://source.unsplash.com/400x175/?github
description: API docs for the @kbn/react-kibana-context-render plugin
-date: 2023-09-28
+date: 2023-09-29
tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/react-kibana-context-render']
---
import kbnReactKibanaContextRenderObj from './kbn_react_kibana_context_render.devdocs.json';
diff --git a/api_docs/kbn_react_kibana_context_root.mdx b/api_docs/kbn_react_kibana_context_root.mdx
index 7aa5a465ee3d6..c9e8b32593c6b 100644
--- a/api_docs/kbn_react_kibana_context_root.mdx
+++ b/api_docs/kbn_react_kibana_context_root.mdx
@@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-react-kibana-context-root
title: "@kbn/react-kibana-context-root"
image: https://source.unsplash.com/400x175/?github
description: API docs for the @kbn/react-kibana-context-root plugin
-date: 2023-09-28
+date: 2023-09-29
tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/react-kibana-context-root']
---
import kbnReactKibanaContextRootObj from './kbn_react_kibana_context_root.devdocs.json';
diff --git a/api_docs/kbn_react_kibana_context_styled.mdx b/api_docs/kbn_react_kibana_context_styled.mdx
index f0b1e85101131..6fb6a39070c85 100644
--- a/api_docs/kbn_react_kibana_context_styled.mdx
+++ b/api_docs/kbn_react_kibana_context_styled.mdx
@@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-react-kibana-context-styled
title: "@kbn/react-kibana-context-styled"
image: https://source.unsplash.com/400x175/?github
description: API docs for the @kbn/react-kibana-context-styled plugin
-date: 2023-09-28
+date: 2023-09-29
tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/react-kibana-context-styled']
---
import kbnReactKibanaContextStyledObj from './kbn_react_kibana_context_styled.devdocs.json';
diff --git a/api_docs/kbn_react_kibana_context_theme.mdx b/api_docs/kbn_react_kibana_context_theme.mdx
index dd39572ba4528..5e6c032eff53b 100644
--- a/api_docs/kbn_react_kibana_context_theme.mdx
+++ b/api_docs/kbn_react_kibana_context_theme.mdx
@@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-react-kibana-context-theme
title: "@kbn/react-kibana-context-theme"
image: https://source.unsplash.com/400x175/?github
description: API docs for the @kbn/react-kibana-context-theme plugin
-date: 2023-09-28
+date: 2023-09-29
tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/react-kibana-context-theme']
---
import kbnReactKibanaContextThemeObj from './kbn_react_kibana_context_theme.devdocs.json';
diff --git a/api_docs/kbn_react_kibana_mount.mdx b/api_docs/kbn_react_kibana_mount.mdx
index 973cc4c906c30..6d4841287fd10 100644
--- a/api_docs/kbn_react_kibana_mount.mdx
+++ b/api_docs/kbn_react_kibana_mount.mdx
@@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-react-kibana-mount
title: "@kbn/react-kibana-mount"
image: https://source.unsplash.com/400x175/?github
description: API docs for the @kbn/react-kibana-mount plugin
-date: 2023-09-28
+date: 2023-09-29
tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/react-kibana-mount']
---
import kbnReactKibanaMountObj from './kbn_react_kibana_mount.devdocs.json';
diff --git a/api_docs/kbn_repo_file_maps.mdx b/api_docs/kbn_repo_file_maps.mdx
index 94853405f382e..de0a35d6602aa 100644
--- a/api_docs/kbn_repo_file_maps.mdx
+++ b/api_docs/kbn_repo_file_maps.mdx
@@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-repo-file-maps
title: "@kbn/repo-file-maps"
image: https://source.unsplash.com/400x175/?github
description: API docs for the @kbn/repo-file-maps plugin
-date: 2023-09-28
+date: 2023-09-29
tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/repo-file-maps']
---
import kbnRepoFileMapsObj from './kbn_repo_file_maps.devdocs.json';
diff --git a/api_docs/kbn_repo_linter.mdx b/api_docs/kbn_repo_linter.mdx
index fcae8cf410506..2db643c3cd2e6 100644
--- a/api_docs/kbn_repo_linter.mdx
+++ b/api_docs/kbn_repo_linter.mdx
@@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-repo-linter
title: "@kbn/repo-linter"
image: https://source.unsplash.com/400x175/?github
description: API docs for the @kbn/repo-linter plugin
-date: 2023-09-28
+date: 2023-09-29
tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/repo-linter']
---
import kbnRepoLinterObj from './kbn_repo_linter.devdocs.json';
diff --git a/api_docs/kbn_repo_path.mdx b/api_docs/kbn_repo_path.mdx
index da97d5b115301..2372a19c177e5 100644
--- a/api_docs/kbn_repo_path.mdx
+++ b/api_docs/kbn_repo_path.mdx
@@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-repo-path
title: "@kbn/repo-path"
image: https://source.unsplash.com/400x175/?github
description: API docs for the @kbn/repo-path plugin
-date: 2023-09-28
+date: 2023-09-29
tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/repo-path']
---
import kbnRepoPathObj from './kbn_repo_path.devdocs.json';
diff --git a/api_docs/kbn_repo_source_classifier.mdx b/api_docs/kbn_repo_source_classifier.mdx
index 06a952bee9d6a..0310ba7914f22 100644
--- a/api_docs/kbn_repo_source_classifier.mdx
+++ b/api_docs/kbn_repo_source_classifier.mdx
@@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-repo-source-classifier
title: "@kbn/repo-source-classifier"
image: https://source.unsplash.com/400x175/?github
description: API docs for the @kbn/repo-source-classifier plugin
-date: 2023-09-28
+date: 2023-09-29
tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/repo-source-classifier']
---
import kbnRepoSourceClassifierObj from './kbn_repo_source_classifier.devdocs.json';
diff --git a/api_docs/kbn_reporting_common.mdx b/api_docs/kbn_reporting_common.mdx
index 5b4a284402274..927214b056e06 100644
--- a/api_docs/kbn_reporting_common.mdx
+++ b/api_docs/kbn_reporting_common.mdx
@@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-reporting-common
title: "@kbn/reporting-common"
image: https://source.unsplash.com/400x175/?github
description: API docs for the @kbn/reporting-common plugin
-date: 2023-09-28
+date: 2023-09-29
tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/reporting-common']
---
import kbnReportingCommonObj from './kbn_reporting_common.devdocs.json';
diff --git a/api_docs/kbn_resizable_layout.mdx b/api_docs/kbn_resizable_layout.mdx
index 0da03531014de..bb30d48332cf0 100644
--- a/api_docs/kbn_resizable_layout.mdx
+++ b/api_docs/kbn_resizable_layout.mdx
@@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-resizable-layout
title: "@kbn/resizable-layout"
image: https://source.unsplash.com/400x175/?github
description: API docs for the @kbn/resizable-layout plugin
-date: 2023-09-28
+date: 2023-09-29
tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/resizable-layout']
---
import kbnResizableLayoutObj from './kbn_resizable_layout.devdocs.json';
diff --git a/api_docs/kbn_rison.mdx b/api_docs/kbn_rison.mdx
index 31a2117d123f7..72b9cac89ff05 100644
--- a/api_docs/kbn_rison.mdx
+++ b/api_docs/kbn_rison.mdx
@@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-rison
title: "@kbn/rison"
image: https://source.unsplash.com/400x175/?github
description: API docs for the @kbn/rison plugin
-date: 2023-09-28
+date: 2023-09-29
tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/rison']
---
import kbnRisonObj from './kbn_rison.devdocs.json';
diff --git a/api_docs/kbn_rrule.mdx b/api_docs/kbn_rrule.mdx
index a3b899296fc13..f95a79ba52157 100644
--- a/api_docs/kbn_rrule.mdx
+++ b/api_docs/kbn_rrule.mdx
@@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-rrule
title: "@kbn/rrule"
image: https://source.unsplash.com/400x175/?github
description: API docs for the @kbn/rrule plugin
-date: 2023-09-28
+date: 2023-09-29
tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/rrule']
---
import kbnRruleObj from './kbn_rrule.devdocs.json';
diff --git a/api_docs/kbn_rule_data_utils.mdx b/api_docs/kbn_rule_data_utils.mdx
index 571272bb62c8c..2d06cc7970dee 100644
--- a/api_docs/kbn_rule_data_utils.mdx
+++ b/api_docs/kbn_rule_data_utils.mdx
@@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-rule-data-utils
title: "@kbn/rule-data-utils"
image: https://source.unsplash.com/400x175/?github
description: API docs for the @kbn/rule-data-utils plugin
-date: 2023-09-28
+date: 2023-09-29
tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/rule-data-utils']
---
import kbnRuleDataUtilsObj from './kbn_rule_data_utils.devdocs.json';
diff --git a/api_docs/kbn_saved_objects_settings.mdx b/api_docs/kbn_saved_objects_settings.mdx
index be6f5455c1eb9..e22f74fe32c39 100644
--- a/api_docs/kbn_saved_objects_settings.mdx
+++ b/api_docs/kbn_saved_objects_settings.mdx
@@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-saved-objects-settings
title: "@kbn/saved-objects-settings"
image: https://source.unsplash.com/400x175/?github
description: API docs for the @kbn/saved-objects-settings plugin
-date: 2023-09-28
+date: 2023-09-29
tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/saved-objects-settings']
---
import kbnSavedObjectsSettingsObj from './kbn_saved_objects_settings.devdocs.json';
diff --git a/api_docs/kbn_search_api_panels.mdx b/api_docs/kbn_search_api_panels.mdx
index cd554311196ea..6bdfa0d95f213 100644
--- a/api_docs/kbn_search_api_panels.mdx
+++ b/api_docs/kbn_search_api_panels.mdx
@@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-search-api-panels
title: "@kbn/search-api-panels"
image: https://source.unsplash.com/400x175/?github
description: API docs for the @kbn/search-api-panels plugin
-date: 2023-09-28
+date: 2023-09-29
tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/search-api-panels']
---
import kbnSearchApiPanelsObj from './kbn_search_api_panels.devdocs.json';
diff --git a/api_docs/kbn_search_connectors.mdx b/api_docs/kbn_search_connectors.mdx
index f9d60b8f9830e..88b69b4f2396d 100644
--- a/api_docs/kbn_search_connectors.mdx
+++ b/api_docs/kbn_search_connectors.mdx
@@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-search-connectors
title: "@kbn/search-connectors"
image: https://source.unsplash.com/400x175/?github
description: API docs for the @kbn/search-connectors plugin
-date: 2023-09-28
+date: 2023-09-29
tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/search-connectors']
---
import kbnSearchConnectorsObj from './kbn_search_connectors.devdocs.json';
diff --git a/api_docs/kbn_search_response_warnings.mdx b/api_docs/kbn_search_response_warnings.mdx
index 3add0cf0ca91a..0818eb25e355a 100644
--- a/api_docs/kbn_search_response_warnings.mdx
+++ b/api_docs/kbn_search_response_warnings.mdx
@@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-search-response-warnings
title: "@kbn/search-response-warnings"
image: https://source.unsplash.com/400x175/?github
description: API docs for the @kbn/search-response-warnings plugin
-date: 2023-09-28
+date: 2023-09-29
tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/search-response-warnings']
---
import kbnSearchResponseWarningsObj from './kbn_search_response_warnings.devdocs.json';
diff --git a/api_docs/kbn_security_solution_features.mdx b/api_docs/kbn_security_solution_features.mdx
index 9f0b5946914d2..9f9c2ad006ef2 100644
--- a/api_docs/kbn_security_solution_features.mdx
+++ b/api_docs/kbn_security_solution_features.mdx
@@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-security-solution-features
title: "@kbn/security-solution-features"
image: https://source.unsplash.com/400x175/?github
description: API docs for the @kbn/security-solution-features plugin
-date: 2023-09-28
+date: 2023-09-29
tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/security-solution-features']
---
import kbnSecuritySolutionFeaturesObj from './kbn_security_solution_features.devdocs.json';
diff --git a/api_docs/kbn_security_solution_navigation.mdx b/api_docs/kbn_security_solution_navigation.mdx
index e71b6e751bcec..34dade8357a5d 100644
--- a/api_docs/kbn_security_solution_navigation.mdx
+++ b/api_docs/kbn_security_solution_navigation.mdx
@@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-security-solution-navigation
title: "@kbn/security-solution-navigation"
image: https://source.unsplash.com/400x175/?github
description: API docs for the @kbn/security-solution-navigation plugin
-date: 2023-09-28
+date: 2023-09-29
tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/security-solution-navigation']
---
import kbnSecuritySolutionNavigationObj from './kbn_security_solution_navigation.devdocs.json';
diff --git a/api_docs/kbn_security_solution_side_nav.mdx b/api_docs/kbn_security_solution_side_nav.mdx
index 46ca52301541c..012479726cea2 100644
--- a/api_docs/kbn_security_solution_side_nav.mdx
+++ b/api_docs/kbn_security_solution_side_nav.mdx
@@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-security-solution-side-nav
title: "@kbn/security-solution-side-nav"
image: https://source.unsplash.com/400x175/?github
description: API docs for the @kbn/security-solution-side-nav plugin
-date: 2023-09-28
+date: 2023-09-29
tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/security-solution-side-nav']
---
import kbnSecuritySolutionSideNavObj from './kbn_security_solution_side_nav.devdocs.json';
diff --git a/api_docs/kbn_security_solution_storybook_config.mdx b/api_docs/kbn_security_solution_storybook_config.mdx
index acb13a49106ee..0dfca522dd17e 100644
--- a/api_docs/kbn_security_solution_storybook_config.mdx
+++ b/api_docs/kbn_security_solution_storybook_config.mdx
@@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-security-solution-storybook-config
title: "@kbn/security-solution-storybook-config"
image: https://source.unsplash.com/400x175/?github
description: API docs for the @kbn/security-solution-storybook-config plugin
-date: 2023-09-28
+date: 2023-09-29
tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/security-solution-storybook-config']
---
import kbnSecuritySolutionStorybookConfigObj from './kbn_security_solution_storybook_config.devdocs.json';
diff --git a/api_docs/kbn_securitysolution_autocomplete.mdx b/api_docs/kbn_securitysolution_autocomplete.mdx
index e0742f90564be..0d4b69efe68d8 100644
--- a/api_docs/kbn_securitysolution_autocomplete.mdx
+++ b/api_docs/kbn_securitysolution_autocomplete.mdx
@@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-securitysolution-autocomplete
title: "@kbn/securitysolution-autocomplete"
image: https://source.unsplash.com/400x175/?github
description: API docs for the @kbn/securitysolution-autocomplete plugin
-date: 2023-09-28
+date: 2023-09-29
tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/securitysolution-autocomplete']
---
import kbnSecuritysolutionAutocompleteObj from './kbn_securitysolution_autocomplete.devdocs.json';
diff --git a/api_docs/kbn_securitysolution_data_table.mdx b/api_docs/kbn_securitysolution_data_table.mdx
index 67ef3bc677b5a..791fd5cd50c04 100644
--- a/api_docs/kbn_securitysolution_data_table.mdx
+++ b/api_docs/kbn_securitysolution_data_table.mdx
@@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-securitysolution-data-table
title: "@kbn/securitysolution-data-table"
image: https://source.unsplash.com/400x175/?github
description: API docs for the @kbn/securitysolution-data-table plugin
-date: 2023-09-28
+date: 2023-09-29
tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/securitysolution-data-table']
---
import kbnSecuritysolutionDataTableObj from './kbn_securitysolution_data_table.devdocs.json';
diff --git a/api_docs/kbn_securitysolution_ecs.mdx b/api_docs/kbn_securitysolution_ecs.mdx
index 7ad20ca135080..39e77934d87ff 100644
--- a/api_docs/kbn_securitysolution_ecs.mdx
+++ b/api_docs/kbn_securitysolution_ecs.mdx
@@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-securitysolution-ecs
title: "@kbn/securitysolution-ecs"
image: https://source.unsplash.com/400x175/?github
description: API docs for the @kbn/securitysolution-ecs plugin
-date: 2023-09-28
+date: 2023-09-29
tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/securitysolution-ecs']
---
import kbnSecuritysolutionEcsObj from './kbn_securitysolution_ecs.devdocs.json';
diff --git a/api_docs/kbn_securitysolution_es_utils.mdx b/api_docs/kbn_securitysolution_es_utils.mdx
index 9c4763df268d3..70c9104c028ae 100644
--- a/api_docs/kbn_securitysolution_es_utils.mdx
+++ b/api_docs/kbn_securitysolution_es_utils.mdx
@@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-securitysolution-es-utils
title: "@kbn/securitysolution-es-utils"
image: https://source.unsplash.com/400x175/?github
description: API docs for the @kbn/securitysolution-es-utils plugin
-date: 2023-09-28
+date: 2023-09-29
tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/securitysolution-es-utils']
---
import kbnSecuritysolutionEsUtilsObj from './kbn_securitysolution_es_utils.devdocs.json';
diff --git a/api_docs/kbn_securitysolution_exception_list_components.mdx b/api_docs/kbn_securitysolution_exception_list_components.mdx
index adbb7f980e1d1..5d4e92558db06 100644
--- a/api_docs/kbn_securitysolution_exception_list_components.mdx
+++ b/api_docs/kbn_securitysolution_exception_list_components.mdx
@@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-securitysolution-exception-list-components
title: "@kbn/securitysolution-exception-list-components"
image: https://source.unsplash.com/400x175/?github
description: API docs for the @kbn/securitysolution-exception-list-components plugin
-date: 2023-09-28
+date: 2023-09-29
tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/securitysolution-exception-list-components']
---
import kbnSecuritysolutionExceptionListComponentsObj from './kbn_securitysolution_exception_list_components.devdocs.json';
diff --git a/api_docs/kbn_securitysolution_grouping.mdx b/api_docs/kbn_securitysolution_grouping.mdx
index 9546f1027f1fd..0333399968008 100644
--- a/api_docs/kbn_securitysolution_grouping.mdx
+++ b/api_docs/kbn_securitysolution_grouping.mdx
@@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-securitysolution-grouping
title: "@kbn/securitysolution-grouping"
image: https://source.unsplash.com/400x175/?github
description: API docs for the @kbn/securitysolution-grouping plugin
-date: 2023-09-28
+date: 2023-09-29
tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/securitysolution-grouping']
---
import kbnSecuritysolutionGroupingObj from './kbn_securitysolution_grouping.devdocs.json';
diff --git a/api_docs/kbn_securitysolution_hook_utils.mdx b/api_docs/kbn_securitysolution_hook_utils.mdx
index 474ab33badccb..24ce9104b395a 100644
--- a/api_docs/kbn_securitysolution_hook_utils.mdx
+++ b/api_docs/kbn_securitysolution_hook_utils.mdx
@@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-securitysolution-hook-utils
title: "@kbn/securitysolution-hook-utils"
image: https://source.unsplash.com/400x175/?github
description: API docs for the @kbn/securitysolution-hook-utils plugin
-date: 2023-09-28
+date: 2023-09-29
tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/securitysolution-hook-utils']
---
import kbnSecuritysolutionHookUtilsObj from './kbn_securitysolution_hook_utils.devdocs.json';
diff --git a/api_docs/kbn_securitysolution_io_ts_alerting_types.mdx b/api_docs/kbn_securitysolution_io_ts_alerting_types.mdx
index fb9fa1691cfb8..c51675bcbbcff 100644
--- a/api_docs/kbn_securitysolution_io_ts_alerting_types.mdx
+++ b/api_docs/kbn_securitysolution_io_ts_alerting_types.mdx
@@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-securitysolution-io-ts-alerting-types
title: "@kbn/securitysolution-io-ts-alerting-types"
image: https://source.unsplash.com/400x175/?github
description: API docs for the @kbn/securitysolution-io-ts-alerting-types plugin
-date: 2023-09-28
+date: 2023-09-29
tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/securitysolution-io-ts-alerting-types']
---
import kbnSecuritysolutionIoTsAlertingTypesObj from './kbn_securitysolution_io_ts_alerting_types.devdocs.json';
diff --git a/api_docs/kbn_securitysolution_io_ts_list_types.mdx b/api_docs/kbn_securitysolution_io_ts_list_types.mdx
index e6f0e5883981b..6d79d253e80e1 100644
--- a/api_docs/kbn_securitysolution_io_ts_list_types.mdx
+++ b/api_docs/kbn_securitysolution_io_ts_list_types.mdx
@@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-securitysolution-io-ts-list-types
title: "@kbn/securitysolution-io-ts-list-types"
image: https://source.unsplash.com/400x175/?github
description: API docs for the @kbn/securitysolution-io-ts-list-types plugin
-date: 2023-09-28
+date: 2023-09-29
tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/securitysolution-io-ts-list-types']
---
import kbnSecuritysolutionIoTsListTypesObj from './kbn_securitysolution_io_ts_list_types.devdocs.json';
diff --git a/api_docs/kbn_securitysolution_io_ts_types.mdx b/api_docs/kbn_securitysolution_io_ts_types.mdx
index 1b3c5205203cd..8ed1210a0eaaa 100644
--- a/api_docs/kbn_securitysolution_io_ts_types.mdx
+++ b/api_docs/kbn_securitysolution_io_ts_types.mdx
@@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-securitysolution-io-ts-types
title: "@kbn/securitysolution-io-ts-types"
image: https://source.unsplash.com/400x175/?github
description: API docs for the @kbn/securitysolution-io-ts-types plugin
-date: 2023-09-28
+date: 2023-09-29
tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/securitysolution-io-ts-types']
---
import kbnSecuritysolutionIoTsTypesObj from './kbn_securitysolution_io_ts_types.devdocs.json';
diff --git a/api_docs/kbn_securitysolution_io_ts_utils.mdx b/api_docs/kbn_securitysolution_io_ts_utils.mdx
index 5db08ab670b0f..f670520fade95 100644
--- a/api_docs/kbn_securitysolution_io_ts_utils.mdx
+++ b/api_docs/kbn_securitysolution_io_ts_utils.mdx
@@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-securitysolution-io-ts-utils
title: "@kbn/securitysolution-io-ts-utils"
image: https://source.unsplash.com/400x175/?github
description: API docs for the @kbn/securitysolution-io-ts-utils plugin
-date: 2023-09-28
+date: 2023-09-29
tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/securitysolution-io-ts-utils']
---
import kbnSecuritysolutionIoTsUtilsObj from './kbn_securitysolution_io_ts_utils.devdocs.json';
diff --git a/api_docs/kbn_securitysolution_list_api.mdx b/api_docs/kbn_securitysolution_list_api.mdx
index 5f1cbfae2ddce..5c3afa69ac668 100644
--- a/api_docs/kbn_securitysolution_list_api.mdx
+++ b/api_docs/kbn_securitysolution_list_api.mdx
@@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-securitysolution-list-api
title: "@kbn/securitysolution-list-api"
image: https://source.unsplash.com/400x175/?github
description: API docs for the @kbn/securitysolution-list-api plugin
-date: 2023-09-28
+date: 2023-09-29
tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/securitysolution-list-api']
---
import kbnSecuritysolutionListApiObj from './kbn_securitysolution_list_api.devdocs.json';
diff --git a/api_docs/kbn_securitysolution_list_constants.devdocs.json b/api_docs/kbn_securitysolution_list_constants.devdocs.json
index c3f2279e6ccde..1c3812564f68e 100644
--- a/api_docs/kbn_securitysolution_list_constants.devdocs.json
+++ b/api_docs/kbn_securitysolution_list_constants.devdocs.json
@@ -868,6 +868,14 @@
"plugin": "lists",
"path": "x-pack/plugins/lists/server/saved_objects/migrations.ts"
},
+ {
+ "plugin": "lists",
+ "path": "x-pack/plugins/lists/common/schemas/response/exception_list_schema.mock.ts"
+ },
+ {
+ "plugin": "lists",
+ "path": "x-pack/plugins/lists/common/schemas/response/exception_list_schema.mock.ts"
+ },
{
"plugin": "securitySolution",
"path": "x-pack/plugins/security_solution/server/endpoint/lib/artifacts/lists.ts"
@@ -900,14 +908,6 @@
"plugin": "securitySolution",
"path": "x-pack/plugins/security_solution/server/lib/telemetry/receiver.ts"
},
- {
- "plugin": "lists",
- "path": "x-pack/plugins/lists/common/schemas/response/exception_list_schema.mock.ts"
- },
- {
- "plugin": "lists",
- "path": "x-pack/plugins/lists/common/schemas/response/exception_list_schema.mock.ts"
- },
{
"plugin": "securitySolution",
"path": "x-pack/plugins/security_solution/public/management/pages/policy/view/policy_hooks.ts"
diff --git a/api_docs/kbn_securitysolution_list_constants.mdx b/api_docs/kbn_securitysolution_list_constants.mdx
index 04c4bac4bc6f0..a1ff78417f32f 100644
--- a/api_docs/kbn_securitysolution_list_constants.mdx
+++ b/api_docs/kbn_securitysolution_list_constants.mdx
@@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-securitysolution-list-constants
title: "@kbn/securitysolution-list-constants"
image: https://source.unsplash.com/400x175/?github
description: API docs for the @kbn/securitysolution-list-constants plugin
-date: 2023-09-28
+date: 2023-09-29
tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/securitysolution-list-constants']
---
import kbnSecuritysolutionListConstantsObj from './kbn_securitysolution_list_constants.devdocs.json';
diff --git a/api_docs/kbn_securitysolution_list_hooks.mdx b/api_docs/kbn_securitysolution_list_hooks.mdx
index 8a9f50538250a..a116645613ed0 100644
--- a/api_docs/kbn_securitysolution_list_hooks.mdx
+++ b/api_docs/kbn_securitysolution_list_hooks.mdx
@@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-securitysolution-list-hooks
title: "@kbn/securitysolution-list-hooks"
image: https://source.unsplash.com/400x175/?github
description: API docs for the @kbn/securitysolution-list-hooks plugin
-date: 2023-09-28
+date: 2023-09-29
tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/securitysolution-list-hooks']
---
import kbnSecuritysolutionListHooksObj from './kbn_securitysolution_list_hooks.devdocs.json';
diff --git a/api_docs/kbn_securitysolution_list_utils.mdx b/api_docs/kbn_securitysolution_list_utils.mdx
index 80ce37577fd67..aff6891fcb3f5 100644
--- a/api_docs/kbn_securitysolution_list_utils.mdx
+++ b/api_docs/kbn_securitysolution_list_utils.mdx
@@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-securitysolution-list-utils
title: "@kbn/securitysolution-list-utils"
image: https://source.unsplash.com/400x175/?github
description: API docs for the @kbn/securitysolution-list-utils plugin
-date: 2023-09-28
+date: 2023-09-29
tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/securitysolution-list-utils']
---
import kbnSecuritysolutionListUtilsObj from './kbn_securitysolution_list_utils.devdocs.json';
diff --git a/api_docs/kbn_securitysolution_rules.mdx b/api_docs/kbn_securitysolution_rules.mdx
index 03851b463ee33..f934866b961eb 100644
--- a/api_docs/kbn_securitysolution_rules.mdx
+++ b/api_docs/kbn_securitysolution_rules.mdx
@@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-securitysolution-rules
title: "@kbn/securitysolution-rules"
image: https://source.unsplash.com/400x175/?github
description: API docs for the @kbn/securitysolution-rules plugin
-date: 2023-09-28
+date: 2023-09-29
tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/securitysolution-rules']
---
import kbnSecuritysolutionRulesObj from './kbn_securitysolution_rules.devdocs.json';
diff --git a/api_docs/kbn_securitysolution_t_grid.mdx b/api_docs/kbn_securitysolution_t_grid.mdx
index 79452d333e00f..4637d5f856e16 100644
--- a/api_docs/kbn_securitysolution_t_grid.mdx
+++ b/api_docs/kbn_securitysolution_t_grid.mdx
@@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-securitysolution-t-grid
title: "@kbn/securitysolution-t-grid"
image: https://source.unsplash.com/400x175/?github
description: API docs for the @kbn/securitysolution-t-grid plugin
-date: 2023-09-28
+date: 2023-09-29
tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/securitysolution-t-grid']
---
import kbnSecuritysolutionTGridObj from './kbn_securitysolution_t_grid.devdocs.json';
diff --git a/api_docs/kbn_securitysolution_utils.mdx b/api_docs/kbn_securitysolution_utils.mdx
index 1c49012c189ae..7863df67af3e2 100644
--- a/api_docs/kbn_securitysolution_utils.mdx
+++ b/api_docs/kbn_securitysolution_utils.mdx
@@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-securitysolution-utils
title: "@kbn/securitysolution-utils"
image: https://source.unsplash.com/400x175/?github
description: API docs for the @kbn/securitysolution-utils plugin
-date: 2023-09-28
+date: 2023-09-29
tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/securitysolution-utils']
---
import kbnSecuritysolutionUtilsObj from './kbn_securitysolution_utils.devdocs.json';
diff --git a/api_docs/kbn_server_http_tools.mdx b/api_docs/kbn_server_http_tools.mdx
index b044d07b2b74e..da8767f287bb6 100644
--- a/api_docs/kbn_server_http_tools.mdx
+++ b/api_docs/kbn_server_http_tools.mdx
@@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-server-http-tools
title: "@kbn/server-http-tools"
image: https://source.unsplash.com/400x175/?github
description: API docs for the @kbn/server-http-tools plugin
-date: 2023-09-28
+date: 2023-09-29
tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/server-http-tools']
---
import kbnServerHttpToolsObj from './kbn_server_http_tools.devdocs.json';
diff --git a/api_docs/kbn_server_route_repository.mdx b/api_docs/kbn_server_route_repository.mdx
index 6fc1397f9e250..0cffd43313ee8 100644
--- a/api_docs/kbn_server_route_repository.mdx
+++ b/api_docs/kbn_server_route_repository.mdx
@@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-server-route-repository
title: "@kbn/server-route-repository"
image: https://source.unsplash.com/400x175/?github
description: API docs for the @kbn/server-route-repository plugin
-date: 2023-09-28
+date: 2023-09-29
tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/server-route-repository']
---
import kbnServerRouteRepositoryObj from './kbn_server_route_repository.devdocs.json';
diff --git a/api_docs/kbn_serverless_common_settings.mdx b/api_docs/kbn_serverless_common_settings.mdx
index e72917480c3d1..36937664f6fe9 100644
--- a/api_docs/kbn_serverless_common_settings.mdx
+++ b/api_docs/kbn_serverless_common_settings.mdx
@@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-serverless-common-settings
title: "@kbn/serverless-common-settings"
image: https://source.unsplash.com/400x175/?github
description: API docs for the @kbn/serverless-common-settings plugin
-date: 2023-09-28
+date: 2023-09-29
tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/serverless-common-settings']
---
import kbnServerlessCommonSettingsObj from './kbn_serverless_common_settings.devdocs.json';
diff --git a/api_docs/kbn_serverless_observability_settings.mdx b/api_docs/kbn_serverless_observability_settings.mdx
index 0ab2efeebeb3b..e80322eda73a4 100644
--- a/api_docs/kbn_serverless_observability_settings.mdx
+++ b/api_docs/kbn_serverless_observability_settings.mdx
@@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-serverless-observability-settings
title: "@kbn/serverless-observability-settings"
image: https://source.unsplash.com/400x175/?github
description: API docs for the @kbn/serverless-observability-settings plugin
-date: 2023-09-28
+date: 2023-09-29
tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/serverless-observability-settings']
---
import kbnServerlessObservabilitySettingsObj from './kbn_serverless_observability_settings.devdocs.json';
diff --git a/api_docs/kbn_serverless_project_switcher.mdx b/api_docs/kbn_serverless_project_switcher.mdx
index cb1d60f3c5472..e3eff6fed9e17 100644
--- a/api_docs/kbn_serverless_project_switcher.mdx
+++ b/api_docs/kbn_serverless_project_switcher.mdx
@@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-serverless-project-switcher
title: "@kbn/serverless-project-switcher"
image: https://source.unsplash.com/400x175/?github
description: API docs for the @kbn/serverless-project-switcher plugin
-date: 2023-09-28
+date: 2023-09-29
tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/serverless-project-switcher']
---
import kbnServerlessProjectSwitcherObj from './kbn_serverless_project_switcher.devdocs.json';
diff --git a/api_docs/kbn_serverless_search_settings.mdx b/api_docs/kbn_serverless_search_settings.mdx
index 5f925879b8bc1..a8e3b2037418b 100644
--- a/api_docs/kbn_serverless_search_settings.mdx
+++ b/api_docs/kbn_serverless_search_settings.mdx
@@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-serverless-search-settings
title: "@kbn/serverless-search-settings"
image: https://source.unsplash.com/400x175/?github
description: API docs for the @kbn/serverless-search-settings plugin
-date: 2023-09-28
+date: 2023-09-29
tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/serverless-search-settings']
---
import kbnServerlessSearchSettingsObj from './kbn_serverless_search_settings.devdocs.json';
diff --git a/api_docs/kbn_serverless_security_settings.mdx b/api_docs/kbn_serverless_security_settings.mdx
index 0895892d63e29..37229631c2a92 100644
--- a/api_docs/kbn_serverless_security_settings.mdx
+++ b/api_docs/kbn_serverless_security_settings.mdx
@@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-serverless-security-settings
title: "@kbn/serverless-security-settings"
image: https://source.unsplash.com/400x175/?github
description: API docs for the @kbn/serverless-security-settings plugin
-date: 2023-09-28
+date: 2023-09-29
tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/serverless-security-settings']
---
import kbnServerlessSecuritySettingsObj from './kbn_serverless_security_settings.devdocs.json';
diff --git a/api_docs/kbn_serverless_storybook_config.mdx b/api_docs/kbn_serverless_storybook_config.mdx
index 9ac7afdbc7c12..e4fb0cd37e717 100644
--- a/api_docs/kbn_serverless_storybook_config.mdx
+++ b/api_docs/kbn_serverless_storybook_config.mdx
@@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-serverless-storybook-config
title: "@kbn/serverless-storybook-config"
image: https://source.unsplash.com/400x175/?github
description: API docs for the @kbn/serverless-storybook-config plugin
-date: 2023-09-28
+date: 2023-09-29
tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/serverless-storybook-config']
---
import kbnServerlessStorybookConfigObj from './kbn_serverless_storybook_config.devdocs.json';
diff --git a/api_docs/kbn_shared_svg.mdx b/api_docs/kbn_shared_svg.mdx
index 552a5a364b893..52760d2af01b3 100644
--- a/api_docs/kbn_shared_svg.mdx
+++ b/api_docs/kbn_shared_svg.mdx
@@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-shared-svg
title: "@kbn/shared-svg"
image: https://source.unsplash.com/400x175/?github
description: API docs for the @kbn/shared-svg plugin
-date: 2023-09-28
+date: 2023-09-29
tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/shared-svg']
---
import kbnSharedSvgObj from './kbn_shared_svg.devdocs.json';
diff --git a/api_docs/kbn_shared_ux_avatar_solution.mdx b/api_docs/kbn_shared_ux_avatar_solution.mdx
index ce7f3112ea9d8..081cb29dabbcb 100644
--- a/api_docs/kbn_shared_ux_avatar_solution.mdx
+++ b/api_docs/kbn_shared_ux_avatar_solution.mdx
@@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-shared-ux-avatar-solution
title: "@kbn/shared-ux-avatar-solution"
image: https://source.unsplash.com/400x175/?github
description: API docs for the @kbn/shared-ux-avatar-solution plugin
-date: 2023-09-28
+date: 2023-09-29
tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/shared-ux-avatar-solution']
---
import kbnSharedUxAvatarSolutionObj from './kbn_shared_ux_avatar_solution.devdocs.json';
diff --git a/api_docs/kbn_shared_ux_avatar_user_profile_components.mdx b/api_docs/kbn_shared_ux_avatar_user_profile_components.mdx
index 82a2143f27a8c..896a0c9248ff5 100644
--- a/api_docs/kbn_shared_ux_avatar_user_profile_components.mdx
+++ b/api_docs/kbn_shared_ux_avatar_user_profile_components.mdx
@@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-shared-ux-avatar-user-profile-components
title: "@kbn/shared-ux-avatar-user-profile-components"
image: https://source.unsplash.com/400x175/?github
description: API docs for the @kbn/shared-ux-avatar-user-profile-components plugin
-date: 2023-09-28
+date: 2023-09-29
tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/shared-ux-avatar-user-profile-components']
---
import kbnSharedUxAvatarUserProfileComponentsObj from './kbn_shared_ux_avatar_user_profile_components.devdocs.json';
diff --git a/api_docs/kbn_shared_ux_button_exit_full_screen.mdx b/api_docs/kbn_shared_ux_button_exit_full_screen.mdx
index 23983a88ea976..f26787a857047 100644
--- a/api_docs/kbn_shared_ux_button_exit_full_screen.mdx
+++ b/api_docs/kbn_shared_ux_button_exit_full_screen.mdx
@@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-shared-ux-button-exit-full-screen
title: "@kbn/shared-ux-button-exit-full-screen"
image: https://source.unsplash.com/400x175/?github
description: API docs for the @kbn/shared-ux-button-exit-full-screen plugin
-date: 2023-09-28
+date: 2023-09-29
tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/shared-ux-button-exit-full-screen']
---
import kbnSharedUxButtonExitFullScreenObj from './kbn_shared_ux_button_exit_full_screen.devdocs.json';
diff --git a/api_docs/kbn_shared_ux_button_exit_full_screen_mocks.mdx b/api_docs/kbn_shared_ux_button_exit_full_screen_mocks.mdx
index 319220a3e38bf..9cd52db2056c1 100644
--- a/api_docs/kbn_shared_ux_button_exit_full_screen_mocks.mdx
+++ b/api_docs/kbn_shared_ux_button_exit_full_screen_mocks.mdx
@@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-shared-ux-button-exit-full-screen-mocks
title: "@kbn/shared-ux-button-exit-full-screen-mocks"
image: https://source.unsplash.com/400x175/?github
description: API docs for the @kbn/shared-ux-button-exit-full-screen-mocks plugin
-date: 2023-09-28
+date: 2023-09-29
tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/shared-ux-button-exit-full-screen-mocks']
---
import kbnSharedUxButtonExitFullScreenMocksObj from './kbn_shared_ux_button_exit_full_screen_mocks.devdocs.json';
diff --git a/api_docs/kbn_shared_ux_button_toolbar.mdx b/api_docs/kbn_shared_ux_button_toolbar.mdx
index 2df6d918959e9..c8fca7c9bd619 100644
--- a/api_docs/kbn_shared_ux_button_toolbar.mdx
+++ b/api_docs/kbn_shared_ux_button_toolbar.mdx
@@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-shared-ux-button-toolbar
title: "@kbn/shared-ux-button-toolbar"
image: https://source.unsplash.com/400x175/?github
description: API docs for the @kbn/shared-ux-button-toolbar plugin
-date: 2023-09-28
+date: 2023-09-29
tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/shared-ux-button-toolbar']
---
import kbnSharedUxButtonToolbarObj from './kbn_shared_ux_button_toolbar.devdocs.json';
diff --git a/api_docs/kbn_shared_ux_card_no_data.mdx b/api_docs/kbn_shared_ux_card_no_data.mdx
index 77506da9858ea..3ca961dfe5b23 100644
--- a/api_docs/kbn_shared_ux_card_no_data.mdx
+++ b/api_docs/kbn_shared_ux_card_no_data.mdx
@@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-shared-ux-card-no-data
title: "@kbn/shared-ux-card-no-data"
image: https://source.unsplash.com/400x175/?github
description: API docs for the @kbn/shared-ux-card-no-data plugin
-date: 2023-09-28
+date: 2023-09-29
tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/shared-ux-card-no-data']
---
import kbnSharedUxCardNoDataObj from './kbn_shared_ux_card_no_data.devdocs.json';
diff --git a/api_docs/kbn_shared_ux_card_no_data_mocks.mdx b/api_docs/kbn_shared_ux_card_no_data_mocks.mdx
index 6395c0006637d..571f32a28c440 100644
--- a/api_docs/kbn_shared_ux_card_no_data_mocks.mdx
+++ b/api_docs/kbn_shared_ux_card_no_data_mocks.mdx
@@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-shared-ux-card-no-data-mocks
title: "@kbn/shared-ux-card-no-data-mocks"
image: https://source.unsplash.com/400x175/?github
description: API docs for the @kbn/shared-ux-card-no-data-mocks plugin
-date: 2023-09-28
+date: 2023-09-29
tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/shared-ux-card-no-data-mocks']
---
import kbnSharedUxCardNoDataMocksObj from './kbn_shared_ux_card_no_data_mocks.devdocs.json';
diff --git a/api_docs/kbn_shared_ux_chrome_navigation.mdx b/api_docs/kbn_shared_ux_chrome_navigation.mdx
index e55302bbe8eab..822debcb9ae37 100644
--- a/api_docs/kbn_shared_ux_chrome_navigation.mdx
+++ b/api_docs/kbn_shared_ux_chrome_navigation.mdx
@@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-shared-ux-chrome-navigation
title: "@kbn/shared-ux-chrome-navigation"
image: https://source.unsplash.com/400x175/?github
description: API docs for the @kbn/shared-ux-chrome-navigation plugin
-date: 2023-09-28
+date: 2023-09-29
tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/shared-ux-chrome-navigation']
---
import kbnSharedUxChromeNavigationObj from './kbn_shared_ux_chrome_navigation.devdocs.json';
diff --git a/api_docs/kbn_shared_ux_file_context.mdx b/api_docs/kbn_shared_ux_file_context.mdx
index 7649034f0d3e8..a6a25cd431e68 100644
--- a/api_docs/kbn_shared_ux_file_context.mdx
+++ b/api_docs/kbn_shared_ux_file_context.mdx
@@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-shared-ux-file-context
title: "@kbn/shared-ux-file-context"
image: https://source.unsplash.com/400x175/?github
description: API docs for the @kbn/shared-ux-file-context plugin
-date: 2023-09-28
+date: 2023-09-29
tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/shared-ux-file-context']
---
import kbnSharedUxFileContextObj from './kbn_shared_ux_file_context.devdocs.json';
diff --git a/api_docs/kbn_shared_ux_file_image.mdx b/api_docs/kbn_shared_ux_file_image.mdx
index c6f19cb0fbf6d..8f630ff215a64 100644
--- a/api_docs/kbn_shared_ux_file_image.mdx
+++ b/api_docs/kbn_shared_ux_file_image.mdx
@@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-shared-ux-file-image
title: "@kbn/shared-ux-file-image"
image: https://source.unsplash.com/400x175/?github
description: API docs for the @kbn/shared-ux-file-image plugin
-date: 2023-09-28
+date: 2023-09-29
tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/shared-ux-file-image']
---
import kbnSharedUxFileImageObj from './kbn_shared_ux_file_image.devdocs.json';
diff --git a/api_docs/kbn_shared_ux_file_image_mocks.mdx b/api_docs/kbn_shared_ux_file_image_mocks.mdx
index 51a59254e147c..87eb4e827c6fe 100644
--- a/api_docs/kbn_shared_ux_file_image_mocks.mdx
+++ b/api_docs/kbn_shared_ux_file_image_mocks.mdx
@@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-shared-ux-file-image-mocks
title: "@kbn/shared-ux-file-image-mocks"
image: https://source.unsplash.com/400x175/?github
description: API docs for the @kbn/shared-ux-file-image-mocks plugin
-date: 2023-09-28
+date: 2023-09-29
tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/shared-ux-file-image-mocks']
---
import kbnSharedUxFileImageMocksObj from './kbn_shared_ux_file_image_mocks.devdocs.json';
diff --git a/api_docs/kbn_shared_ux_file_mocks.mdx b/api_docs/kbn_shared_ux_file_mocks.mdx
index 40f59765cbf29..90942969afa8a 100644
--- a/api_docs/kbn_shared_ux_file_mocks.mdx
+++ b/api_docs/kbn_shared_ux_file_mocks.mdx
@@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-shared-ux-file-mocks
title: "@kbn/shared-ux-file-mocks"
image: https://source.unsplash.com/400x175/?github
description: API docs for the @kbn/shared-ux-file-mocks plugin
-date: 2023-09-28
+date: 2023-09-29
tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/shared-ux-file-mocks']
---
import kbnSharedUxFileMocksObj from './kbn_shared_ux_file_mocks.devdocs.json';
diff --git a/api_docs/kbn_shared_ux_file_picker.mdx b/api_docs/kbn_shared_ux_file_picker.mdx
index 29352f31681b7..85668cca9d2fd 100644
--- a/api_docs/kbn_shared_ux_file_picker.mdx
+++ b/api_docs/kbn_shared_ux_file_picker.mdx
@@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-shared-ux-file-picker
title: "@kbn/shared-ux-file-picker"
image: https://source.unsplash.com/400x175/?github
description: API docs for the @kbn/shared-ux-file-picker plugin
-date: 2023-09-28
+date: 2023-09-29
tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/shared-ux-file-picker']
---
import kbnSharedUxFilePickerObj from './kbn_shared_ux_file_picker.devdocs.json';
diff --git a/api_docs/kbn_shared_ux_file_types.mdx b/api_docs/kbn_shared_ux_file_types.mdx
index d2a767e9edcda..d553c2892b065 100644
--- a/api_docs/kbn_shared_ux_file_types.mdx
+++ b/api_docs/kbn_shared_ux_file_types.mdx
@@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-shared-ux-file-types
title: "@kbn/shared-ux-file-types"
image: https://source.unsplash.com/400x175/?github
description: API docs for the @kbn/shared-ux-file-types plugin
-date: 2023-09-28
+date: 2023-09-29
tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/shared-ux-file-types']
---
import kbnSharedUxFileTypesObj from './kbn_shared_ux_file_types.devdocs.json';
diff --git a/api_docs/kbn_shared_ux_file_upload.mdx b/api_docs/kbn_shared_ux_file_upload.mdx
index a667bfd932d2c..2f10d4a1d216b 100644
--- a/api_docs/kbn_shared_ux_file_upload.mdx
+++ b/api_docs/kbn_shared_ux_file_upload.mdx
@@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-shared-ux-file-upload
title: "@kbn/shared-ux-file-upload"
image: https://source.unsplash.com/400x175/?github
description: API docs for the @kbn/shared-ux-file-upload plugin
-date: 2023-09-28
+date: 2023-09-29
tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/shared-ux-file-upload']
---
import kbnSharedUxFileUploadObj from './kbn_shared_ux_file_upload.devdocs.json';
diff --git a/api_docs/kbn_shared_ux_file_util.mdx b/api_docs/kbn_shared_ux_file_util.mdx
index c75b5fe1da2f8..62ad417a20599 100644
--- a/api_docs/kbn_shared_ux_file_util.mdx
+++ b/api_docs/kbn_shared_ux_file_util.mdx
@@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-shared-ux-file-util
title: "@kbn/shared-ux-file-util"
image: https://source.unsplash.com/400x175/?github
description: API docs for the @kbn/shared-ux-file-util plugin
-date: 2023-09-28
+date: 2023-09-29
tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/shared-ux-file-util']
---
import kbnSharedUxFileUtilObj from './kbn_shared_ux_file_util.devdocs.json';
diff --git a/api_docs/kbn_shared_ux_link_redirect_app.mdx b/api_docs/kbn_shared_ux_link_redirect_app.mdx
index cc0af31e59b71..512dab55b1ebb 100644
--- a/api_docs/kbn_shared_ux_link_redirect_app.mdx
+++ b/api_docs/kbn_shared_ux_link_redirect_app.mdx
@@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-shared-ux-link-redirect-app
title: "@kbn/shared-ux-link-redirect-app"
image: https://source.unsplash.com/400x175/?github
description: API docs for the @kbn/shared-ux-link-redirect-app plugin
-date: 2023-09-28
+date: 2023-09-29
tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/shared-ux-link-redirect-app']
---
import kbnSharedUxLinkRedirectAppObj from './kbn_shared_ux_link_redirect_app.devdocs.json';
diff --git a/api_docs/kbn_shared_ux_link_redirect_app_mocks.mdx b/api_docs/kbn_shared_ux_link_redirect_app_mocks.mdx
index 65a44d4a48c00..7f9e4ce10b8bb 100644
--- a/api_docs/kbn_shared_ux_link_redirect_app_mocks.mdx
+++ b/api_docs/kbn_shared_ux_link_redirect_app_mocks.mdx
@@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-shared-ux-link-redirect-app-mocks
title: "@kbn/shared-ux-link-redirect-app-mocks"
image: https://source.unsplash.com/400x175/?github
description: API docs for the @kbn/shared-ux-link-redirect-app-mocks plugin
-date: 2023-09-28
+date: 2023-09-29
tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/shared-ux-link-redirect-app-mocks']
---
import kbnSharedUxLinkRedirectAppMocksObj from './kbn_shared_ux_link_redirect_app_mocks.devdocs.json';
diff --git a/api_docs/kbn_shared_ux_markdown.mdx b/api_docs/kbn_shared_ux_markdown.mdx
index f9f156e651358..a7f6e42447a34 100644
--- a/api_docs/kbn_shared_ux_markdown.mdx
+++ b/api_docs/kbn_shared_ux_markdown.mdx
@@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-shared-ux-markdown
title: "@kbn/shared-ux-markdown"
image: https://source.unsplash.com/400x175/?github
description: API docs for the @kbn/shared-ux-markdown plugin
-date: 2023-09-28
+date: 2023-09-29
tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/shared-ux-markdown']
---
import kbnSharedUxMarkdownObj from './kbn_shared_ux_markdown.devdocs.json';
diff --git a/api_docs/kbn_shared_ux_markdown_mocks.mdx b/api_docs/kbn_shared_ux_markdown_mocks.mdx
index 616baf9109a57..f98231bb1a794 100644
--- a/api_docs/kbn_shared_ux_markdown_mocks.mdx
+++ b/api_docs/kbn_shared_ux_markdown_mocks.mdx
@@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-shared-ux-markdown-mocks
title: "@kbn/shared-ux-markdown-mocks"
image: https://source.unsplash.com/400x175/?github
description: API docs for the @kbn/shared-ux-markdown-mocks plugin
-date: 2023-09-28
+date: 2023-09-29
tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/shared-ux-markdown-mocks']
---
import kbnSharedUxMarkdownMocksObj from './kbn_shared_ux_markdown_mocks.devdocs.json';
diff --git a/api_docs/kbn_shared_ux_page_analytics_no_data.mdx b/api_docs/kbn_shared_ux_page_analytics_no_data.mdx
index 583fdd1db6d2c..5850af1a94f3a 100644
--- a/api_docs/kbn_shared_ux_page_analytics_no_data.mdx
+++ b/api_docs/kbn_shared_ux_page_analytics_no_data.mdx
@@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-shared-ux-page-analytics-no-data
title: "@kbn/shared-ux-page-analytics-no-data"
image: https://source.unsplash.com/400x175/?github
description: API docs for the @kbn/shared-ux-page-analytics-no-data plugin
-date: 2023-09-28
+date: 2023-09-29
tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/shared-ux-page-analytics-no-data']
---
import kbnSharedUxPageAnalyticsNoDataObj from './kbn_shared_ux_page_analytics_no_data.devdocs.json';
diff --git a/api_docs/kbn_shared_ux_page_analytics_no_data_mocks.mdx b/api_docs/kbn_shared_ux_page_analytics_no_data_mocks.mdx
index dbce4f323217f..6f28d4d7082f6 100644
--- a/api_docs/kbn_shared_ux_page_analytics_no_data_mocks.mdx
+++ b/api_docs/kbn_shared_ux_page_analytics_no_data_mocks.mdx
@@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-shared-ux-page-analytics-no-data-mocks
title: "@kbn/shared-ux-page-analytics-no-data-mocks"
image: https://source.unsplash.com/400x175/?github
description: API docs for the @kbn/shared-ux-page-analytics-no-data-mocks plugin
-date: 2023-09-28
+date: 2023-09-29
tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/shared-ux-page-analytics-no-data-mocks']
---
import kbnSharedUxPageAnalyticsNoDataMocksObj from './kbn_shared_ux_page_analytics_no_data_mocks.devdocs.json';
diff --git a/api_docs/kbn_shared_ux_page_kibana_no_data.mdx b/api_docs/kbn_shared_ux_page_kibana_no_data.mdx
index 98e62180b45ec..22206566a0dab 100644
--- a/api_docs/kbn_shared_ux_page_kibana_no_data.mdx
+++ b/api_docs/kbn_shared_ux_page_kibana_no_data.mdx
@@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-shared-ux-page-kibana-no-data
title: "@kbn/shared-ux-page-kibana-no-data"
image: https://source.unsplash.com/400x175/?github
description: API docs for the @kbn/shared-ux-page-kibana-no-data plugin
-date: 2023-09-28
+date: 2023-09-29
tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/shared-ux-page-kibana-no-data']
---
import kbnSharedUxPageKibanaNoDataObj from './kbn_shared_ux_page_kibana_no_data.devdocs.json';
diff --git a/api_docs/kbn_shared_ux_page_kibana_no_data_mocks.mdx b/api_docs/kbn_shared_ux_page_kibana_no_data_mocks.mdx
index 0adf36511eb07..a5e43b17f1a5f 100644
--- a/api_docs/kbn_shared_ux_page_kibana_no_data_mocks.mdx
+++ b/api_docs/kbn_shared_ux_page_kibana_no_data_mocks.mdx
@@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-shared-ux-page-kibana-no-data-mocks
title: "@kbn/shared-ux-page-kibana-no-data-mocks"
image: https://source.unsplash.com/400x175/?github
description: API docs for the @kbn/shared-ux-page-kibana-no-data-mocks plugin
-date: 2023-09-28
+date: 2023-09-29
tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/shared-ux-page-kibana-no-data-mocks']
---
import kbnSharedUxPageKibanaNoDataMocksObj from './kbn_shared_ux_page_kibana_no_data_mocks.devdocs.json';
diff --git a/api_docs/kbn_shared_ux_page_kibana_template.mdx b/api_docs/kbn_shared_ux_page_kibana_template.mdx
index f5a50185c0738..ce1b91a05caef 100644
--- a/api_docs/kbn_shared_ux_page_kibana_template.mdx
+++ b/api_docs/kbn_shared_ux_page_kibana_template.mdx
@@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-shared-ux-page-kibana-template
title: "@kbn/shared-ux-page-kibana-template"
image: https://source.unsplash.com/400x175/?github
description: API docs for the @kbn/shared-ux-page-kibana-template plugin
-date: 2023-09-28
+date: 2023-09-29
tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/shared-ux-page-kibana-template']
---
import kbnSharedUxPageKibanaTemplateObj from './kbn_shared_ux_page_kibana_template.devdocs.json';
diff --git a/api_docs/kbn_shared_ux_page_kibana_template_mocks.mdx b/api_docs/kbn_shared_ux_page_kibana_template_mocks.mdx
index 028d2eda96e25..44ef897575f3b 100644
--- a/api_docs/kbn_shared_ux_page_kibana_template_mocks.mdx
+++ b/api_docs/kbn_shared_ux_page_kibana_template_mocks.mdx
@@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-shared-ux-page-kibana-template-mocks
title: "@kbn/shared-ux-page-kibana-template-mocks"
image: https://source.unsplash.com/400x175/?github
description: API docs for the @kbn/shared-ux-page-kibana-template-mocks plugin
-date: 2023-09-28
+date: 2023-09-29
tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/shared-ux-page-kibana-template-mocks']
---
import kbnSharedUxPageKibanaTemplateMocksObj from './kbn_shared_ux_page_kibana_template_mocks.devdocs.json';
diff --git a/api_docs/kbn_shared_ux_page_no_data.mdx b/api_docs/kbn_shared_ux_page_no_data.mdx
index 4d90a29ad9f5f..c165a6f7c0c9a 100644
--- a/api_docs/kbn_shared_ux_page_no_data.mdx
+++ b/api_docs/kbn_shared_ux_page_no_data.mdx
@@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-shared-ux-page-no-data
title: "@kbn/shared-ux-page-no-data"
image: https://source.unsplash.com/400x175/?github
description: API docs for the @kbn/shared-ux-page-no-data plugin
-date: 2023-09-28
+date: 2023-09-29
tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/shared-ux-page-no-data']
---
import kbnSharedUxPageNoDataObj from './kbn_shared_ux_page_no_data.devdocs.json';
diff --git a/api_docs/kbn_shared_ux_page_no_data_config.mdx b/api_docs/kbn_shared_ux_page_no_data_config.mdx
index fe65189ee48d1..655c8fe8205e1 100644
--- a/api_docs/kbn_shared_ux_page_no_data_config.mdx
+++ b/api_docs/kbn_shared_ux_page_no_data_config.mdx
@@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-shared-ux-page-no-data-config
title: "@kbn/shared-ux-page-no-data-config"
image: https://source.unsplash.com/400x175/?github
description: API docs for the @kbn/shared-ux-page-no-data-config plugin
-date: 2023-09-28
+date: 2023-09-29
tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/shared-ux-page-no-data-config']
---
import kbnSharedUxPageNoDataConfigObj from './kbn_shared_ux_page_no_data_config.devdocs.json';
diff --git a/api_docs/kbn_shared_ux_page_no_data_config_mocks.mdx b/api_docs/kbn_shared_ux_page_no_data_config_mocks.mdx
index ee0280596d634..8da0ccaf455f2 100644
--- a/api_docs/kbn_shared_ux_page_no_data_config_mocks.mdx
+++ b/api_docs/kbn_shared_ux_page_no_data_config_mocks.mdx
@@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-shared-ux-page-no-data-config-mocks
title: "@kbn/shared-ux-page-no-data-config-mocks"
image: https://source.unsplash.com/400x175/?github
description: API docs for the @kbn/shared-ux-page-no-data-config-mocks plugin
-date: 2023-09-28
+date: 2023-09-29
tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/shared-ux-page-no-data-config-mocks']
---
import kbnSharedUxPageNoDataConfigMocksObj from './kbn_shared_ux_page_no_data_config_mocks.devdocs.json';
diff --git a/api_docs/kbn_shared_ux_page_no_data_mocks.mdx b/api_docs/kbn_shared_ux_page_no_data_mocks.mdx
index 8ac62210d250e..af34ade1331ca 100644
--- a/api_docs/kbn_shared_ux_page_no_data_mocks.mdx
+++ b/api_docs/kbn_shared_ux_page_no_data_mocks.mdx
@@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-shared-ux-page-no-data-mocks
title: "@kbn/shared-ux-page-no-data-mocks"
image: https://source.unsplash.com/400x175/?github
description: API docs for the @kbn/shared-ux-page-no-data-mocks plugin
-date: 2023-09-28
+date: 2023-09-29
tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/shared-ux-page-no-data-mocks']
---
import kbnSharedUxPageNoDataMocksObj from './kbn_shared_ux_page_no_data_mocks.devdocs.json';
diff --git a/api_docs/kbn_shared_ux_page_solution_nav.mdx b/api_docs/kbn_shared_ux_page_solution_nav.mdx
index 412a2d5d73aa7..5da3fe5e06257 100644
--- a/api_docs/kbn_shared_ux_page_solution_nav.mdx
+++ b/api_docs/kbn_shared_ux_page_solution_nav.mdx
@@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-shared-ux-page-solution-nav
title: "@kbn/shared-ux-page-solution-nav"
image: https://source.unsplash.com/400x175/?github
description: API docs for the @kbn/shared-ux-page-solution-nav plugin
-date: 2023-09-28
+date: 2023-09-29
tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/shared-ux-page-solution-nav']
---
import kbnSharedUxPageSolutionNavObj from './kbn_shared_ux_page_solution_nav.devdocs.json';
diff --git a/api_docs/kbn_shared_ux_prompt_no_data_views.mdx b/api_docs/kbn_shared_ux_prompt_no_data_views.mdx
index e4ece5d3de0c7..b9db7a4f6c05f 100644
--- a/api_docs/kbn_shared_ux_prompt_no_data_views.mdx
+++ b/api_docs/kbn_shared_ux_prompt_no_data_views.mdx
@@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-shared-ux-prompt-no-data-views
title: "@kbn/shared-ux-prompt-no-data-views"
image: https://source.unsplash.com/400x175/?github
description: API docs for the @kbn/shared-ux-prompt-no-data-views plugin
-date: 2023-09-28
+date: 2023-09-29
tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/shared-ux-prompt-no-data-views']
---
import kbnSharedUxPromptNoDataViewsObj from './kbn_shared_ux_prompt_no_data_views.devdocs.json';
diff --git a/api_docs/kbn_shared_ux_prompt_no_data_views_mocks.mdx b/api_docs/kbn_shared_ux_prompt_no_data_views_mocks.mdx
index 966e55209aa84..37013a45f827e 100644
--- a/api_docs/kbn_shared_ux_prompt_no_data_views_mocks.mdx
+++ b/api_docs/kbn_shared_ux_prompt_no_data_views_mocks.mdx
@@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-shared-ux-prompt-no-data-views-mocks
title: "@kbn/shared-ux-prompt-no-data-views-mocks"
image: https://source.unsplash.com/400x175/?github
description: API docs for the @kbn/shared-ux-prompt-no-data-views-mocks plugin
-date: 2023-09-28
+date: 2023-09-29
tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/shared-ux-prompt-no-data-views-mocks']
---
import kbnSharedUxPromptNoDataViewsMocksObj from './kbn_shared_ux_prompt_no_data_views_mocks.devdocs.json';
diff --git a/api_docs/kbn_shared_ux_prompt_not_found.mdx b/api_docs/kbn_shared_ux_prompt_not_found.mdx
index ac49b887bb51e..c007901293341 100644
--- a/api_docs/kbn_shared_ux_prompt_not_found.mdx
+++ b/api_docs/kbn_shared_ux_prompt_not_found.mdx
@@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-shared-ux-prompt-not-found
title: "@kbn/shared-ux-prompt-not-found"
image: https://source.unsplash.com/400x175/?github
description: API docs for the @kbn/shared-ux-prompt-not-found plugin
-date: 2023-09-28
+date: 2023-09-29
tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/shared-ux-prompt-not-found']
---
import kbnSharedUxPromptNotFoundObj from './kbn_shared_ux_prompt_not_found.devdocs.json';
diff --git a/api_docs/kbn_shared_ux_router.mdx b/api_docs/kbn_shared_ux_router.mdx
index 27e0fad1c5e26..d6863ce4df443 100644
--- a/api_docs/kbn_shared_ux_router.mdx
+++ b/api_docs/kbn_shared_ux_router.mdx
@@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-shared-ux-router
title: "@kbn/shared-ux-router"
image: https://source.unsplash.com/400x175/?github
description: API docs for the @kbn/shared-ux-router plugin
-date: 2023-09-28
+date: 2023-09-29
tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/shared-ux-router']
---
import kbnSharedUxRouterObj from './kbn_shared_ux_router.devdocs.json';
diff --git a/api_docs/kbn_shared_ux_router_mocks.mdx b/api_docs/kbn_shared_ux_router_mocks.mdx
index 521fcbc571547..85973185b8530 100644
--- a/api_docs/kbn_shared_ux_router_mocks.mdx
+++ b/api_docs/kbn_shared_ux_router_mocks.mdx
@@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-shared-ux-router-mocks
title: "@kbn/shared-ux-router-mocks"
image: https://source.unsplash.com/400x175/?github
description: API docs for the @kbn/shared-ux-router-mocks plugin
-date: 2023-09-28
+date: 2023-09-29
tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/shared-ux-router-mocks']
---
import kbnSharedUxRouterMocksObj from './kbn_shared_ux_router_mocks.devdocs.json';
diff --git a/api_docs/kbn_shared_ux_storybook_config.mdx b/api_docs/kbn_shared_ux_storybook_config.mdx
index d741b88cd5183..503b99d35c39e 100644
--- a/api_docs/kbn_shared_ux_storybook_config.mdx
+++ b/api_docs/kbn_shared_ux_storybook_config.mdx
@@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-shared-ux-storybook-config
title: "@kbn/shared-ux-storybook-config"
image: https://source.unsplash.com/400x175/?github
description: API docs for the @kbn/shared-ux-storybook-config plugin
-date: 2023-09-28
+date: 2023-09-29
tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/shared-ux-storybook-config']
---
import kbnSharedUxStorybookConfigObj from './kbn_shared_ux_storybook_config.devdocs.json';
diff --git a/api_docs/kbn_shared_ux_storybook_mock.mdx b/api_docs/kbn_shared_ux_storybook_mock.mdx
index c2bb310e7b829..c4640492cc279 100644
--- a/api_docs/kbn_shared_ux_storybook_mock.mdx
+++ b/api_docs/kbn_shared_ux_storybook_mock.mdx
@@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-shared-ux-storybook-mock
title: "@kbn/shared-ux-storybook-mock"
image: https://source.unsplash.com/400x175/?github
description: API docs for the @kbn/shared-ux-storybook-mock plugin
-date: 2023-09-28
+date: 2023-09-29
tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/shared-ux-storybook-mock']
---
import kbnSharedUxStorybookMockObj from './kbn_shared_ux_storybook_mock.devdocs.json';
diff --git a/api_docs/kbn_shared_ux_utility.mdx b/api_docs/kbn_shared_ux_utility.mdx
index 8c30da909d203..9e7b0e3b24804 100644
--- a/api_docs/kbn_shared_ux_utility.mdx
+++ b/api_docs/kbn_shared_ux_utility.mdx
@@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-shared-ux-utility
title: "@kbn/shared-ux-utility"
image: https://source.unsplash.com/400x175/?github
description: API docs for the @kbn/shared-ux-utility plugin
-date: 2023-09-28
+date: 2023-09-29
tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/shared-ux-utility']
---
import kbnSharedUxUtilityObj from './kbn_shared_ux_utility.devdocs.json';
diff --git a/api_docs/kbn_slo_schema.mdx b/api_docs/kbn_slo_schema.mdx
index 708169be81a99..ba3906658c3b4 100644
--- a/api_docs/kbn_slo_schema.mdx
+++ b/api_docs/kbn_slo_schema.mdx
@@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-slo-schema
title: "@kbn/slo-schema"
image: https://source.unsplash.com/400x175/?github
description: API docs for the @kbn/slo-schema plugin
-date: 2023-09-28
+date: 2023-09-29
tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/slo-schema']
---
import kbnSloSchemaObj from './kbn_slo_schema.devdocs.json';
diff --git a/api_docs/kbn_some_dev_log.mdx b/api_docs/kbn_some_dev_log.mdx
index 9302f6be993c2..456f2444342a7 100644
--- a/api_docs/kbn_some_dev_log.mdx
+++ b/api_docs/kbn_some_dev_log.mdx
@@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-some-dev-log
title: "@kbn/some-dev-log"
image: https://source.unsplash.com/400x175/?github
description: API docs for the @kbn/some-dev-log plugin
-date: 2023-09-28
+date: 2023-09-29
tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/some-dev-log']
---
import kbnSomeDevLogObj from './kbn_some_dev_log.devdocs.json';
diff --git a/api_docs/kbn_std.mdx b/api_docs/kbn_std.mdx
index d7f33b386aac3..3277bce5f33e5 100644
--- a/api_docs/kbn_std.mdx
+++ b/api_docs/kbn_std.mdx
@@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-std
title: "@kbn/std"
image: https://source.unsplash.com/400x175/?github
description: API docs for the @kbn/std plugin
-date: 2023-09-28
+date: 2023-09-29
tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/std']
---
import kbnStdObj from './kbn_std.devdocs.json';
diff --git a/api_docs/kbn_stdio_dev_helpers.mdx b/api_docs/kbn_stdio_dev_helpers.mdx
index 55b91e59b0a75..02a93e0f68f8e 100644
--- a/api_docs/kbn_stdio_dev_helpers.mdx
+++ b/api_docs/kbn_stdio_dev_helpers.mdx
@@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-stdio-dev-helpers
title: "@kbn/stdio-dev-helpers"
image: https://source.unsplash.com/400x175/?github
description: API docs for the @kbn/stdio-dev-helpers plugin
-date: 2023-09-28
+date: 2023-09-29
tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/stdio-dev-helpers']
---
import kbnStdioDevHelpersObj from './kbn_stdio_dev_helpers.devdocs.json';
diff --git a/api_docs/kbn_storybook.mdx b/api_docs/kbn_storybook.mdx
index bc5ad8eae4f36..132b0b1999339 100644
--- a/api_docs/kbn_storybook.mdx
+++ b/api_docs/kbn_storybook.mdx
@@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-storybook
title: "@kbn/storybook"
image: https://source.unsplash.com/400x175/?github
description: API docs for the @kbn/storybook plugin
-date: 2023-09-28
+date: 2023-09-29
tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/storybook']
---
import kbnStorybookObj from './kbn_storybook.devdocs.json';
diff --git a/api_docs/kbn_subscription_tracking.mdx b/api_docs/kbn_subscription_tracking.mdx
index ab081a92b82fb..8dc6bfd56bb05 100644
--- a/api_docs/kbn_subscription_tracking.mdx
+++ b/api_docs/kbn_subscription_tracking.mdx
@@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-subscription-tracking
title: "@kbn/subscription-tracking"
image: https://source.unsplash.com/400x175/?github
description: API docs for the @kbn/subscription-tracking plugin
-date: 2023-09-28
+date: 2023-09-29
tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/subscription-tracking']
---
import kbnSubscriptionTrackingObj from './kbn_subscription_tracking.devdocs.json';
diff --git a/api_docs/kbn_telemetry_tools.mdx b/api_docs/kbn_telemetry_tools.mdx
index 64c7815d0b597..f44ec985300e4 100644
--- a/api_docs/kbn_telemetry_tools.mdx
+++ b/api_docs/kbn_telemetry_tools.mdx
@@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-telemetry-tools
title: "@kbn/telemetry-tools"
image: https://source.unsplash.com/400x175/?github
description: API docs for the @kbn/telemetry-tools plugin
-date: 2023-09-28
+date: 2023-09-29
tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/telemetry-tools']
---
import kbnTelemetryToolsObj from './kbn_telemetry_tools.devdocs.json';
diff --git a/api_docs/kbn_test.mdx b/api_docs/kbn_test.mdx
index 35e27bc8564f2..b330a0fce33a4 100644
--- a/api_docs/kbn_test.mdx
+++ b/api_docs/kbn_test.mdx
@@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-test
title: "@kbn/test"
image: https://source.unsplash.com/400x175/?github
description: API docs for the @kbn/test plugin
-date: 2023-09-28
+date: 2023-09-29
tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/test']
---
import kbnTestObj from './kbn_test.devdocs.json';
diff --git a/api_docs/kbn_test_jest_helpers.mdx b/api_docs/kbn_test_jest_helpers.mdx
index 346b18ef1d64e..6038c0e7e756c 100644
--- a/api_docs/kbn_test_jest_helpers.mdx
+++ b/api_docs/kbn_test_jest_helpers.mdx
@@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-test-jest-helpers
title: "@kbn/test-jest-helpers"
image: https://source.unsplash.com/400x175/?github
description: API docs for the @kbn/test-jest-helpers plugin
-date: 2023-09-28
+date: 2023-09-29
tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/test-jest-helpers']
---
import kbnTestJestHelpersObj from './kbn_test_jest_helpers.devdocs.json';
diff --git a/api_docs/kbn_test_subj_selector.mdx b/api_docs/kbn_test_subj_selector.mdx
index e10be8a87ee40..e3768c69b3aeb 100644
--- a/api_docs/kbn_test_subj_selector.mdx
+++ b/api_docs/kbn_test_subj_selector.mdx
@@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-test-subj-selector
title: "@kbn/test-subj-selector"
image: https://source.unsplash.com/400x175/?github
description: API docs for the @kbn/test-subj-selector plugin
-date: 2023-09-28
+date: 2023-09-29
tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/test-subj-selector']
---
import kbnTestSubjSelectorObj from './kbn_test_subj_selector.devdocs.json';
diff --git a/api_docs/kbn_text_based_editor.mdx b/api_docs/kbn_text_based_editor.mdx
index 9adda79f97a43..a6d0100a80ce2 100644
--- a/api_docs/kbn_text_based_editor.mdx
+++ b/api_docs/kbn_text_based_editor.mdx
@@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-text-based-editor
title: "@kbn/text-based-editor"
image: https://source.unsplash.com/400x175/?github
description: API docs for the @kbn/text-based-editor plugin
-date: 2023-09-28
+date: 2023-09-29
tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/text-based-editor']
---
import kbnTextBasedEditorObj from './kbn_text_based_editor.devdocs.json';
diff --git a/api_docs/kbn_tooling_log.mdx b/api_docs/kbn_tooling_log.mdx
index 60522e9769d40..084755a45106c 100644
--- a/api_docs/kbn_tooling_log.mdx
+++ b/api_docs/kbn_tooling_log.mdx
@@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-tooling-log
title: "@kbn/tooling-log"
image: https://source.unsplash.com/400x175/?github
description: API docs for the @kbn/tooling-log plugin
-date: 2023-09-28
+date: 2023-09-29
tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/tooling-log']
---
import kbnToolingLogObj from './kbn_tooling_log.devdocs.json';
diff --git a/api_docs/kbn_ts_projects.mdx b/api_docs/kbn_ts_projects.mdx
index b06bc32a5fd00..dfeb0de58a918 100644
--- a/api_docs/kbn_ts_projects.mdx
+++ b/api_docs/kbn_ts_projects.mdx
@@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-ts-projects
title: "@kbn/ts-projects"
image: https://source.unsplash.com/400x175/?github
description: API docs for the @kbn/ts-projects plugin
-date: 2023-09-28
+date: 2023-09-29
tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/ts-projects']
---
import kbnTsProjectsObj from './kbn_ts_projects.devdocs.json';
diff --git a/api_docs/kbn_typed_react_router_config.mdx b/api_docs/kbn_typed_react_router_config.mdx
index e939c892ed6c6..01d0e604593b5 100644
--- a/api_docs/kbn_typed_react_router_config.mdx
+++ b/api_docs/kbn_typed_react_router_config.mdx
@@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-typed-react-router-config
title: "@kbn/typed-react-router-config"
image: https://source.unsplash.com/400x175/?github
description: API docs for the @kbn/typed-react-router-config plugin
-date: 2023-09-28
+date: 2023-09-29
tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/typed-react-router-config']
---
import kbnTypedReactRouterConfigObj from './kbn_typed_react_router_config.devdocs.json';
diff --git a/api_docs/kbn_ui_actions_browser.mdx b/api_docs/kbn_ui_actions_browser.mdx
index 16594f38fdecc..8d04c57bc0ff3 100644
--- a/api_docs/kbn_ui_actions_browser.mdx
+++ b/api_docs/kbn_ui_actions_browser.mdx
@@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-ui-actions-browser
title: "@kbn/ui-actions-browser"
image: https://source.unsplash.com/400x175/?github
description: API docs for the @kbn/ui-actions-browser plugin
-date: 2023-09-28
+date: 2023-09-29
tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/ui-actions-browser']
---
import kbnUiActionsBrowserObj from './kbn_ui_actions_browser.devdocs.json';
diff --git a/api_docs/kbn_ui_shared_deps_src.mdx b/api_docs/kbn_ui_shared_deps_src.mdx
index a62c37fd2c017..89fc6c55035e2 100644
--- a/api_docs/kbn_ui_shared_deps_src.mdx
+++ b/api_docs/kbn_ui_shared_deps_src.mdx
@@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-ui-shared-deps-src
title: "@kbn/ui-shared-deps-src"
image: https://source.unsplash.com/400x175/?github
description: API docs for the @kbn/ui-shared-deps-src plugin
-date: 2023-09-28
+date: 2023-09-29
tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/ui-shared-deps-src']
---
import kbnUiSharedDepsSrcObj from './kbn_ui_shared_deps_src.devdocs.json';
diff --git a/api_docs/kbn_ui_theme.mdx b/api_docs/kbn_ui_theme.mdx
index 8d192906ea3e6..c6a37714db12e 100644
--- a/api_docs/kbn_ui_theme.mdx
+++ b/api_docs/kbn_ui_theme.mdx
@@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-ui-theme
title: "@kbn/ui-theme"
image: https://source.unsplash.com/400x175/?github
description: API docs for the @kbn/ui-theme plugin
-date: 2023-09-28
+date: 2023-09-29
tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/ui-theme']
---
import kbnUiThemeObj from './kbn_ui_theme.devdocs.json';
diff --git a/api_docs/kbn_unified_data_table.mdx b/api_docs/kbn_unified_data_table.mdx
index 0a24e5335869b..84f06fff28c36 100644
--- a/api_docs/kbn_unified_data_table.mdx
+++ b/api_docs/kbn_unified_data_table.mdx
@@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-unified-data-table
title: "@kbn/unified-data-table"
image: https://source.unsplash.com/400x175/?github
description: API docs for the @kbn/unified-data-table plugin
-date: 2023-09-28
+date: 2023-09-29
tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/unified-data-table']
---
import kbnUnifiedDataTableObj from './kbn_unified_data_table.devdocs.json';
diff --git a/api_docs/kbn_unified_doc_viewer.mdx b/api_docs/kbn_unified_doc_viewer.mdx
index 1068b890ff107..2962a7bedd9bb 100644
--- a/api_docs/kbn_unified_doc_viewer.mdx
+++ b/api_docs/kbn_unified_doc_viewer.mdx
@@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-unified-doc-viewer
title: "@kbn/unified-doc-viewer"
image: https://source.unsplash.com/400x175/?github
description: API docs for the @kbn/unified-doc-viewer plugin
-date: 2023-09-28
+date: 2023-09-29
tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/unified-doc-viewer']
---
import kbnUnifiedDocViewerObj from './kbn_unified_doc_viewer.devdocs.json';
diff --git a/api_docs/kbn_unified_field_list.mdx b/api_docs/kbn_unified_field_list.mdx
index 6a49b4646622c..4cb52585e7603 100644
--- a/api_docs/kbn_unified_field_list.mdx
+++ b/api_docs/kbn_unified_field_list.mdx
@@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-unified-field-list
title: "@kbn/unified-field-list"
image: https://source.unsplash.com/400x175/?github
description: API docs for the @kbn/unified-field-list plugin
-date: 2023-09-28
+date: 2023-09-29
tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/unified-field-list']
---
import kbnUnifiedFieldListObj from './kbn_unified_field_list.devdocs.json';
diff --git a/api_docs/kbn_url_state.mdx b/api_docs/kbn_url_state.mdx
index 26e402080d3fc..cb5ca866a664f 100644
--- a/api_docs/kbn_url_state.mdx
+++ b/api_docs/kbn_url_state.mdx
@@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-url-state
title: "@kbn/url-state"
image: https://source.unsplash.com/400x175/?github
description: API docs for the @kbn/url-state plugin
-date: 2023-09-28
+date: 2023-09-29
tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/url-state']
---
import kbnUrlStateObj from './kbn_url_state.devdocs.json';
diff --git a/api_docs/kbn_use_tracked_promise.mdx b/api_docs/kbn_use_tracked_promise.mdx
index 28b2af411cb4f..25538aede5ca1 100644
--- a/api_docs/kbn_use_tracked_promise.mdx
+++ b/api_docs/kbn_use_tracked_promise.mdx
@@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-use-tracked-promise
title: "@kbn/use-tracked-promise"
image: https://source.unsplash.com/400x175/?github
description: API docs for the @kbn/use-tracked-promise plugin
-date: 2023-09-28
+date: 2023-09-29
tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/use-tracked-promise']
---
import kbnUseTrackedPromiseObj from './kbn_use_tracked_promise.devdocs.json';
diff --git a/api_docs/kbn_user_profile_components.mdx b/api_docs/kbn_user_profile_components.mdx
index 16be8cdc9c8e0..18339a3df9781 100644
--- a/api_docs/kbn_user_profile_components.mdx
+++ b/api_docs/kbn_user_profile_components.mdx
@@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-user-profile-components
title: "@kbn/user-profile-components"
image: https://source.unsplash.com/400x175/?github
description: API docs for the @kbn/user-profile-components plugin
-date: 2023-09-28
+date: 2023-09-29
tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/user-profile-components']
---
import kbnUserProfileComponentsObj from './kbn_user_profile_components.devdocs.json';
diff --git a/api_docs/kbn_utility_types.mdx b/api_docs/kbn_utility_types.mdx
index d07714300e6b0..01f4bcc0782e8 100644
--- a/api_docs/kbn_utility_types.mdx
+++ b/api_docs/kbn_utility_types.mdx
@@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-utility-types
title: "@kbn/utility-types"
image: https://source.unsplash.com/400x175/?github
description: API docs for the @kbn/utility-types plugin
-date: 2023-09-28
+date: 2023-09-29
tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/utility-types']
---
import kbnUtilityTypesObj from './kbn_utility_types.devdocs.json';
diff --git a/api_docs/kbn_utility_types_jest.mdx b/api_docs/kbn_utility_types_jest.mdx
index 33c9bc9df91a5..0a3371065d4e4 100644
--- a/api_docs/kbn_utility_types_jest.mdx
+++ b/api_docs/kbn_utility_types_jest.mdx
@@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-utility-types-jest
title: "@kbn/utility-types-jest"
image: https://source.unsplash.com/400x175/?github
description: API docs for the @kbn/utility-types-jest plugin
-date: 2023-09-28
+date: 2023-09-29
tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/utility-types-jest']
---
import kbnUtilityTypesJestObj from './kbn_utility_types_jest.devdocs.json';
diff --git a/api_docs/kbn_utils.mdx b/api_docs/kbn_utils.mdx
index 8a747ed52c558..0fd6842e455ed 100644
--- a/api_docs/kbn_utils.mdx
+++ b/api_docs/kbn_utils.mdx
@@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-utils
title: "@kbn/utils"
image: https://source.unsplash.com/400x175/?github
description: API docs for the @kbn/utils plugin
-date: 2023-09-28
+date: 2023-09-29
tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/utils']
---
import kbnUtilsObj from './kbn_utils.devdocs.json';
diff --git a/api_docs/kbn_visualization_ui_components.mdx b/api_docs/kbn_visualization_ui_components.mdx
index e60503ecae387..c0085a267d64f 100644
--- a/api_docs/kbn_visualization_ui_components.mdx
+++ b/api_docs/kbn_visualization_ui_components.mdx
@@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-visualization-ui-components
title: "@kbn/visualization-ui-components"
image: https://source.unsplash.com/400x175/?github
description: API docs for the @kbn/visualization-ui-components plugin
-date: 2023-09-28
+date: 2023-09-29
tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/visualization-ui-components']
---
import kbnVisualizationUiComponentsObj from './kbn_visualization_ui_components.devdocs.json';
diff --git a/api_docs/kbn_xstate_utils.mdx b/api_docs/kbn_xstate_utils.mdx
index c64bf054548aa..f1011adceb424 100644
--- a/api_docs/kbn_xstate_utils.mdx
+++ b/api_docs/kbn_xstate_utils.mdx
@@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-xstate-utils
title: "@kbn/xstate-utils"
image: https://source.unsplash.com/400x175/?github
description: API docs for the @kbn/xstate-utils plugin
-date: 2023-09-28
+date: 2023-09-29
tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/xstate-utils']
---
import kbnXstateUtilsObj from './kbn_xstate_utils.devdocs.json';
diff --git a/api_docs/kbn_yarn_lock_validator.mdx b/api_docs/kbn_yarn_lock_validator.mdx
index 74c8140a1348d..c7dd8ed74a200 100644
--- a/api_docs/kbn_yarn_lock_validator.mdx
+++ b/api_docs/kbn_yarn_lock_validator.mdx
@@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-yarn-lock-validator
title: "@kbn/yarn-lock-validator"
image: https://source.unsplash.com/400x175/?github
description: API docs for the @kbn/yarn-lock-validator plugin
-date: 2023-09-28
+date: 2023-09-29
tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/yarn-lock-validator']
---
import kbnYarnLockValidatorObj from './kbn_yarn_lock_validator.devdocs.json';
diff --git a/api_docs/kibana_overview.mdx b/api_docs/kibana_overview.mdx
index ec4bd0cba68c0..636f70a4f5c64 100644
--- a/api_docs/kibana_overview.mdx
+++ b/api_docs/kibana_overview.mdx
@@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kibanaOverview
title: "kibanaOverview"
image: https://source.unsplash.com/400x175/?github
description: API docs for the kibanaOverview plugin
-date: 2023-09-28
+date: 2023-09-29
tags: ['contributor', 'dev', 'apidocs', 'kibana', 'kibanaOverview']
---
import kibanaOverviewObj from './kibana_overview.devdocs.json';
diff --git a/api_docs/kibana_react.devdocs.json b/api_docs/kibana_react.devdocs.json
index bf5d418cd5014..969cebfb62b9e 100644
--- a/api_docs/kibana_react.devdocs.json
+++ b/api_docs/kibana_react.devdocs.json
@@ -699,126 +699,6 @@
"plugin": "spaces",
"path": "x-pack/plugins/spaces/public/space_selector/space_selector.tsx"
},
- {
- "plugin": "security",
- "path": "x-pack/plugins/security/public/authentication/access_agreement/access_agreement_page.tsx"
- },
- {
- "plugin": "security",
- "path": "x-pack/plugins/security/public/authentication/access_agreement/access_agreement_page.tsx"
- },
- {
- "plugin": "security",
- "path": "x-pack/plugins/security/public/authentication/access_agreement/access_agreement_page.tsx"
- },
- {
- "plugin": "security",
- "path": "x-pack/plugins/security/public/authentication/logged_out/logged_out_page.tsx"
- },
- {
- "plugin": "security",
- "path": "x-pack/plugins/security/public/authentication/logged_out/logged_out_page.tsx"
- },
- {
- "plugin": "security",
- "path": "x-pack/plugins/security/public/authentication/logged_out/logged_out_page.tsx"
- },
- {
- "plugin": "security",
- "path": "x-pack/plugins/security/public/authentication/login/login_page.tsx"
- },
- {
- "plugin": "security",
- "path": "x-pack/plugins/security/public/authentication/login/login_page.tsx"
- },
- {
- "plugin": "security",
- "path": "x-pack/plugins/security/public/authentication/login/login_page.tsx"
- },
- {
- "plugin": "security",
- "path": "x-pack/plugins/security/public/authentication/overwritten_session/overwritten_session_page.tsx"
- },
- {
- "plugin": "security",
- "path": "x-pack/plugins/security/public/authentication/overwritten_session/overwritten_session_page.tsx"
- },
- {
- "plugin": "security",
- "path": "x-pack/plugins/security/public/authentication/overwritten_session/overwritten_session_page.tsx"
- },
- {
- "plugin": "security",
- "path": "x-pack/plugins/security/public/management/api_keys/api_keys_management_app.tsx"
- },
- {
- "plugin": "security",
- "path": "x-pack/plugins/security/public/management/api_keys/api_keys_management_app.tsx"
- },
- {
- "plugin": "security",
- "path": "x-pack/plugins/security/public/management/api_keys/api_keys_management_app.tsx"
- },
- {
- "plugin": "security",
- "path": "x-pack/plugins/security/public/management/users/users_management_app.tsx"
- },
- {
- "plugin": "security",
- "path": "x-pack/plugins/security/public/management/users/users_management_app.tsx"
- },
- {
- "plugin": "security",
- "path": "x-pack/plugins/security/public/management/users/users_management_app.tsx"
- },
- {
- "plugin": "security",
- "path": "x-pack/plugins/security/public/management/roles/roles_management_app.tsx"
- },
- {
- "plugin": "security",
- "path": "x-pack/plugins/security/public/management/roles/roles_management_app.tsx"
- },
- {
- "plugin": "security",
- "path": "x-pack/plugins/security/public/management/roles/roles_management_app.tsx"
- },
- {
- "plugin": "security",
- "path": "x-pack/plugins/security/public/management/role_mappings/role_mappings_management_app.tsx"
- },
- {
- "plugin": "security",
- "path": "x-pack/plugins/security/public/management/role_mappings/role_mappings_management_app.tsx"
- },
- {
- "plugin": "security",
- "path": "x-pack/plugins/security/public/management/role_mappings/role_mappings_management_app.tsx"
- },
- {
- "plugin": "security",
- "path": "x-pack/plugins/security/public/account_management/account_management_app.tsx"
- },
- {
- "plugin": "security",
- "path": "x-pack/plugins/security/public/account_management/account_management_app.tsx"
- },
- {
- "plugin": "security",
- "path": "x-pack/plugins/security/public/account_management/account_management_app.tsx"
- },
- {
- "plugin": "security",
- "path": "x-pack/plugins/security/public/nav_control/nav_control_service.tsx"
- },
- {
- "plugin": "security",
- "path": "x-pack/plugins/security/public/nav_control/nav_control_service.tsx"
- },
- {
- "plugin": "security",
- "path": "x-pack/plugins/security/public/nav_control/nav_control_service.tsx"
- },
{
"plugin": "savedObjects",
"path": "src/plugins/saved_objects/public/save_modal/show_saved_object_save_modal.tsx"
@@ -1115,6 +995,126 @@
"plugin": "lens",
"path": "x-pack/plugins/lens/public/embeddable/embeddable.tsx"
},
+ {
+ "plugin": "security",
+ "path": "x-pack/plugins/security/public/authentication/access_agreement/access_agreement_page.tsx"
+ },
+ {
+ "plugin": "security",
+ "path": "x-pack/plugins/security/public/authentication/access_agreement/access_agreement_page.tsx"
+ },
+ {
+ "plugin": "security",
+ "path": "x-pack/plugins/security/public/authentication/access_agreement/access_agreement_page.tsx"
+ },
+ {
+ "plugin": "security",
+ "path": "x-pack/plugins/security/public/authentication/logged_out/logged_out_page.tsx"
+ },
+ {
+ "plugin": "security",
+ "path": "x-pack/plugins/security/public/authentication/logged_out/logged_out_page.tsx"
+ },
+ {
+ "plugin": "security",
+ "path": "x-pack/plugins/security/public/authentication/logged_out/logged_out_page.tsx"
+ },
+ {
+ "plugin": "security",
+ "path": "x-pack/plugins/security/public/authentication/login/login_page.tsx"
+ },
+ {
+ "plugin": "security",
+ "path": "x-pack/plugins/security/public/authentication/login/login_page.tsx"
+ },
+ {
+ "plugin": "security",
+ "path": "x-pack/plugins/security/public/authentication/login/login_page.tsx"
+ },
+ {
+ "plugin": "security",
+ "path": "x-pack/plugins/security/public/authentication/overwritten_session/overwritten_session_page.tsx"
+ },
+ {
+ "plugin": "security",
+ "path": "x-pack/plugins/security/public/authentication/overwritten_session/overwritten_session_page.tsx"
+ },
+ {
+ "plugin": "security",
+ "path": "x-pack/plugins/security/public/authentication/overwritten_session/overwritten_session_page.tsx"
+ },
+ {
+ "plugin": "security",
+ "path": "x-pack/plugins/security/public/management/api_keys/api_keys_management_app.tsx"
+ },
+ {
+ "plugin": "security",
+ "path": "x-pack/plugins/security/public/management/api_keys/api_keys_management_app.tsx"
+ },
+ {
+ "plugin": "security",
+ "path": "x-pack/plugins/security/public/management/api_keys/api_keys_management_app.tsx"
+ },
+ {
+ "plugin": "security",
+ "path": "x-pack/plugins/security/public/management/users/users_management_app.tsx"
+ },
+ {
+ "plugin": "security",
+ "path": "x-pack/plugins/security/public/management/users/users_management_app.tsx"
+ },
+ {
+ "plugin": "security",
+ "path": "x-pack/plugins/security/public/management/users/users_management_app.tsx"
+ },
+ {
+ "plugin": "security",
+ "path": "x-pack/plugins/security/public/management/roles/roles_management_app.tsx"
+ },
+ {
+ "plugin": "security",
+ "path": "x-pack/plugins/security/public/management/roles/roles_management_app.tsx"
+ },
+ {
+ "plugin": "security",
+ "path": "x-pack/plugins/security/public/management/roles/roles_management_app.tsx"
+ },
+ {
+ "plugin": "security",
+ "path": "x-pack/plugins/security/public/management/role_mappings/role_mappings_management_app.tsx"
+ },
+ {
+ "plugin": "security",
+ "path": "x-pack/plugins/security/public/management/role_mappings/role_mappings_management_app.tsx"
+ },
+ {
+ "plugin": "security",
+ "path": "x-pack/plugins/security/public/management/role_mappings/role_mappings_management_app.tsx"
+ },
+ {
+ "plugin": "security",
+ "path": "x-pack/plugins/security/public/account_management/account_management_app.tsx"
+ },
+ {
+ "plugin": "security",
+ "path": "x-pack/plugins/security/public/account_management/account_management_app.tsx"
+ },
+ {
+ "plugin": "security",
+ "path": "x-pack/plugins/security/public/account_management/account_management_app.tsx"
+ },
+ {
+ "plugin": "security",
+ "path": "x-pack/plugins/security/public/nav_control/nav_control_service.tsx"
+ },
+ {
+ "plugin": "security",
+ "path": "x-pack/plugins/security/public/nav_control/nav_control_service.tsx"
+ },
+ {
+ "plugin": "security",
+ "path": "x-pack/plugins/security/public/nav_control/nav_control_service.tsx"
+ },
{
"plugin": "alerting",
"path": "x-pack/plugins/alerting/public/application/maintenance_windows.tsx"
@@ -1163,6 +1163,54 @@
"plugin": "cases",
"path": "x-pack/plugins/cases/public/application.tsx"
},
+ {
+ "plugin": "aiops",
+ "path": "x-pack/plugins/aiops/public/embeddable/embeddable_change_point_chart.tsx"
+ },
+ {
+ "plugin": "aiops",
+ "path": "x-pack/plugins/aiops/public/embeddable/embeddable_change_point_chart.tsx"
+ },
+ {
+ "plugin": "aiops",
+ "path": "x-pack/plugins/aiops/public/embeddable/embeddable_change_point_chart.tsx"
+ },
+ {
+ "plugin": "exploratoryView",
+ "path": "x-pack/plugins/exploratory_view/public/application/index.tsx"
+ },
+ {
+ "plugin": "exploratoryView",
+ "path": "x-pack/plugins/exploratory_view/public/application/index.tsx"
+ },
+ {
+ "plugin": "exploratoryView",
+ "path": "x-pack/plugins/exploratory_view/public/application/index.tsx"
+ },
+ {
+ "plugin": "fleet",
+ "path": "x-pack/plugins/fleet/public/applications/integrations/app.tsx"
+ },
+ {
+ "plugin": "fleet",
+ "path": "x-pack/plugins/fleet/public/applications/integrations/app.tsx"
+ },
+ {
+ "plugin": "fleet",
+ "path": "x-pack/plugins/fleet/public/applications/integrations/app.tsx"
+ },
+ {
+ "plugin": "fleet",
+ "path": "x-pack/plugins/fleet/public/applications/fleet/app.tsx"
+ },
+ {
+ "plugin": "fleet",
+ "path": "x-pack/plugins/fleet/public/applications/fleet/app.tsx"
+ },
+ {
+ "plugin": "fleet",
+ "path": "x-pack/plugins/fleet/public/applications/fleet/app.tsx"
+ },
{
"plugin": "licenseManagement",
"path": "x-pack/plugins/license_management/public/shared_imports.ts"
@@ -1263,18 +1311,6 @@
"plugin": "dataVisualizer",
"path": "x-pack/plugins/data_visualizer/public/application/data_drift/data_drift_app_state.tsx"
},
- {
- "plugin": "aiops",
- "path": "x-pack/plugins/aiops/public/embeddable/embeddable_change_point_chart.tsx"
- },
- {
- "plugin": "aiops",
- "path": "x-pack/plugins/aiops/public/embeddable/embeddable_change_point_chart.tsx"
- },
- {
- "plugin": "aiops",
- "path": "x-pack/plugins/aiops/public/embeddable/embeddable_change_point_chart.tsx"
- },
{
"plugin": "ml",
"path": "x-pack/plugins/ml/public/embeddables/anomaly_charts/anomaly_charts_embeddable.tsx"
@@ -1323,42 +1359,6 @@
"plugin": "ml",
"path": "x-pack/plugins/ml/public/application/management/jobs_list/components/jobs_list_page/jobs_list_page.tsx"
},
- {
- "plugin": "exploratoryView",
- "path": "x-pack/plugins/exploratory_view/public/application/index.tsx"
- },
- {
- "plugin": "exploratoryView",
- "path": "x-pack/plugins/exploratory_view/public/application/index.tsx"
- },
- {
- "plugin": "exploratoryView",
- "path": "x-pack/plugins/exploratory_view/public/application/index.tsx"
- },
- {
- "plugin": "fleet",
- "path": "x-pack/plugins/fleet/public/applications/integrations/app.tsx"
- },
- {
- "plugin": "fleet",
- "path": "x-pack/plugins/fleet/public/applications/integrations/app.tsx"
- },
- {
- "plugin": "fleet",
- "path": "x-pack/plugins/fleet/public/applications/integrations/app.tsx"
- },
- {
- "plugin": "fleet",
- "path": "x-pack/plugins/fleet/public/applications/fleet/app.tsx"
- },
- {
- "plugin": "fleet",
- "path": "x-pack/plugins/fleet/public/applications/fleet/app.tsx"
- },
- {
- "plugin": "fleet",
- "path": "x-pack/plugins/fleet/public/applications/fleet/app.tsx"
- },
{
"plugin": "infra",
"path": "x-pack/plugins/infra/public/apps/common_providers.tsx"
@@ -2676,18 +2676,6 @@
"plugin": "savedObjectsManagement",
"path": "src/plugins/saved_objects_management/public/management_section/objects_table/saved_objects_table.tsx"
},
- {
- "plugin": "ml",
- "path": "x-pack/plugins/ml/public/application/management/jobs_list/components/jobs_list_page/jobs_list_page.tsx"
- },
- {
- "plugin": "ml",
- "path": "x-pack/plugins/ml/public/application/management/jobs_list/components/jobs_list_page/jobs_list_page.tsx"
- },
- {
- "plugin": "ml",
- "path": "x-pack/plugins/ml/public/application/management/jobs_list/components/jobs_list_page/jobs_list_page.tsx"
- },
{
"plugin": "exploratoryView",
"path": "x-pack/plugins/exploratory_view/public/application/index.tsx"
@@ -2772,6 +2760,18 @@
"plugin": "observability",
"path": "x-pack/plugins/observability/public/application/index.tsx"
},
+ {
+ "plugin": "ml",
+ "path": "x-pack/plugins/ml/public/application/management/jobs_list/components/jobs_list_page/jobs_list_page.tsx"
+ },
+ {
+ "plugin": "ml",
+ "path": "x-pack/plugins/ml/public/application/management/jobs_list/components/jobs_list_page/jobs_list_page.tsx"
+ },
+ {
+ "plugin": "ml",
+ "path": "x-pack/plugins/ml/public/application/management/jobs_list/components/jobs_list_page/jobs_list_page.tsx"
+ },
{
"plugin": "apm",
"path": "x-pack/plugins/apm/public/components/routing/app_root/index.tsx"
@@ -3033,30 +3033,6 @@
"plugin": "data",
"path": "src/plugins/data/public/search/search_service.ts"
},
- {
- "plugin": "licensing",
- "path": "x-pack/plugins/licensing/public/expired_banner.tsx"
- },
- {
- "plugin": "licensing",
- "path": "x-pack/plugins/licensing/public/expired_banner.tsx"
- },
- {
- "plugin": "security",
- "path": "x-pack/plugins/security/public/account_management/account_management_app.tsx"
- },
- {
- "plugin": "security",
- "path": "x-pack/plugins/security/public/account_management/account_management_app.tsx"
- },
- {
- "plugin": "security",
- "path": "x-pack/plugins/security/public/session/session_expiration_toast.tsx"
- },
- {
- "plugin": "security",
- "path": "x-pack/plugins/security/public/session/session_expiration_toast.tsx"
- },
{
"plugin": "savedObjects",
"path": "src/plugins/saved_objects/public/saved_object/helpers/confirm_modal_promise.tsx"
@@ -3217,6 +3193,14 @@
"plugin": "dashboard",
"path": "src/plugins/dashboard/public/dashboard_listing/dashboard_listing_table.tsx"
},
+ {
+ "plugin": "licensing",
+ "path": "x-pack/plugins/licensing/public/expired_banner.tsx"
+ },
+ {
+ "plugin": "licensing",
+ "path": "x-pack/plugins/licensing/public/expired_banner.tsx"
+ },
{
"plugin": "savedObjectsTagging",
"path": "x-pack/plugins/saved_objects_tagging/public/components/edition_modal/open_modal.tsx"
@@ -3281,6 +3265,22 @@
"plugin": "lens",
"path": "x-pack/plugins/lens/public/trigger_actions/open_lens_config/helpers.ts"
},
+ {
+ "plugin": "security",
+ "path": "x-pack/plugins/security/public/account_management/account_management_app.tsx"
+ },
+ {
+ "plugin": "security",
+ "path": "x-pack/plugins/security/public/account_management/account_management_app.tsx"
+ },
+ {
+ "plugin": "security",
+ "path": "x-pack/plugins/security/public/session/session_expiration_toast.tsx"
+ },
+ {
+ "plugin": "security",
+ "path": "x-pack/plugins/security/public/session/session_expiration_toast.tsx"
+ },
{
"plugin": "triggersActionsUi",
"path": "x-pack/plugins/triggers_actions_ui/public/application/hooks/use_bulk_edit_response.tsx"
@@ -3349,30 +3349,6 @@
"plugin": "observabilityShared",
"path": "x-pack/plugins/observability_shared/public/components/header_menu/header_menu_portal.tsx"
},
- {
- "plugin": "telemetry",
- "path": "src/plugins/telemetry/public/services/telemetry_notifications/render_opt_in_status_notice_banner.tsx"
- },
- {
- "plugin": "telemetry",
- "path": "src/plugins/telemetry/public/services/telemetry_notifications/render_opt_in_status_notice_banner.tsx"
- },
- {
- "plugin": "advancedSettings",
- "path": "src/plugins/advanced_settings/public/management_app/components/form/form.tsx"
- },
- {
- "plugin": "advancedSettings",
- "path": "src/plugins/advanced_settings/public/management_app/components/form/form.tsx"
- },
- {
- "plugin": "maps",
- "path": "x-pack/plugins/maps/public/render_app.tsx"
- },
- {
- "plugin": "maps",
- "path": "x-pack/plugins/maps/public/render_app.tsx"
- },
{
"plugin": "exploratoryView",
"path": "x-pack/plugins/exploratory_view/public/components/shared/exploratory_view/header/add_to_case_action.tsx"
@@ -3470,12 +3446,28 @@
"path": "x-pack/plugins/fleet/public/applications/integrations/components/header/header_portal.tsx"
},
{
- "plugin": "observability",
- "path": "x-pack/plugins/observability/public/pages/overview/components/header_menu/header_menu_portal.tsx"
+ "plugin": "telemetry",
+ "path": "src/plugins/telemetry/public/services/telemetry_notifications/render_opt_in_status_notice_banner.tsx"
},
{
- "plugin": "observability",
- "path": "x-pack/plugins/observability/public/pages/overview/components/header_menu/header_menu_portal.tsx"
+ "plugin": "telemetry",
+ "path": "src/plugins/telemetry/public/services/telemetry_notifications/render_opt_in_status_notice_banner.tsx"
+ },
+ {
+ "plugin": "advancedSettings",
+ "path": "src/plugins/advanced_settings/public/management_app/components/form/form.tsx"
+ },
+ {
+ "plugin": "advancedSettings",
+ "path": "src/plugins/advanced_settings/public/management_app/components/form/form.tsx"
+ },
+ {
+ "plugin": "maps",
+ "path": "x-pack/plugins/maps/public/render_app.tsx"
+ },
+ {
+ "plugin": "maps",
+ "path": "x-pack/plugins/maps/public/render_app.tsx"
},
{
"plugin": "banners",
diff --git a/api_docs/kibana_react.mdx b/api_docs/kibana_react.mdx
index 80d17157a337c..9b32c6e03b32d 100644
--- a/api_docs/kibana_react.mdx
+++ b/api_docs/kibana_react.mdx
@@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kibanaReact
title: "kibanaReact"
image: https://source.unsplash.com/400x175/?github
description: API docs for the kibanaReact plugin
-date: 2023-09-28
+date: 2023-09-29
tags: ['contributor', 'dev', 'apidocs', 'kibana', 'kibanaReact']
---
import kibanaReactObj from './kibana_react.devdocs.json';
diff --git a/api_docs/kibana_utils.devdocs.json b/api_docs/kibana_utils.devdocs.json
index 49a839d4e4d8c..a0c1a249a615d 100644
--- a/api_docs/kibana_utils.devdocs.json
+++ b/api_docs/kibana_utils.devdocs.json
@@ -7095,21 +7095,6 @@
"deprecated": false,
"trackAdoption": false
},
- {
- "parentPluginId": "kibanaUtils",
- "id": "def-server.KbnServerError.requestParams",
- "type": "Object",
- "tags": [],
- "label": "requestParams",
- "description": [],
- "signature": [
- "ConnectionRequestParams",
- " | undefined"
- ],
- "path": "src/plugins/kibana_utils/server/report_server_error.ts",
- "deprecated": false,
- "trackAdoption": false
- },
{
"parentPluginId": "kibanaUtils",
"id": "def-server.KbnServerError.Unnamed",
@@ -7168,22 +7153,6 @@
"deprecated": false,
"trackAdoption": false,
"isRequired": false
- },
- {
- "parentPluginId": "kibanaUtils",
- "id": "def-server.KbnServerError.Unnamed.$4",
- "type": "Object",
- "tags": [],
- "label": "requestParams",
- "description": [],
- "signature": [
- "ConnectionRequestParams",
- " | undefined"
- ],
- "path": "src/plugins/kibana_utils/server/report_server_error.ts",
- "deprecated": false,
- "trackAdoption": false,
- "isRequired": false
}
],
"returnComment": []
diff --git a/api_docs/kibana_utils.mdx b/api_docs/kibana_utils.mdx
index 6701b3646dc85..dae5ccb5c4700 100644
--- a/api_docs/kibana_utils.mdx
+++ b/api_docs/kibana_utils.mdx
@@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kibanaUtils
title: "kibanaUtils"
image: https://source.unsplash.com/400x175/?github
description: API docs for the kibanaUtils plugin
-date: 2023-09-28
+date: 2023-09-29
tags: ['contributor', 'dev', 'apidocs', 'kibana', 'kibanaUtils']
---
import kibanaUtilsObj from './kibana_utils.devdocs.json';
@@ -21,7 +21,7 @@ Contact [@elastic/kibana-app-services](https://github.com/orgs/elastic/teams/kib
| Public API count | Any count | Items lacking comments | Missing exports |
|-------------------|-----------|------------------------|-----------------|
-| 612 | 3 | 419 | 9 |
+| 610 | 3 | 417 | 9 |
## Client
diff --git a/api_docs/kubernetes_security.mdx b/api_docs/kubernetes_security.mdx
index c64e263d41078..9b164c0bcc748 100644
--- a/api_docs/kubernetes_security.mdx
+++ b/api_docs/kubernetes_security.mdx
@@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kubernetesSecurity
title: "kubernetesSecurity"
image: https://source.unsplash.com/400x175/?github
description: API docs for the kubernetesSecurity plugin
-date: 2023-09-28
+date: 2023-09-29
tags: ['contributor', 'dev', 'apidocs', 'kibana', 'kubernetesSecurity']
---
import kubernetesSecurityObj from './kubernetes_security.devdocs.json';
diff --git a/api_docs/lens.devdocs.json b/api_docs/lens.devdocs.json
index c3d51198daa32..85fcc29954018 100644
--- a/api_docs/lens.devdocs.json
+++ b/api_docs/lens.devdocs.json
@@ -1636,6 +1636,20 @@
"deprecated": false,
"trackAdoption": false
},
+ {
+ "parentPluginId": "lens",
+ "id": "def-public.DataLayerArgs.colorMapping",
+ "type": "string",
+ "tags": [],
+ "label": "colorMapping",
+ "description": [],
+ "signature": [
+ "string | undefined"
+ ],
+ "path": "src/plugins/chart_expressions/expression_xy/common/types/expression_functions.ts",
+ "deprecated": false,
+ "trackAdoption": false
+ },
{
"parentPluginId": "lens",
"id": "def-public.DataLayerArgs.decorations",
@@ -4673,6 +4687,21 @@
"path": "x-pack/plugins/lens/common/types.ts",
"deprecated": false,
"trackAdoption": false
+ },
+ {
+ "parentPluginId": "lens",
+ "id": "def-public.SharedPieLayerState.colorMapping",
+ "type": "Object",
+ "tags": [],
+ "label": "colorMapping",
+ "description": [],
+ "signature": [
+ "Config",
+ " | undefined"
+ ],
+ "path": "x-pack/plugins/lens/common/types.ts",
+ "deprecated": false,
+ "trackAdoption": false
}
],
"initialIsOpen": false
@@ -4998,11 +5027,14 @@
{
"parentPluginId": "lens",
"id": "def-public.SuggestionRequest.mainPalette",
- "type": "Object",
+ "type": "CompoundType",
"tags": [],
"label": "mainPalette",
- "description": [],
+ "description": [
+ "\nPassing the legacy palette or the new color mapping if available"
+ ],
"signature": [
+ "{ type: \"legacyPalette\"; value: ",
{
"pluginId": "@kbn/coloring",
"scope": "common",
@@ -5010,7 +5042,9 @@
"section": "def-common.PaletteOutput",
"text": "PaletteOutput"
},
- "<{ [key: string]: unknown; }> | undefined"
+ "<{ [key: string]: unknown; }>; } | { type: \"colorMapping\"; value: ",
+ "Config",
+ "; } | undefined"
],
"path": "x-pack/plugins/lens/public/types.ts",
"deprecated": false,
@@ -5319,7 +5353,7 @@
"\nInitialize is allowed to modify the state stored in memory. The initialize function\nis called with a previous state in two cases:\n- Loading from a saved visualization\n- When using suggestions, the suggested state is passed in"
],
"signature": [
- "{ (addNewLayer: () => string, nonPersistedState?: T | undefined, mainPalette?: ",
+ "{ (addNewLayer: () => string, nonPersistedState?: T | undefined, mainPalette?: { type: \"legacyPalette\"; value: ",
{
"pluginId": "@kbn/coloring",
"scope": "common",
@@ -5327,7 +5361,9 @@
"section": "def-common.PaletteOutput",
"text": "PaletteOutput"
},
- "<{ [key: string]: unknown; }> | undefined): T; (addNewLayer: () => string, persistedState: P, mainPalette?: ",
+ "<{ [key: string]: unknown; }>; } | { type: \"colorMapping\"; value: ",
+ "Config",
+ "; } | undefined): T; (addNewLayer: () => string, persistedState: P, mainPalette?: { type: \"legacyPalette\"; value: ",
{
"pluginId": "@kbn/coloring",
"scope": "common",
@@ -5335,7 +5371,9 @@
"section": "def-common.PaletteOutput",
"text": "PaletteOutput"
},
- "<{ [key: string]: unknown; }> | undefined, annotationGroups?: ",
+ "<{ [key: string]: unknown; }>; } | { type: \"colorMapping\"; value: ",
+ "Config",
+ "; } | undefined, annotationGroups?: ",
"AnnotationGroups",
" | undefined, references?: ",
{
@@ -5440,7 +5478,7 @@
"label": "getMainPalette",
"description": [],
"signature": [
- "((state: T) => ",
+ "((state: T) => { type: \"legacyPalette\"; value: ",
{
"pluginId": "@kbn/coloring",
"scope": "common",
@@ -5448,7 +5486,9 @@
"section": "def-common.PaletteOutput",
"text": "PaletteOutput"
},
- "<{ [key: string]: unknown; }> | undefined) | undefined"
+ "<{ [key: string]: unknown; }>; } | { type: \"colorMapping\"; value: ",
+ "Config",
+ "; } | undefined) | undefined"
],
"path": "x-pack/plugins/lens/public/types.ts",
"deprecated": false,
@@ -8821,6 +8861,21 @@
"path": "x-pack/plugins/lens/public/visualizations/xy/types.ts",
"deprecated": false,
"trackAdoption": false
+ },
+ {
+ "parentPluginId": "lens",
+ "id": "def-public.XYDataLayerConfig.colorMapping",
+ "type": "Object",
+ "tags": [],
+ "label": "colorMapping",
+ "description": [],
+ "signature": [
+ "Config",
+ " | undefined"
+ ],
+ "path": "x-pack/plugins/lens/public/visualizations/xy/types.ts",
+ "deprecated": false,
+ "trackAdoption": false
}
],
"initialIsOpen": false
diff --git a/api_docs/lens.mdx b/api_docs/lens.mdx
index 7cd4770929227..985cb7981efcc 100644
--- a/api_docs/lens.mdx
+++ b/api_docs/lens.mdx
@@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/lens
title: "lens"
image: https://source.unsplash.com/400x175/?github
description: API docs for the lens plugin
-date: 2023-09-28
+date: 2023-09-29
tags: ['contributor', 'dev', 'apidocs', 'kibana', 'lens']
---
import lensObj from './lens.devdocs.json';
@@ -21,7 +21,7 @@ Contact [@elastic/kibana-visualizations](https://github.com/orgs/elastic/teams/k
| Public API count | Any count | Items lacking comments | Missing exports |
|-------------------|-----------|------------------------|-----------------|
-| 622 | 0 | 524 | 60 |
+| 625 | 0 | 526 | 60 |
## Client
diff --git a/api_docs/license_api_guard.mdx b/api_docs/license_api_guard.mdx
index 13ef1ab394700..3a4f26745ce44 100644
--- a/api_docs/license_api_guard.mdx
+++ b/api_docs/license_api_guard.mdx
@@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/licenseApiGuard
title: "licenseApiGuard"
image: https://source.unsplash.com/400x175/?github
description: API docs for the licenseApiGuard plugin
-date: 2023-09-28
+date: 2023-09-29
tags: ['contributor', 'dev', 'apidocs', 'kibana', 'licenseApiGuard']
---
import licenseApiGuardObj from './license_api_guard.devdocs.json';
diff --git a/api_docs/license_management.mdx b/api_docs/license_management.mdx
index 9781e2e619806..166199eb57f63 100644
--- a/api_docs/license_management.mdx
+++ b/api_docs/license_management.mdx
@@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/licenseManagement
title: "licenseManagement"
image: https://source.unsplash.com/400x175/?github
description: API docs for the licenseManagement plugin
-date: 2023-09-28
+date: 2023-09-29
tags: ['contributor', 'dev', 'apidocs', 'kibana', 'licenseManagement']
---
import licenseManagementObj from './license_management.devdocs.json';
diff --git a/api_docs/licensing.devdocs.json b/api_docs/licensing.devdocs.json
index a11ca0da7cead..d041c80cac66d 100644
--- a/api_docs/licensing.devdocs.json
+++ b/api_docs/licensing.devdocs.json
@@ -810,14 +810,14 @@
"plugin": "security",
"path": "x-pack/plugins/security/public/plugin.tsx"
},
- {
- "plugin": "licenseManagement",
- "path": "x-pack/plugins/license_management/public/plugin.ts"
- },
{
"plugin": "aiops",
"path": "x-pack/plugins/aiops/public/plugin.tsx"
},
+ {
+ "plugin": "licenseManagement",
+ "path": "x-pack/plugins/license_management/public/plugin.ts"
+ },
{
"plugin": "ml",
"path": "x-pack/plugins/ml/public/plugin.ts"
@@ -2190,14 +2190,6 @@
"plugin": "ml",
"path": "x-pack/plugins/ml/server/plugin.ts"
},
- {
- "plugin": "osquery",
- "path": "x-pack/plugins/osquery/server/handlers/action/create_action_service.ts"
- },
- {
- "plugin": "securitySolution",
- "path": "x-pack/plugins/security_solution/server/lib/detection_engine/rule_types/query/query.ts"
- },
{
"plugin": "remoteClusters",
"path": "x-pack/plugins/remote_clusters/server/plugin.ts"
@@ -2214,6 +2206,14 @@
"plugin": "mapsEms",
"path": "src/plugins/maps_ems/server/index.ts"
},
+ {
+ "plugin": "osquery",
+ "path": "x-pack/plugins/osquery/server/handlers/action/create_action_service.ts"
+ },
+ {
+ "plugin": "securitySolution",
+ "path": "x-pack/plugins/security_solution/server/lib/detection_engine/rule_types/query/query.ts"
+ },
{
"plugin": "painlessLab",
"path": "x-pack/plugins/painless_lab/server/services/license.ts"
diff --git a/api_docs/licensing.mdx b/api_docs/licensing.mdx
index bdd5ae761633e..e100967683857 100644
--- a/api_docs/licensing.mdx
+++ b/api_docs/licensing.mdx
@@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/licensing
title: "licensing"
image: https://source.unsplash.com/400x175/?github
description: API docs for the licensing plugin
-date: 2023-09-28
+date: 2023-09-29
tags: ['contributor', 'dev', 'apidocs', 'kibana', 'licensing']
---
import licensingObj from './licensing.devdocs.json';
diff --git a/api_docs/lists.mdx b/api_docs/lists.mdx
index b972f26d53fd9..5553f80e523e9 100644
--- a/api_docs/lists.mdx
+++ b/api_docs/lists.mdx
@@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/lists
title: "lists"
image: https://source.unsplash.com/400x175/?github
description: API docs for the lists plugin
-date: 2023-09-28
+date: 2023-09-29
tags: ['contributor', 'dev', 'apidocs', 'kibana', 'lists']
---
import listsObj from './lists.devdocs.json';
diff --git a/api_docs/log_explorer.mdx b/api_docs/log_explorer.mdx
index f469f093223bd..0cc6984dc390a 100644
--- a/api_docs/log_explorer.mdx
+++ b/api_docs/log_explorer.mdx
@@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/logExplorer
title: "logExplorer"
image: https://source.unsplash.com/400x175/?github
description: API docs for the logExplorer plugin
-date: 2023-09-28
+date: 2023-09-29
tags: ['contributor', 'dev', 'apidocs', 'kibana', 'logExplorer']
---
import logExplorerObj from './log_explorer.devdocs.json';
diff --git a/api_docs/logs_shared.mdx b/api_docs/logs_shared.mdx
index 8e828de602d64..f00996e75cca2 100644
--- a/api_docs/logs_shared.mdx
+++ b/api_docs/logs_shared.mdx
@@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/logsShared
title: "logsShared"
image: https://source.unsplash.com/400x175/?github
description: API docs for the logsShared plugin
-date: 2023-09-28
+date: 2023-09-29
tags: ['contributor', 'dev', 'apidocs', 'kibana', 'logsShared']
---
import logsSharedObj from './logs_shared.devdocs.json';
diff --git a/api_docs/management.mdx b/api_docs/management.mdx
index cd14617fdec7f..0e0c46c53764e 100644
--- a/api_docs/management.mdx
+++ b/api_docs/management.mdx
@@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/management
title: "management"
image: https://source.unsplash.com/400x175/?github
description: API docs for the management plugin
-date: 2023-09-28
+date: 2023-09-29
tags: ['contributor', 'dev', 'apidocs', 'kibana', 'management']
---
import managementObj from './management.devdocs.json';
diff --git a/api_docs/maps.mdx b/api_docs/maps.mdx
index 36a72da7410e0..67b4b584ef31a 100644
--- a/api_docs/maps.mdx
+++ b/api_docs/maps.mdx
@@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/maps
title: "maps"
image: https://source.unsplash.com/400x175/?github
description: API docs for the maps plugin
-date: 2023-09-28
+date: 2023-09-29
tags: ['contributor', 'dev', 'apidocs', 'kibana', 'maps']
---
import mapsObj from './maps.devdocs.json';
diff --git a/api_docs/maps_ems.mdx b/api_docs/maps_ems.mdx
index 76b8ca25f50b5..8bf18655e1d6e 100644
--- a/api_docs/maps_ems.mdx
+++ b/api_docs/maps_ems.mdx
@@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/mapsEms
title: "mapsEms"
image: https://source.unsplash.com/400x175/?github
description: API docs for the mapsEms plugin
-date: 2023-09-28
+date: 2023-09-29
tags: ['contributor', 'dev', 'apidocs', 'kibana', 'mapsEms']
---
import mapsEmsObj from './maps_ems.devdocs.json';
diff --git a/api_docs/metrics_data_access.mdx b/api_docs/metrics_data_access.mdx
index 178fb946707a7..ad459244c6ab1 100644
--- a/api_docs/metrics_data_access.mdx
+++ b/api_docs/metrics_data_access.mdx
@@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/metricsDataAccess
title: "metricsDataAccess"
image: https://source.unsplash.com/400x175/?github
description: API docs for the metricsDataAccess plugin
-date: 2023-09-28
+date: 2023-09-29
tags: ['contributor', 'dev', 'apidocs', 'kibana', 'metricsDataAccess']
---
import metricsDataAccessObj from './metrics_data_access.devdocs.json';
diff --git a/api_docs/ml.devdocs.json b/api_docs/ml.devdocs.json
index 1b83537191f21..8dfd6b380c2a4 100644
--- a/api_docs/ml.devdocs.json
+++ b/api_docs/ml.devdocs.json
@@ -1681,7 +1681,9 @@
"label": "AlertingService",
"description": [],
"signature": [
- "{ preview: (args_0: Readonly<{} & { timeRange: string; alertParams: Readonly<{} & { severity: number; jobSelection: Readonly<{} & { groupIds: string[]; jobIds: string[]; }>; resultType: \"bucket\" | \"record\" | \"influencer\"; includeInterim: boolean; lookbackInterval: string | null; topNBuckets: number | null; }>; sampleSize: number; }>) => Promise; execute: (params: Readonly<{} & { severity: number; jobSelection: Readonly<{} & { groupIds: string[]; jobIds: string[]; }>; resultType: \"bucket\" | \"record\" | \"influencer\"; includeInterim: boolean; lookbackInterval: string | null; topNBuckets: number | null; }>, spaceId: string) => Promise<{ context: ",
+ "{ preview: (args_0: Readonly<{} & { timeRange: string; alertParams: Readonly<{} & { severity: number; jobSelection: Readonly<{} & { groupIds: string[]; jobIds: string[]; }>; resultType: \"bucket\" | \"record\" | \"influencer\"; includeInterim: boolean; lookbackInterval: string | null; topNBuckets: number | null; }>; sampleSize: number; }>) => Promise; execute: (params: Readonly<{} & { severity: number; jobSelection: Readonly<{} & { groupIds: string[]; jobIds: string[]; }>; resultType: \"bucket\" | \"record\" | \"influencer\"; includeInterim: boolean; lookbackInterval: string | null; topNBuckets: number | null; }>, spaceId: string) => Promise<{ payload: ",
+ "AnomalyDetectionAlertPayload",
+ "; context: ",
"AnomalyDetectionAlertContext",
"; name: string; isHealthy: boolean; } | undefined>; }"
],
@@ -1942,7 +1944,9 @@
"section": "def-common.KibanaRequest",
"text": "KibanaRequest"
},
- "): { preview: (args_0: Readonly<{} & { timeRange: string; alertParams: Readonly<{} & { severity: number; jobSelection: Readonly<{} & { groupIds: string[]; jobIds: string[]; }>; resultType: \"bucket\" | \"record\" | \"influencer\"; includeInterim: boolean; lookbackInterval: string | null; topNBuckets: number | null; }>; sampleSize: number; }>) => Promise; execute: (params: Readonly<{} & { severity: number; jobSelection: Readonly<{} & { groupIds: string[]; jobIds: string[]; }>; resultType: \"bucket\" | \"record\" | \"influencer\"; includeInterim: boolean; lookbackInterval: string | null; topNBuckets: number | null; }>, spaceId: string) => Promise<{ context: ",
+ "): { preview: (args_0: Readonly<{} & { timeRange: string; alertParams: Readonly<{} & { severity: number; jobSelection: Readonly<{} & { groupIds: string[]; jobIds: string[]; }>; resultType: \"bucket\" | \"record\" | \"influencer\"; includeInterim: boolean; lookbackInterval: string | null; topNBuckets: number | null; }>; sampleSize: number; }>) => Promise; execute: (params: Readonly<{} & { severity: number; jobSelection: Readonly<{} & { groupIds: string[]; jobIds: string[]; }>; resultType: \"bucket\" | \"record\" | \"influencer\"; includeInterim: boolean; lookbackInterval: string | null; topNBuckets: number | null; }>, spaceId: string) => Promise<{ payload: ",
+ "AnomalyDetectionAlertPayload",
+ "; context: ",
"AnomalyDetectionAlertContext",
"; name: string; isHealthy: boolean; } | undefined>; }; } & ",
"TrainedModelsProvider"
diff --git a/api_docs/ml.mdx b/api_docs/ml.mdx
index 7500ed2c47a7e..7f91d6b944dbe 100644
--- a/api_docs/ml.mdx
+++ b/api_docs/ml.mdx
@@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/ml
title: "ml"
image: https://source.unsplash.com/400x175/?github
description: API docs for the ml plugin
-date: 2023-09-28
+date: 2023-09-29
tags: ['contributor', 'dev', 'apidocs', 'kibana', 'ml']
---
import mlObj from './ml.devdocs.json';
@@ -21,7 +21,7 @@ Contact [@elastic/ml-ui](https://github.com/orgs/elastic/teams/ml-ui) for questi
| Public API count | Any count | Items lacking comments | Missing exports |
|-------------------|-----------|------------------------|-----------------|
-| 150 | 3 | 64 | 32 |
+| 150 | 3 | 64 | 33 |
## Client
diff --git a/api_docs/monitoring.mdx b/api_docs/monitoring.mdx
index 291bb72d31061..9ee00ebe90cfb 100644
--- a/api_docs/monitoring.mdx
+++ b/api_docs/monitoring.mdx
@@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/monitoring
title: "monitoring"
image: https://source.unsplash.com/400x175/?github
description: API docs for the monitoring plugin
-date: 2023-09-28
+date: 2023-09-29
tags: ['contributor', 'dev', 'apidocs', 'kibana', 'monitoring']
---
import monitoringObj from './monitoring.devdocs.json';
diff --git a/api_docs/monitoring_collection.mdx b/api_docs/monitoring_collection.mdx
index 844304f01844e..cbd0e058b798e 100644
--- a/api_docs/monitoring_collection.mdx
+++ b/api_docs/monitoring_collection.mdx
@@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/monitoringCollection
title: "monitoringCollection"
image: https://source.unsplash.com/400x175/?github
description: API docs for the monitoringCollection plugin
-date: 2023-09-28
+date: 2023-09-29
tags: ['contributor', 'dev', 'apidocs', 'kibana', 'monitoringCollection']
---
import monitoringCollectionObj from './monitoring_collection.devdocs.json';
diff --git a/api_docs/navigation.mdx b/api_docs/navigation.mdx
index 414f2b1627203..aa14168f5b778 100644
--- a/api_docs/navigation.mdx
+++ b/api_docs/navigation.mdx
@@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/navigation
title: "navigation"
image: https://source.unsplash.com/400x175/?github
description: API docs for the navigation plugin
-date: 2023-09-28
+date: 2023-09-29
tags: ['contributor', 'dev', 'apidocs', 'kibana', 'navigation']
---
import navigationObj from './navigation.devdocs.json';
diff --git a/api_docs/newsfeed.mdx b/api_docs/newsfeed.mdx
index 1cd5f89d0c173..cb9db6673f83b 100644
--- a/api_docs/newsfeed.mdx
+++ b/api_docs/newsfeed.mdx
@@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/newsfeed
title: "newsfeed"
image: https://source.unsplash.com/400x175/?github
description: API docs for the newsfeed plugin
-date: 2023-09-28
+date: 2023-09-29
tags: ['contributor', 'dev', 'apidocs', 'kibana', 'newsfeed']
---
import newsfeedObj from './newsfeed.devdocs.json';
diff --git a/api_docs/no_data_page.mdx b/api_docs/no_data_page.mdx
index 4ec525a2ec936..740b21f583fe0 100644
--- a/api_docs/no_data_page.mdx
+++ b/api_docs/no_data_page.mdx
@@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/noDataPage
title: "noDataPage"
image: https://source.unsplash.com/400x175/?github
description: API docs for the noDataPage plugin
-date: 2023-09-28
+date: 2023-09-29
tags: ['contributor', 'dev', 'apidocs', 'kibana', 'noDataPage']
---
import noDataPageObj from './no_data_page.devdocs.json';
diff --git a/api_docs/notifications.mdx b/api_docs/notifications.mdx
index 107420ea385ed..f24145e25f2bc 100644
--- a/api_docs/notifications.mdx
+++ b/api_docs/notifications.mdx
@@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/notifications
title: "notifications"
image: https://source.unsplash.com/400x175/?github
description: API docs for the notifications plugin
-date: 2023-09-28
+date: 2023-09-29
tags: ['contributor', 'dev', 'apidocs', 'kibana', 'notifications']
---
import notificationsObj from './notifications.devdocs.json';
diff --git a/api_docs/observability.devdocs.json b/api_docs/observability.devdocs.json
index 09cf4af27f97a..2ae7a710d02df 100644
--- a/api_docs/observability.devdocs.json
+++ b/api_docs/observability.devdocs.json
@@ -2616,6 +2616,26 @@
"path": "x-pack/plugins/observability/public/plugin.ts",
"deprecated": false,
"trackAdoption": false
+ },
+ {
+ "parentPluginId": "observability",
+ "id": "def-public.ObservabilityPublicPluginsSetup.embeddable",
+ "type": "Object",
+ "tags": [],
+ "label": "embeddable",
+ "description": [],
+ "signature": [
+ {
+ "pluginId": "embeddable",
+ "scope": "public",
+ "docId": "kibEmbeddablePluginApi",
+ "section": "def-public.EmbeddableSetup",
+ "text": "EmbeddableSetup"
+ }
+ ],
+ "path": "x-pack/plugins/observability/public/plugin.ts",
+ "deprecated": false,
+ "trackAdoption": false
}
],
"initialIsOpen": false
diff --git a/api_docs/observability.mdx b/api_docs/observability.mdx
index 87179ca428b7d..d98f5662cb072 100644
--- a/api_docs/observability.mdx
+++ b/api_docs/observability.mdx
@@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/observability
title: "observability"
image: https://source.unsplash.com/400x175/?github
description: API docs for the observability plugin
-date: 2023-09-28
+date: 2023-09-29
tags: ['contributor', 'dev', 'apidocs', 'kibana', 'observability']
---
import observabilityObj from './observability.devdocs.json';
@@ -21,7 +21,7 @@ Contact [@elastic/actionable-observability](https://github.com/orgs/elastic/team
| Public API count | Any count | Items lacking comments | Missing exports |
|-------------------|-----------|------------------------|-----------------|
-| 546 | 2 | 537 | 14 |
+| 547 | 2 | 538 | 14 |
## Client
diff --git a/api_docs/observability_a_i_assistant.mdx b/api_docs/observability_a_i_assistant.mdx
index a0db24e96fce2..ed59dd6f0cc68 100644
--- a/api_docs/observability_a_i_assistant.mdx
+++ b/api_docs/observability_a_i_assistant.mdx
@@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/observabilityAIAssistant
title: "observabilityAIAssistant"
image: https://source.unsplash.com/400x175/?github
description: API docs for the observabilityAIAssistant plugin
-date: 2023-09-28
+date: 2023-09-29
tags: ['contributor', 'dev', 'apidocs', 'kibana', 'observabilityAIAssistant']
---
import observabilityAIAssistantObj from './observability_a_i_assistant.devdocs.json';
diff --git a/api_docs/observability_log_explorer.mdx b/api_docs/observability_log_explorer.mdx
index 2f938cef67d2d..07124026c43f9 100644
--- a/api_docs/observability_log_explorer.mdx
+++ b/api_docs/observability_log_explorer.mdx
@@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/observabilityLogExplorer
title: "observabilityLogExplorer"
image: https://source.unsplash.com/400x175/?github
description: API docs for the observabilityLogExplorer plugin
-date: 2023-09-28
+date: 2023-09-29
tags: ['contributor', 'dev', 'apidocs', 'kibana', 'observabilityLogExplorer']
---
import observabilityLogExplorerObj from './observability_log_explorer.devdocs.json';
diff --git a/api_docs/observability_onboarding.mdx b/api_docs/observability_onboarding.mdx
index f6704135387e0..68fb50c89b8c6 100644
--- a/api_docs/observability_onboarding.mdx
+++ b/api_docs/observability_onboarding.mdx
@@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/observabilityOnboarding
title: "observabilityOnboarding"
image: https://source.unsplash.com/400x175/?github
description: API docs for the observabilityOnboarding plugin
-date: 2023-09-28
+date: 2023-09-29
tags: ['contributor', 'dev', 'apidocs', 'kibana', 'observabilityOnboarding']
---
import observabilityOnboardingObj from './observability_onboarding.devdocs.json';
diff --git a/api_docs/observability_shared.mdx b/api_docs/observability_shared.mdx
index dc78585ca3eaf..b176cfb1a6711 100644
--- a/api_docs/observability_shared.mdx
+++ b/api_docs/observability_shared.mdx
@@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/observabilityShared
title: "observabilityShared"
image: https://source.unsplash.com/400x175/?github
description: API docs for the observabilityShared plugin
-date: 2023-09-28
+date: 2023-09-29
tags: ['contributor', 'dev', 'apidocs', 'kibana', 'observabilityShared']
---
import observabilitySharedObj from './observability_shared.devdocs.json';
diff --git a/api_docs/osquery.mdx b/api_docs/osquery.mdx
index cfe2bee7e2387..90976d82c5165 100644
--- a/api_docs/osquery.mdx
+++ b/api_docs/osquery.mdx
@@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/osquery
title: "osquery"
image: https://source.unsplash.com/400x175/?github
description: API docs for the osquery plugin
-date: 2023-09-28
+date: 2023-09-29
tags: ['contributor', 'dev', 'apidocs', 'kibana', 'osquery']
---
import osqueryObj from './osquery.devdocs.json';
diff --git a/api_docs/painless_lab.mdx b/api_docs/painless_lab.mdx
index 12a11dfc21a7a..afa934f145373 100644
--- a/api_docs/painless_lab.mdx
+++ b/api_docs/painless_lab.mdx
@@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/painlessLab
title: "painlessLab"
image: https://source.unsplash.com/400x175/?github
description: API docs for the painlessLab plugin
-date: 2023-09-28
+date: 2023-09-29
tags: ['contributor', 'dev', 'apidocs', 'kibana', 'painlessLab']
---
import painlessLabObj from './painless_lab.devdocs.json';
diff --git a/api_docs/plugin_directory.mdx b/api_docs/plugin_directory.mdx
index aedae05cb938b..a1a9daff5a970 100644
--- a/api_docs/plugin_directory.mdx
+++ b/api_docs/plugin_directory.mdx
@@ -7,7 +7,7 @@ id: kibDevDocsPluginDirectory
slug: /kibana-dev-docs/api-meta/plugin-api-directory
title: Directory
description: Directory of public APIs available through plugins or packages.
-date: 2023-09-28
+date: 2023-09-29
tags: ['contributor', 'dev', 'apidocs', 'kibana']
---
@@ -15,13 +15,13 @@ tags: ['contributor', 'dev', 'apidocs', 'kibana']
| Count | Plugins or Packages with a
public API | Number of teams |
|--------------|----------|------------------------|
-| 695 | 587 | 42 |
+| 697 | 588 | 42 |
### Public API health stats
| API Count | Any Count | Missing comments | Missing exports |
|--------------|----------|-----------------|--------|
-| 75054 | 223 | 63991 | 1543 |
+| 75211 | 223 | 64115 | 1555 |
## Plugin Directory
@@ -33,7 +33,7 @@ tags: ['contributor', 'dev', 'apidocs', 'kibana']
| | [@elastic/response-ops](https://github.com/orgs/elastic/teams/response-ops) | - | 773 | 1 | 742 | 50 |
| | [@elastic/apm-ui](https://github.com/orgs/elastic/teams/apm-ui) | The user interface for Elastic APM | 29 | 0 | 29 | 119 |
| | [@elastic/apm-ui](https://github.com/orgs/elastic/teams/apm-ui) | - | 9 | 0 | 9 | 0 |
-| | [@elastic/infra-monitoring-ui](https://github.com/orgs/elastic/teams/infra-monitoring-ui) | Asset manager plugin for entity assets (inventory, topology, etc) | 2 | 0 | 2 | 0 |
+| | [@elastic/infra-monitoring-ui](https://github.com/orgs/elastic/teams/infra-monitoring-ui) | Asset manager plugin for entity assets (inventory, topology, etc) | 9 | 0 | 9 | 2 |
| | [@elastic/appex-sharedux](https://github.com/orgs/elastic/teams/appex-sharedux) | - | 9 | 0 | 9 | 0 |
| | [@elastic/appex-sharedux](https://github.com/orgs/elastic/teams/appex-sharedux) | Considering using bfetch capabilities when fetching large amounts of data. This services supports batching HTTP requests and streaming responses back. | 91 | 1 | 75 | 2 |
| | [@elastic/kibana-presentation](https://github.com/orgs/elastic/teams/kibana-presentation) | Adds Canvas application to Kibana | 9 | 0 | 8 | 3 |
@@ -57,14 +57,14 @@ tags: ['contributor', 'dev', 'apidocs', 'kibana']
| | [@elastic/fleet](https://github.com/orgs/elastic/teams/fleet) | Add custom data integrations so they can be displayed in the Fleet integrations app | 268 | 0 | 249 | 1 |
| | [@elastic/kibana-presentation](https://github.com/orgs/elastic/teams/kibana-presentation) | Adds the Dashboard app to Kibana | 101 | 0 | 98 | 9 |
| | [@elastic/kibana-presentation](https://github.com/orgs/elastic/teams/kibana-presentation) | - | 54 | 0 | 51 | 0 |
-| | [@elastic/kibana-visualizations](https://github.com/orgs/elastic/teams/kibana-visualizations) | Data services are useful for searching and querying data from Elasticsearch. Helpful utilities include: a re-usable react query bar, KQL autocomplete, async search, Data Views (Index Patterns) and field formatters. | 3310 | 33 | 2575 | 24 |
+| | [@elastic/kibana-visualizations](https://github.com/orgs/elastic/teams/kibana-visualizations) | Data services are useful for searching and querying data from Elasticsearch. Helpful utilities include: a re-usable react query bar, KQL autocomplete, async search, Data Views (Index Patterns) and field formatters. | 3311 | 33 | 2577 | 24 |
| | [@elastic/kibana-data-discovery](https://github.com/orgs/elastic/teams/kibana-data-discovery) | This plugin provides the ability to create data views via a modal flyout inside Kibana apps | 35 | 0 | 25 | 5 |
| | [@elastic/kibana-data-discovery](https://github.com/orgs/elastic/teams/kibana-data-discovery) | Reusable data view field editor across Kibana | 72 | 0 | 33 | 0 |
| | [@elastic/kibana-data-discovery](https://github.com/orgs/elastic/teams/kibana-data-discovery) | Data view management app | 2 | 0 | 2 | 0 |
| | [@elastic/kibana-data-discovery](https://github.com/orgs/elastic/teams/kibana-data-discovery) | Data services are useful for searching and querying data from Elasticsearch. Helpful utilities include: a re-usable react query bar, KQL autocomplete, async search, Data Views (Index Patterns) and field formatters. | 1037 | 0 | 257 | 2 |
| | [@elastic/ml-ui](https://github.com/orgs/elastic/teams/ml-ui) | The Data Visualizer tools help you understand your data, by analyzing the metrics and fields in a log file or an existing Elasticsearch index. | 31 | 3 | 25 | 1 |
| | [@elastic/platform-deployment-management](https://github.com/orgs/elastic/teams/platform-deployment-management) | - | 12 | 0 | 10 | 3 |
-| | [@elastic/kibana-data-discovery](https://github.com/orgs/elastic/teams/kibana-data-discovery) | This plugin contains the Discover application and the saved search embeddable. | 116 | 0 | 75 | 17 |
+| | [@elastic/kibana-data-discovery](https://github.com/orgs/elastic/teams/kibana-data-discovery) | This plugin contains the Discover application and the saved search embeddable. | 117 | 0 | 75 | 18 |
| | [@elastic/kibana-data-discovery](https://github.com/orgs/elastic/teams/kibana-data-discovery) | - | 37 | 0 | 35 | 2 |
| | [@elastic/security-threat-hunting-investigations](https://github.com/orgs/elastic/teams/security-threat-hunting-investigations) | APIs used to assess the quality of data in Elasticsearch indexes | 2 | 0 | 0 | 0 |
| | [@elastic/security-solution](https://github.com/orgs/elastic/teams/security-solution) | Server APIs for the Elastic AI Assistant | 4 | 0 | 2 | 0 |
@@ -89,7 +89,7 @@ tags: ['contributor', 'dev', 'apidocs', 'kibana']
| | [@elastic/kibana-presentation](https://github.com/orgs/elastic/teams/kibana-presentation) | Adds 'revealImage' function and renderer to expressions | 14 | 0 | 14 | 3 |
| | [@elastic/kibana-presentation](https://github.com/orgs/elastic/teams/kibana-presentation) | Adds 'shape' function and renderer to expressions | 148 | 0 | 146 | 0 |
| | [@elastic/kibana-visualizations](https://github.com/orgs/elastic/teams/kibana-visualizations) | Expression Tagcloud plugin adds a `tagcloud` renderer and function to the expression plugin. The renderer will display the `Wordcloud` chart. | 6 | 0 | 6 | 2 |
-| | [@elastic/kibana-visualizations](https://github.com/orgs/elastic/teams/kibana-visualizations) | Expression XY plugin adds a `xy` renderer and function to the expression plugin. The renderer will display the `xy` chart. | 175 | 0 | 165 | 13 |
+| | [@elastic/kibana-visualizations](https://github.com/orgs/elastic/teams/kibana-visualizations) | Expression XY plugin adds a `xy` renderer and function to the expression plugin. The renderer will display the `xy` chart. | 176 | 0 | 166 | 13 |
| | [@elastic/kibana-visualizations](https://github.com/orgs/elastic/teams/kibana-visualizations) | Adds expression runtime to Kibana | 2208 | 17 | 1749 | 5 |
| | [@elastic/kibana-core](https://github.com/orgs/elastic/teams/kibana-core) | - | 235 | 0 | 99 | 2 |
| | [@elastic/kibana-data-discovery](https://github.com/orgs/elastic/teams/kibana-data-discovery) | Index pattern fields and ambiguous values formatters | 292 | 5 | 253 | 3 |
@@ -116,9 +116,9 @@ tags: ['contributor', 'dev', 'apidocs', 'kibana']
| | [@elastic/appex-sharedux](https://github.com/orgs/elastic/teams/appex-sharedux) | - | 6 | 0 | 6 | 0 |
| | [@elastic/appex-sharedux](https://github.com/orgs/elastic/teams/appex-sharedux) | - | 176 | 0 | 138 | 4 |
| kibanaUsageCollection | [@elastic/kibana-core](https://github.com/orgs/elastic/teams/kibana-core) | - | 0 | 0 | 0 | 0 |
-| | [@elastic/kibana-app-services](https://github.com/orgs/elastic/teams/kibana-app-services) | - | 612 | 3 | 419 | 9 |
+| | [@elastic/kibana-app-services](https://github.com/orgs/elastic/teams/kibana-app-services) | - | 610 | 3 | 417 | 9 |
| | [@elastic/kibana-cloud-security-posture](https://github.com/orgs/elastic/teams/kibana-cloud-security-posture) | - | 5 | 0 | 5 | 1 |
-| | [@elastic/kibana-visualizations](https://github.com/orgs/elastic/teams/kibana-visualizations) | Visualization editor allowing to quickly and easily configure compelling visualizations to use on dashboards and canvas workpads. Exposes components to embed visualizations and link into the Lens editor from within other apps in Kibana. | 622 | 0 | 524 | 60 |
+| | [@elastic/kibana-visualizations](https://github.com/orgs/elastic/teams/kibana-visualizations) | Visualization editor allowing to quickly and easily configure compelling visualizations to use on dashboards and canvas workpads. Exposes components to embed visualizations and link into the Lens editor from within other apps in Kibana. | 625 | 0 | 526 | 60 |
| | [@elastic/platform-deployment-management](https://github.com/orgs/elastic/teams/platform-deployment-management) | - | 8 | 0 | 8 | 0 |
| | [@elastic/platform-deployment-management](https://github.com/orgs/elastic/teams/platform-deployment-management) | - | 4 | 0 | 4 | 1 |
| | [@elastic/kibana-core](https://github.com/orgs/elastic/teams/kibana-core) | - | 117 | 0 | 42 | 10 |
@@ -130,14 +130,14 @@ tags: ['contributor', 'dev', 'apidocs', 'kibana']
| | [@elastic/kibana-gis](https://github.com/orgs/elastic/teams/kibana-gis) | - | 259 | 0 | 258 | 28 |
| | [@elastic/kibana-gis](https://github.com/orgs/elastic/teams/kibana-gis) | - | 67 | 0 | 67 | 0 |
| | [@elastic/infra-monitoring-ui](https://github.com/orgs/elastic/teams/infra-monitoring-ui) | Exposes utilities for accessing metrics data | 14 | 0 | 14 | 0 |
-| | [@elastic/ml-ui](https://github.com/orgs/elastic/teams/ml-ui) | This plugin provides access to the machine learning features provided by Elastic. | 150 | 3 | 64 | 32 |
+| | [@elastic/ml-ui](https://github.com/orgs/elastic/teams/ml-ui) | This plugin provides access to the machine learning features provided by Elastic. | 150 | 3 | 64 | 33 |
| | [@elastic/infra-monitoring-ui](https://github.com/orgs/elastic/teams/infra-monitoring-ui) | - | 15 | 3 | 13 | 1 |
| | [@elastic/infra-monitoring-ui](https://github.com/orgs/elastic/teams/infra-monitoring-ui) | - | 9 | 0 | 9 | 0 |
| | [@elastic/appex-sharedux](https://github.com/orgs/elastic/teams/appex-sharedux) | - | 34 | 0 | 34 | 2 |
| | [@elastic/kibana-core](https://github.com/orgs/elastic/teams/kibana-core) | - | 17 | 0 | 17 | 0 |
| | [@elastic/appex-sharedux](https://github.com/orgs/elastic/teams/appex-sharedux) | - | 3 | 0 | 3 | 0 |
| | [@elastic/appex-sharedux](https://github.com/orgs/elastic/teams/appex-sharedux) | - | 2 | 0 | 2 | 1 |
-| | [@elastic/actionable-observability](https://github.com/orgs/elastic/teams/actionable-observability) | - | 546 | 2 | 537 | 14 |
+| | [@elastic/actionable-observability](https://github.com/orgs/elastic/teams/actionable-observability) | - | 547 | 2 | 538 | 14 |
| | [@elastic/obs-ai-assistant](https://github.com/orgs/elastic/teams/obs-ai-assistant) | - | 42 | 0 | 39 | 7 |
| | [@elastic/infra-monitoring-ui](https://github.com/orgs/elastic/teams/infra-monitoring-ui) | This plugin exposes and registers observability log consumption features. | 15 | 0 | 15 | 1 |
| | [@elastic/apm-ui](https://github.com/orgs/elastic/teams/apm-ui) | - | 14 | 0 | 14 | 0 |
@@ -155,14 +155,14 @@ tags: ['contributor', 'dev', 'apidocs', 'kibana']
| | [@elastic/kibana-core](https://github.com/orgs/elastic/teams/kibana-core) | - | 129 | 2 | 118 | 4 |
| | [@elastic/kibana-data-discovery](https://github.com/orgs/elastic/teams/kibana-data-discovery) | - | 25 | 0 | 25 | 0 |
| | [@elastic/kibana-core](https://github.com/orgs/elastic/teams/kibana-core) | - | 161 | 0 | 147 | 2 |
-| | [@elastic/appex-sharedux](https://github.com/orgs/elastic/teams/appex-sharedux) | - | 79 | 0 | 73 | 3 |
-| | [@elastic/appex-sharedux](https://github.com/orgs/elastic/teams/appex-sharedux) | - | 100 | 0 | 52 | 1 |
+| | [@elastic/appex-sharedux](https://github.com/orgs/elastic/teams/appex-sharedux) | - | 87 | 0 | 81 | 3 |
+| | [@elastic/appex-sharedux](https://github.com/orgs/elastic/teams/appex-sharedux) | - | 104 | 0 | 56 | 1 |
| | [@elastic/kibana-data-discovery](https://github.com/orgs/elastic/teams/kibana-data-discovery) | This plugin contains the definition and helper methods around saved searches, used by discover and visualizations. | 72 | 0 | 71 | 3 |
| | [@elastic/appex-sharedux](https://github.com/orgs/elastic/teams/appex-sharedux) | - | 32 | 0 | 13 | 0 |
| | [@elastic/kibana-reporting-services](https://github.com/orgs/elastic/teams/kibana-reporting-services) | Kibana Screenshotting Plugin | 27 | 0 | 8 | 5 |
| searchprofiler | [@elastic/platform-deployment-management](https://github.com/orgs/elastic/teams/platform-deployment-management) | - | 0 | 0 | 0 | 0 |
| | [@elastic/kibana-security](https://github.com/orgs/elastic/teams/kibana-security) | This plugin provides authentication and authorization features, and exposes functionality to understand the capabilities of the currently authenticated user. | 270 | 0 | 87 | 3 |
-| | [@elastic/security-solution](https://github.com/orgs/elastic/teams/security-solution) | - | 172 | 0 | 106 | 32 |
+| | [@elastic/security-solution](https://github.com/orgs/elastic/teams/security-solution) | - | 174 | 0 | 108 | 32 |
| | [@elastic/security-solution](https://github.com/orgs/elastic/teams/security-solution) | ESS customizations for Security Solution. | 6 | 0 | 6 | 0 |
| | [@elastic/security-solution](https://github.com/orgs/elastic/teams/security-solution) | Serverless customizations for security. | 6 | 0 | 6 | 0 |
| | [@elastic/appex-sharedux](https://github.com/orgs/elastic/teams/appex-sharedux) | The core Serverless plugin, providing APIs to Serverless Project plugins. | 19 | 0 | 18 | 0 |
@@ -220,9 +220,9 @@ tags: ['contributor', 'dev', 'apidocs', 'kibana']
| | [@elastic/platform-deployment-management](https://github.com/orgs/elastic/teams/platform-deployment-management) | - | 11 | 5 | 11 | 0 |
| | [@elastic/ml-ui](https://github.com/orgs/elastic/teams/ml-ui) | - | 35 | 0 | 0 | 0 |
| | [@elastic/ml-ui](https://github.com/orgs/elastic/teams/ml-ui) | - | 20 | 0 | 0 | 0 |
-| | [@elastic/response-ops](https://github.com/orgs/elastic/teams/response-ops) | - | 24 | 3 | 24 | 0 |
+| | [@elastic/response-ops](https://github.com/orgs/elastic/teams/response-ops) | - | 27 | 3 | 27 | 0 |
| | [@elastic/response-ops](https://github.com/orgs/elastic/teams/response-ops) | - | 23 | 0 | 22 | 0 |
-| | [@elastic/response-ops](https://github.com/orgs/elastic/teams/response-ops) | - | 29 | 0 | 29 | 0 |
+| | [@elastic/response-ops](https://github.com/orgs/elastic/teams/response-ops) | - | 30 | 0 | 30 | 0 |
| | [@elastic/response-ops](https://github.com/orgs/elastic/teams/response-ops) | - | 10 | 0 | 9 | 1 |
| | [@elastic/kibana-core](https://github.com/orgs/elastic/teams/kibana-core) | - | 73 | 0 | 73 | 2 |
| | [@elastic/kibana-core](https://github.com/orgs/elastic/teams/kibana-core) | - | 98 | 0 | 0 | 0 |
@@ -238,7 +238,7 @@ tags: ['contributor', 'dev', 'apidocs', 'kibana']
| | [@elastic/kibana-qa](https://github.com/orgs/elastic/teams/kibana-qa) | - | 12 | 0 | 12 | 0 |
| | [@elastic/response-ops](https://github.com/orgs/elastic/teams/response-ops) | - | 19 | 0 | 16 | 0 |
| | [@elastic/security-threat-hunting-explore](https://github.com/orgs/elastic/teams/security-threat-hunting-explore) | - | 62 | 1 | 44 | 3 |
-| | [@elastic/kibana-visualizations](https://github.com/orgs/elastic/teams/kibana-visualizations) | - | 11 | 0 | 8 | 0 |
+| | [@elastic/kibana-visualizations](https://github.com/orgs/elastic/teams/kibana-visualizations) | - | 14 | 0 | 10 | 0 |
| | [@elastic/kibana-visualizations](https://github.com/orgs/elastic/teams/kibana-visualizations) | - | 78 | 0 | 78 | 0 |
| | [@elastic/kibana-operations](https://github.com/orgs/elastic/teams/kibana-operations) | - | 7 | 0 | 2 | 0 |
| | [@elastic/kibana-operations](https://github.com/orgs/elastic/teams/kibana-operations) | - | 3 | 0 | 3 | 0 |
@@ -246,7 +246,7 @@ tags: ['contributor', 'dev', 'apidocs', 'kibana']
| | [@elastic/kibana-operations](https://github.com/orgs/elastic/teams/kibana-operations) | - | 2 | 0 | 2 | 0 |
| | [@elastic/appex-sharedux](https://github.com/orgs/elastic/teams/appex-sharedux) | - | 2 | 0 | 2 | 1 |
| | [@elastic/appex-sharedux](https://github.com/orgs/elastic/teams/appex-sharedux) | - | 33 | 0 | 32 | 0 |
-| | [@elastic/kibana-visualizations](https://github.com/orgs/elastic/teams/kibana-visualizations) | - | 116 | 0 | 90 | 1 |
+| | [@elastic/kibana-visualizations](https://github.com/orgs/elastic/teams/kibana-visualizations) | - | 206 | 0 | 169 | 8 |
| | [@elastic/kibana-core](https://github.com/orgs/elastic/teams/kibana-core) | - | 75 | 0 | 46 | 10 |
| | [@elastic/kibana-core](https://github.com/orgs/elastic/teams/kibana-core) | - | 24 | 0 | 24 | 0 |
| | [@elastic/kibana-core](https://github.com/orgs/elastic/teams/kibana-core) | - | 140 | 3 | 137 | 18 |
@@ -254,7 +254,7 @@ tags: ['contributor', 'dev', 'apidocs', 'kibana']
| | [@elastic/appex-sharedux](https://github.com/orgs/elastic/teams/appex-sharedux) | - | 15 | 0 | 15 | 0 |
| | [@elastic/appex-sharedux](https://github.com/orgs/elastic/teams/appex-sharedux) | - | 10 | 0 | 10 | 0 |
| | [@elastic/appex-sharedux](https://github.com/orgs/elastic/teams/appex-sharedux) | - | 59 | 0 | 41 | 4 |
-| | [@elastic/kibana-data-discovery](https://github.com/orgs/elastic/teams/kibana-data-discovery) | - | 189 | 1 | 124 | 0 |
+| | [@elastic/kibana-data-discovery](https://github.com/orgs/elastic/teams/kibana-data-discovery) | - | 191 | 1 | 126 | 0 |
| | [@elastic/kibana-core](https://github.com/orgs/elastic/teams/kibana-core) | - | 4 | 0 | 0 | 0 |
| | [@elastic/kibana-core](https://github.com/orgs/elastic/teams/kibana-core) | - | 7 | 0 | 7 | 1 |
| | [@elastic/kibana-core](https://github.com/orgs/elastic/teams/kibana-core) | - | 4 | 0 | 4 | 0 |
@@ -276,7 +276,7 @@ tags: ['contributor', 'dev', 'apidocs', 'kibana']
| | [@elastic/kibana-core](https://github.com/orgs/elastic/teams/kibana-core) | - | 5 | 0 | 0 | 0 |
| | [@elastic/kibana-core](https://github.com/orgs/elastic/teams/kibana-core) | - | 16 | 0 | 7 | 0 |
| | [@elastic/kibana-core](https://github.com/orgs/elastic/teams/kibana-core) | - | 6 | 0 | 6 | 0 |
-| | [@elastic/appex-sharedux](https://github.com/orgs/elastic/teams/appex-sharedux) | - | 170 | 0 | 68 | 1 |
+| | [@elastic/appex-sharedux](https://github.com/orgs/elastic/teams/appex-sharedux) | - | 172 | 0 | 70 | 1 |
| | [@elastic/appex-sharedux](https://github.com/orgs/elastic/teams/appex-sharedux) | - | 3 | 0 | 3 | 0 |
| | [@elastic/kibana-core](https://github.com/orgs/elastic/teams/kibana-core) | - | 4 | 0 | 4 | 0 |
| | [@elastic/appex-sharedux](https://github.com/orgs/elastic/teams/appex-sharedux) | - | 8 | 0 | 8 | 0 |
@@ -468,7 +468,7 @@ tags: ['contributor', 'dev', 'apidocs', 'kibana']
| | [@elastic/kibana-visualizations](https://github.com/orgs/elastic/teams/kibana-visualizations) | - | 52 | 12 | 43 | 0 |
| | [@elastic/apm-ui](https://github.com/orgs/elastic/teams/apm-ui) | - | 52 | 0 | 52 | 4 |
| | [@elastic/kibana-operations](https://github.com/orgs/elastic/teams/kibana-operations) | - | 13 | 0 | 13 | 0 |
-| | [@elastic/kibana-operations](https://github.com/orgs/elastic/teams/kibana-operations) | - | 85 | 0 | 77 | 5 |
+| | [@elastic/kibana-operations](https://github.com/orgs/elastic/teams/kibana-operations) | - | 85 | 0 | 77 | 6 |
| | [@elastic/kibana-operations](https://github.com/orgs/elastic/teams/kibana-operations) | - | 41 | 2 | 35 | 0 |
| | [@elastic/kibana-operations](https://github.com/orgs/elastic/teams/kibana-operations) | - | 108 | 0 | 107 | 0 |
| | [@elastic/kibana-visualizations](https://github.com/orgs/elastic/teams/kibana-visualizations) | - | 7 | 0 | 5 | 0 |
@@ -477,14 +477,15 @@ tags: ['contributor', 'dev', 'apidocs', 'kibana']
| | [@elastic/kibana-core](https://github.com/orgs/elastic/teams/kibana-core) | - | 8 | 0 | 8 | 0 |
| | [@elastic/kibana-operations](https://github.com/orgs/elastic/teams/kibana-operations) | - | 6 | 0 | 1 | 1 |
| | [@elastic/platform-deployment-management](https://github.com/orgs/elastic/teams/platform-deployment-management) | - | 10 | 0 | 10 | 1 |
+| | [@elastic/platform-deployment-management](https://github.com/orgs/elastic/teams/platform-deployment-management) | - | 23 | 0 | 3 | 0 |
| | [@elastic/platform-deployment-management](https://github.com/orgs/elastic/teams/platform-deployment-management) | - | 20 | 0 | 5 | 0 |
-| | [@elastic/platform-deployment-management](https://github.com/orgs/elastic/teams/platform-deployment-management) | - | 26 | 0 | 7 | 0 |
+| | [@elastic/platform-deployment-management](https://github.com/orgs/elastic/teams/platform-deployment-management) | - | 23 | 0 | 7 | 0 |
| | [@elastic/platform-deployment-management](https://github.com/orgs/elastic/teams/platform-deployment-management) | - | 8 | 0 | 2 | 3 |
| | [@elastic/platform-deployment-management](https://github.com/orgs/elastic/teams/platform-deployment-management) | - | 45 | 0 | 0 | 0 |
| | [@elastic/appex-sharedux @elastic/platform-deployment-management](https://github.com/orgs/elastic/teams/appex-sharedux ) | - | 127 | 0 | 127 | 0 |
| | [@elastic/appex-sharedux @elastic/platform-deployment-management](https://github.com/orgs/elastic/teams/appex-sharedux ) | - | 20 | 0 | 11 | 0 |
-| | [@elastic/platform-deployment-management](https://github.com/orgs/elastic/teams/platform-deployment-management) | - | 75 | 0 | 0 | 0 |
-| | [@elastic/platform-deployment-management](https://github.com/orgs/elastic/teams/platform-deployment-management) | - | 50 | 0 | 2 | 0 |
+| | [@elastic/platform-deployment-management](https://github.com/orgs/elastic/teams/platform-deployment-management) | - | 81 | 0 | 3 | 0 |
+| | [@elastic/platform-deployment-management](https://github.com/orgs/elastic/teams/platform-deployment-management) | - | 54 | 0 | 6 | 0 |
| | [@elastic/platform-deployment-management](https://github.com/orgs/elastic/teams/platform-deployment-management) | - | 2 | 0 | 0 | 0 |
| | [@elastic/kibana-gis](https://github.com/orgs/elastic/teams/kibana-gis) | - | 582 | 1 | 1 | 0 |
| | [@elastic/kibana-gis](https://github.com/orgs/elastic/teams/kibana-gis) | - | 2 | 0 | 2 | 0 |
diff --git a/api_docs/presentation_util.mdx b/api_docs/presentation_util.mdx
index a7df5dbbdc9b7..51466986c9483 100644
--- a/api_docs/presentation_util.mdx
+++ b/api_docs/presentation_util.mdx
@@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/presentationUtil
title: "presentationUtil"
image: https://source.unsplash.com/400x175/?github
description: API docs for the presentationUtil plugin
-date: 2023-09-28
+date: 2023-09-29
tags: ['contributor', 'dev', 'apidocs', 'kibana', 'presentationUtil']
---
import presentationUtilObj from './presentation_util.devdocs.json';
diff --git a/api_docs/profiling.mdx b/api_docs/profiling.mdx
index da15a17a8701d..2695d1b6ee835 100644
--- a/api_docs/profiling.mdx
+++ b/api_docs/profiling.mdx
@@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/profiling
title: "profiling"
image: https://source.unsplash.com/400x175/?github
description: API docs for the profiling plugin
-date: 2023-09-28
+date: 2023-09-29
tags: ['contributor', 'dev', 'apidocs', 'kibana', 'profiling']
---
import profilingObj from './profiling.devdocs.json';
diff --git a/api_docs/profiling_data_access.mdx b/api_docs/profiling_data_access.mdx
index cf17673b30abc..0cd1d97372b50 100644
--- a/api_docs/profiling_data_access.mdx
+++ b/api_docs/profiling_data_access.mdx
@@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/profilingDataAccess
title: "profilingDataAccess"
image: https://source.unsplash.com/400x175/?github
description: API docs for the profilingDataAccess plugin
-date: 2023-09-28
+date: 2023-09-29
tags: ['contributor', 'dev', 'apidocs', 'kibana', 'profilingDataAccess']
---
import profilingDataAccessObj from './profiling_data_access.devdocs.json';
diff --git a/api_docs/remote_clusters.mdx b/api_docs/remote_clusters.mdx
index b901f9a36a529..254fc8e6dbc16 100644
--- a/api_docs/remote_clusters.mdx
+++ b/api_docs/remote_clusters.mdx
@@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/remoteClusters
title: "remoteClusters"
image: https://source.unsplash.com/400x175/?github
description: API docs for the remoteClusters plugin
-date: 2023-09-28
+date: 2023-09-29
tags: ['contributor', 'dev', 'apidocs', 'kibana', 'remoteClusters']
---
import remoteClustersObj from './remote_clusters.devdocs.json';
diff --git a/api_docs/reporting.mdx b/api_docs/reporting.mdx
index f8cb1dfda797d..3627f05b5a06b 100644
--- a/api_docs/reporting.mdx
+++ b/api_docs/reporting.mdx
@@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/reporting
title: "reporting"
image: https://source.unsplash.com/400x175/?github
description: API docs for the reporting plugin
-date: 2023-09-28
+date: 2023-09-29
tags: ['contributor', 'dev', 'apidocs', 'kibana', 'reporting']
---
import reportingObj from './reporting.devdocs.json';
diff --git a/api_docs/rollup.mdx b/api_docs/rollup.mdx
index 7b76a4472eb3d..fb3e95de87da5 100644
--- a/api_docs/rollup.mdx
+++ b/api_docs/rollup.mdx
@@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/rollup
title: "rollup"
image: https://source.unsplash.com/400x175/?github
description: API docs for the rollup plugin
-date: 2023-09-28
+date: 2023-09-29
tags: ['contributor', 'dev', 'apidocs', 'kibana', 'rollup']
---
import rollupObj from './rollup.devdocs.json';
diff --git a/api_docs/rule_registry.mdx b/api_docs/rule_registry.mdx
index dc821f68e9716..e8eab67980299 100644
--- a/api_docs/rule_registry.mdx
+++ b/api_docs/rule_registry.mdx
@@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/ruleRegistry
title: "ruleRegistry"
image: https://source.unsplash.com/400x175/?github
description: API docs for the ruleRegistry plugin
-date: 2023-09-28
+date: 2023-09-29
tags: ['contributor', 'dev', 'apidocs', 'kibana', 'ruleRegistry']
---
import ruleRegistryObj from './rule_registry.devdocs.json';
diff --git a/api_docs/runtime_fields.mdx b/api_docs/runtime_fields.mdx
index eabf54d9a0978..e8b54826e227f 100644
--- a/api_docs/runtime_fields.mdx
+++ b/api_docs/runtime_fields.mdx
@@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/runtimeFields
title: "runtimeFields"
image: https://source.unsplash.com/400x175/?github
description: API docs for the runtimeFields plugin
-date: 2023-09-28
+date: 2023-09-29
tags: ['contributor', 'dev', 'apidocs', 'kibana', 'runtimeFields']
---
import runtimeFieldsObj from './runtime_fields.devdocs.json';
diff --git a/api_docs/saved_objects.mdx b/api_docs/saved_objects.mdx
index 40a29c00deff5..fc6026153c7fe 100644
--- a/api_docs/saved_objects.mdx
+++ b/api_docs/saved_objects.mdx
@@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/savedObjects
title: "savedObjects"
image: https://source.unsplash.com/400x175/?github
description: API docs for the savedObjects plugin
-date: 2023-09-28
+date: 2023-09-29
tags: ['contributor', 'dev', 'apidocs', 'kibana', 'savedObjects']
---
import savedObjectsObj from './saved_objects.devdocs.json';
diff --git a/api_docs/saved_objects_finder.mdx b/api_docs/saved_objects_finder.mdx
index 829153060eae1..e1609045307b5 100644
--- a/api_docs/saved_objects_finder.mdx
+++ b/api_docs/saved_objects_finder.mdx
@@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/savedObjectsFinder
title: "savedObjectsFinder"
image: https://source.unsplash.com/400x175/?github
description: API docs for the savedObjectsFinder plugin
-date: 2023-09-28
+date: 2023-09-29
tags: ['contributor', 'dev', 'apidocs', 'kibana', 'savedObjectsFinder']
---
import savedObjectsFinderObj from './saved_objects_finder.devdocs.json';
diff --git a/api_docs/saved_objects_management.mdx b/api_docs/saved_objects_management.mdx
index 26a7be94eb550..6ff02424f663d 100644
--- a/api_docs/saved_objects_management.mdx
+++ b/api_docs/saved_objects_management.mdx
@@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/savedObjectsManagement
title: "savedObjectsManagement"
image: https://source.unsplash.com/400x175/?github
description: API docs for the savedObjectsManagement plugin
-date: 2023-09-28
+date: 2023-09-29
tags: ['contributor', 'dev', 'apidocs', 'kibana', 'savedObjectsManagement']
---
import savedObjectsManagementObj from './saved_objects_management.devdocs.json';
diff --git a/api_docs/saved_objects_tagging.devdocs.json b/api_docs/saved_objects_tagging.devdocs.json
index 510e34a445e1e..96983288749a3 100644
--- a/api_docs/saved_objects_tagging.devdocs.json
+++ b/api_docs/saved_objects_tagging.devdocs.json
@@ -339,6 +339,73 @@
],
"returnComment": []
},
+ {
+ "parentPluginId": "savedObjectsTagging",
+ "id": "def-server.ITagsClient.findByName",
+ "type": "Function",
+ "tags": [],
+ "label": "findByName",
+ "description": [],
+ "signature": [
+ "(name: string, options?: { exact?: boolean | undefined; } | undefined) => Promise<",
+ {
+ "pluginId": "savedObjectsTaggingOss",
+ "scope": "common",
+ "docId": "kibSavedObjectsTaggingOssPluginApi",
+ "section": "def-common.Tag",
+ "text": "Tag"
+ },
+ " | null>"
+ ],
+ "path": "src/plugins/saved_objects_tagging_oss/common/types.ts",
+ "deprecated": false,
+ "trackAdoption": false,
+ "children": [
+ {
+ "parentPluginId": "savedObjectsTagging",
+ "id": "def-server.ITagsClient.findByName.$1",
+ "type": "string",
+ "tags": [],
+ "label": "name",
+ "description": [],
+ "signature": [
+ "string"
+ ],
+ "path": "src/plugins/saved_objects_tagging_oss/common/types.ts",
+ "deprecated": false,
+ "trackAdoption": false,
+ "isRequired": true
+ },
+ {
+ "parentPluginId": "savedObjectsTagging",
+ "id": "def-server.ITagsClient.findByName.$2",
+ "type": "Object",
+ "tags": [],
+ "label": "options",
+ "description": [],
+ "path": "src/plugins/saved_objects_tagging_oss/common/types.ts",
+ "deprecated": false,
+ "trackAdoption": false,
+ "children": [
+ {
+ "parentPluginId": "savedObjectsTagging",
+ "id": "def-server.ITagsClient.findByName.$2.exact",
+ "type": "CompoundType",
+ "tags": [],
+ "label": "exact",
+ "description": [],
+ "signature": [
+ "boolean | undefined"
+ ],
+ "path": "src/plugins/saved_objects_tagging_oss/common/types.ts",
+ "deprecated": false,
+ "trackAdoption": false
+ }
+ ]
+ }
+ ],
+ "returnComment": []
+ },
{
"parentPluginId": "savedObjectsTagging",
"id": "def-server.ITagsClient.delete",
@@ -931,6 +998,73 @@
],
"returnComment": []
},
+ {
+ "parentPluginId": "savedObjectsTagging",
+ "id": "def-common.ITagsClient.findByName",
+ "type": "Function",
+ "tags": [],
+ "label": "findByName",
+ "description": [],
+ "signature": [
+ "(name: string, options?: { exact?: boolean | undefined; } | undefined) => Promise<",
+ {
+ "pluginId": "savedObjectsTaggingOss",
+ "scope": "common",
+ "docId": "kibSavedObjectsTaggingOssPluginApi",
+ "section": "def-common.Tag",
+ "text": "Tag"
+ },
+ " | null>"
+ ],
+ "path": "src/plugins/saved_objects_tagging_oss/common/types.ts",
+ "deprecated": false,
+ "trackAdoption": false,
+ "children": [
+ {
+ "parentPluginId": "savedObjectsTagging",
+ "id": "def-common.ITagsClient.findByName.$1",
+ "type": "string",
+ "tags": [],
+ "label": "name",
+ "description": [],
+ "signature": [
+ "string"
+ ],
+ "path": "src/plugins/saved_objects_tagging_oss/common/types.ts",
+ "deprecated": false,
+ "trackAdoption": false,
+ "isRequired": true
+ },
+ {
+ "parentPluginId": "savedObjectsTagging",
+ "id": "def-common.ITagsClient.findByName.$2",
+ "type": "Object",
+ "tags": [],
+ "label": "options",
+ "description": [],
+ "path": "src/plugins/saved_objects_tagging_oss/common/types.ts",
+ "deprecated": false,
+ "trackAdoption": false,
+ "children": [
+ {
+ "parentPluginId": "savedObjectsTagging",
+ "id": "def-common.ITagsClient.findByName.$2.exact",
+ "type": "CompoundType",
+ "tags": [],
+ "label": "exact",
+ "description": [],
+ "signature": [
+ "boolean | undefined"
+ ],
+ "path": "src/plugins/saved_objects_tagging_oss/common/types.ts",
+ "deprecated": false,
+ "trackAdoption": false
+ }
+ ]
+ }
+ ],
+ "returnComment": []
+ },
{
"parentPluginId": "savedObjectsTagging",
"id": "def-common.ITagsClient.delete",
diff --git a/api_docs/saved_objects_tagging.mdx b/api_docs/saved_objects_tagging.mdx
index 9ce73f3b3d1e1..277693959e8c1 100644
--- a/api_docs/saved_objects_tagging.mdx
+++ b/api_docs/saved_objects_tagging.mdx
@@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/savedObjectsTagging
title: "savedObjectsTagging"
image: https://source.unsplash.com/400x175/?github
description: API docs for the savedObjectsTagging plugin
-date: 2023-09-28
+date: 2023-09-29
tags: ['contributor', 'dev', 'apidocs', 'kibana', 'savedObjectsTagging']
---
import savedObjectsTaggingObj from './saved_objects_tagging.devdocs.json';
@@ -21,7 +21,7 @@ Contact [@elastic/appex-sharedux](https://github.com/orgs/elastic/teams/appex-sh
| Public API count | Any count | Items lacking comments | Missing exports |
|-------------------|-----------|------------------------|-----------------|
-| 79 | 0 | 73 | 3 |
+| 87 | 0 | 81 | 3 |
## Client
diff --git a/api_docs/saved_objects_tagging_oss.devdocs.json b/api_docs/saved_objects_tagging_oss.devdocs.json
index 97b83dc8f3ea2..991e3715a11d9 100644
--- a/api_docs/saved_objects_tagging_oss.devdocs.json
+++ b/api_docs/saved_objects_tagging_oss.devdocs.json
@@ -1829,6 +1829,73 @@
],
"returnComment": []
},
+ {
+ "parentPluginId": "savedObjectsTaggingOss",
+ "id": "def-common.ITagsClient.findByName",
+ "type": "Function",
+ "tags": [],
+ "label": "findByName",
+ "description": [],
+ "signature": [
+ "(name: string, options?: { exact?: boolean | undefined; } | undefined) => Promise<",
+ {
+ "pluginId": "savedObjectsTaggingOss",
+ "scope": "common",
+ "docId": "kibSavedObjectsTaggingOssPluginApi",
+ "section": "def-common.Tag",
+ "text": "Tag"
+ },
+ " | null>"
+ ],
+ "path": "src/plugins/saved_objects_tagging_oss/common/types.ts",
+ "deprecated": false,
+ "trackAdoption": false,
+ "children": [
+ {
+ "parentPluginId": "savedObjectsTaggingOss",
+ "id": "def-common.ITagsClient.findByName.$1",
+ "type": "string",
+ "tags": [],
+ "label": "name",
+ "description": [],
+ "signature": [
+ "string"
+ ],
+ "path": "src/plugins/saved_objects_tagging_oss/common/types.ts",
+ "deprecated": false,
+ "trackAdoption": false,
+ "isRequired": true
+ },
+ {
+ "parentPluginId": "savedObjectsTaggingOss",
+ "id": "def-common.ITagsClient.findByName.$2",
+ "type": "Object",
+ "tags": [],
+ "label": "options",
+ "description": [],
+ "path": "src/plugins/saved_objects_tagging_oss/common/types.ts",
+ "deprecated": false,
+ "trackAdoption": false,
+ "children": [
+ {
+ "parentPluginId": "savedObjectsTaggingOss",
+ "id": "def-common.ITagsClient.findByName.$2.exact",
+ "type": "CompoundType",
+ "tags": [],
+ "label": "exact",
+ "description": [],
+ "signature": [
+ "boolean | undefined"
+ ],
+ "path": "src/plugins/saved_objects_tagging_oss/common/types.ts",
+ "deprecated": false,
+ "trackAdoption": false
+ }
+ ]
+ }
+ ],
+ "returnComment": []
+ },
{
"parentPluginId": "savedObjectsTaggingOss",
"id": "def-common.ITagsClient.delete",
diff --git a/api_docs/saved_objects_tagging_oss.mdx b/api_docs/saved_objects_tagging_oss.mdx
index b8d0a2b0523bb..582c4245a32ae 100644
--- a/api_docs/saved_objects_tagging_oss.mdx
+++ b/api_docs/saved_objects_tagging_oss.mdx
@@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/savedObjectsTaggingOss
title: "savedObjectsTaggingOss"
image: https://source.unsplash.com/400x175/?github
description: API docs for the savedObjectsTaggingOss plugin
-date: 2023-09-28
+date: 2023-09-29
tags: ['contributor', 'dev', 'apidocs', 'kibana', 'savedObjectsTaggingOss']
---
import savedObjectsTaggingOssObj from './saved_objects_tagging_oss.devdocs.json';
@@ -21,7 +21,7 @@ Contact [@elastic/appex-sharedux](https://github.com/orgs/elastic/teams/appex-sh
| Public API count | Any count | Items lacking comments | Missing exports |
|-------------------|-----------|------------------------|-----------------|
-| 100 | 0 | 52 | 1 |
+| 104 | 0 | 56 | 1 |
## Client
diff --git a/api_docs/saved_search.mdx b/api_docs/saved_search.mdx
index 7f8b2df03ff0c..cb676f293a0c8 100644
--- a/api_docs/saved_search.mdx
+++ b/api_docs/saved_search.mdx
@@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/savedSearch
title: "savedSearch"
image: https://source.unsplash.com/400x175/?github
description: API docs for the savedSearch plugin
-date: 2023-09-28
+date: 2023-09-29
tags: ['contributor', 'dev', 'apidocs', 'kibana', 'savedSearch']
---
import savedSearchObj from './saved_search.devdocs.json';
diff --git a/api_docs/screenshot_mode.mdx b/api_docs/screenshot_mode.mdx
index e979a313e3459..61d29cd983a6b 100644
--- a/api_docs/screenshot_mode.mdx
+++ b/api_docs/screenshot_mode.mdx
@@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/screenshotMode
title: "screenshotMode"
image: https://source.unsplash.com/400x175/?github
description: API docs for the screenshotMode plugin
-date: 2023-09-28
+date: 2023-09-29
tags: ['contributor', 'dev', 'apidocs', 'kibana', 'screenshotMode']
---
import screenshotModeObj from './screenshot_mode.devdocs.json';
diff --git a/api_docs/screenshotting.mdx b/api_docs/screenshotting.mdx
index 3ce1dc31cc8d3..fead0327e73ae 100644
--- a/api_docs/screenshotting.mdx
+++ b/api_docs/screenshotting.mdx
@@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/screenshotting
title: "screenshotting"
image: https://source.unsplash.com/400x175/?github
description: API docs for the screenshotting plugin
-date: 2023-09-28
+date: 2023-09-29
tags: ['contributor', 'dev', 'apidocs', 'kibana', 'screenshotting']
---
import screenshottingObj from './screenshotting.devdocs.json';
diff --git a/api_docs/security.devdocs.json b/api_docs/security.devdocs.json
index cb7f0176a308f..f948514fa2fae 100644
--- a/api_docs/security.devdocs.json
+++ b/api_docs/security.devdocs.json
@@ -3210,6 +3210,10 @@
"plugin": "ml",
"path": "x-pack/plugins/ml/server/routes/annotations.ts"
},
+ {
+ "plugin": "logstash",
+ "path": "x-pack/plugins/logstash/server/routes/pipeline/save.ts"
+ },
{
"plugin": "securitySolution",
"path": "x-pack/plugins/security_solution/server/request_context_factory.ts"
@@ -3234,10 +3238,6 @@
"plugin": "securitySolution",
"path": "x-pack/plugins/security_solution/server/lib/detection_engine/routes/signals/open_close_signals_route.ts"
},
- {
- "plugin": "logstash",
- "path": "x-pack/plugins/logstash/server/routes/pipeline/save.ts"
- },
{
"plugin": "cloudChat",
"path": "x-pack/plugins/cloud_integrations/cloud_chat/server/routes/chat.ts"
@@ -3278,10 +3278,6 @@
"plugin": "ml",
"path": "x-pack/plugins/ml/server/saved_objects/initialization/initialization.ts"
},
- {
- "plugin": "savedObjectsTagging",
- "path": "x-pack/plugins/saved_objects_tagging/server/request_handler_context.ts"
- },
{
"plugin": "ml",
"path": "x-pack/plugins/ml/server/saved_objects/sync_task.ts"
@@ -3294,6 +3290,10 @@
"plugin": "ml",
"path": "x-pack/plugins/ml/server/plugin.ts"
},
+ {
+ "plugin": "savedObjectsTagging",
+ "path": "x-pack/plugins/saved_objects_tagging/server/request_handler_context.ts"
+ },
{
"plugin": "enterpriseSearch",
"path": "x-pack/plugins/enterprise_search/server/lib/check_access.ts"
diff --git a/api_docs/security.mdx b/api_docs/security.mdx
index a195c2e74f552..65bf6cb17b91e 100644
--- a/api_docs/security.mdx
+++ b/api_docs/security.mdx
@@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/security
title: "security"
image: https://source.unsplash.com/400x175/?github
description: API docs for the security plugin
-date: 2023-09-28
+date: 2023-09-29
tags: ['contributor', 'dev', 'apidocs', 'kibana', 'security']
---
import securityObj from './security.devdocs.json';
diff --git a/api_docs/security_solution.devdocs.json b/api_docs/security_solution.devdocs.json
index 45c4a2685ac7c..3b8de66e95315 100644
--- a/api_docs/security_solution.devdocs.json
+++ b/api_docs/security_solution.devdocs.json
@@ -1704,6 +1704,34 @@
"path": "x-pack/plugins/security_solution/public/timelines/store/timeline/model.ts",
"deprecated": false,
"trackAdoption": false
+ },
+ {
+ "parentPluginId": "securitySolution",
+ "id": "def-public.TimelineModel.savedSearchId",
+ "type": "CompoundType",
+ "tags": [],
+ "label": "savedSearchId",
+ "description": [],
+ "signature": [
+ "string | null"
+ ],
+ "path": "x-pack/plugins/security_solution/public/timelines/store/timeline/model.ts",
+ "deprecated": false,
+ "trackAdoption": false
+ },
+ {
+ "parentPluginId": "securitySolution",
+ "id": "def-public.TimelineModel.isDiscoverSavedSearchLoaded",
+ "type": "CompoundType",
+ "tags": [],
+ "label": "isDiscoverSavedSearchLoaded",
+ "description": [],
+ "signature": [
+ "boolean | undefined"
+ ],
+ "path": "x-pack/plugins/security_solution/public/timelines/store/timeline/model.ts",
+ "deprecated": false,
+ "trackAdoption": false
}
],
"initialIsOpen": false
diff --git a/api_docs/security_solution.mdx b/api_docs/security_solution.mdx
index fd4ffa31ac797..c0bf1d8a34f33 100644
--- a/api_docs/security_solution.mdx
+++ b/api_docs/security_solution.mdx
@@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/securitySolution
title: "securitySolution"
image: https://source.unsplash.com/400x175/?github
description: API docs for the securitySolution plugin
-date: 2023-09-28
+date: 2023-09-29
tags: ['contributor', 'dev', 'apidocs', 'kibana', 'securitySolution']
---
import securitySolutionObj from './security_solution.devdocs.json';
@@ -21,7 +21,7 @@ Contact [@elastic/security-solution](https://github.com/orgs/elastic/teams/secur
| Public API count | Any count | Items lacking comments | Missing exports |
|-------------------|-----------|------------------------|-----------------|
-| 172 | 0 | 106 | 32 |
+| 174 | 0 | 108 | 32 |
## Client
diff --git a/api_docs/security_solution_ess.mdx b/api_docs/security_solution_ess.mdx
index ff3e12a9e7696..ff263e96cdddb 100644
--- a/api_docs/security_solution_ess.mdx
+++ b/api_docs/security_solution_ess.mdx
@@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/securitySolutionEss
title: "securitySolutionEss"
image: https://source.unsplash.com/400x175/?github
description: API docs for the securitySolutionEss plugin
-date: 2023-09-28
+date: 2023-09-29
tags: ['contributor', 'dev', 'apidocs', 'kibana', 'securitySolutionEss']
---
import securitySolutionEssObj from './security_solution_ess.devdocs.json';
diff --git a/api_docs/security_solution_serverless.mdx b/api_docs/security_solution_serverless.mdx
index d41c003124576..348953b955195 100644
--- a/api_docs/security_solution_serverless.mdx
+++ b/api_docs/security_solution_serverless.mdx
@@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/securitySolutionServerless
title: "securitySolutionServerless"
image: https://source.unsplash.com/400x175/?github
description: API docs for the securitySolutionServerless plugin
-date: 2023-09-28
+date: 2023-09-29
tags: ['contributor', 'dev', 'apidocs', 'kibana', 'securitySolutionServerless']
---
import securitySolutionServerlessObj from './security_solution_serverless.devdocs.json';
diff --git a/api_docs/serverless.mdx b/api_docs/serverless.mdx
index 20ec34b2ba72b..68401a17705e8 100644
--- a/api_docs/serverless.mdx
+++ b/api_docs/serverless.mdx
@@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/serverless
title: "serverless"
image: https://source.unsplash.com/400x175/?github
description: API docs for the serverless plugin
-date: 2023-09-28
+date: 2023-09-29
tags: ['contributor', 'dev', 'apidocs', 'kibana', 'serverless']
---
import serverlessObj from './serverless.devdocs.json';
diff --git a/api_docs/serverless_observability.mdx b/api_docs/serverless_observability.mdx
index 8138b0b7690b9..788a3b9a4dc13 100644
--- a/api_docs/serverless_observability.mdx
+++ b/api_docs/serverless_observability.mdx
@@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/serverlessObservability
title: "serverlessObservability"
image: https://source.unsplash.com/400x175/?github
description: API docs for the serverlessObservability plugin
-date: 2023-09-28
+date: 2023-09-29
tags: ['contributor', 'dev', 'apidocs', 'kibana', 'serverlessObservability']
---
import serverlessObservabilityObj from './serverless_observability.devdocs.json';
diff --git a/api_docs/serverless_search.mdx b/api_docs/serverless_search.mdx
index 8eadcba48fa53..3016c104dde64 100644
--- a/api_docs/serverless_search.mdx
+++ b/api_docs/serverless_search.mdx
@@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/serverlessSearch
title: "serverlessSearch"
image: https://source.unsplash.com/400x175/?github
description: API docs for the serverlessSearch plugin
-date: 2023-09-28
+date: 2023-09-29
tags: ['contributor', 'dev', 'apidocs', 'kibana', 'serverlessSearch']
---
import serverlessSearchObj from './serverless_search.devdocs.json';
diff --git a/api_docs/session_view.mdx b/api_docs/session_view.mdx
index 282f63bb82d95..d9b0601eeb097 100644
--- a/api_docs/session_view.mdx
+++ b/api_docs/session_view.mdx
@@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/sessionView
title: "sessionView"
image: https://source.unsplash.com/400x175/?github
description: API docs for the sessionView plugin
-date: 2023-09-28
+date: 2023-09-29
tags: ['contributor', 'dev', 'apidocs', 'kibana', 'sessionView']
---
import sessionViewObj from './session_view.devdocs.json';
diff --git a/api_docs/share.mdx b/api_docs/share.mdx
index 48f9f39124c93..a562750b21305 100644
--- a/api_docs/share.mdx
+++ b/api_docs/share.mdx
@@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/share
title: "share"
image: https://source.unsplash.com/400x175/?github
description: API docs for the share plugin
-date: 2023-09-28
+date: 2023-09-29
tags: ['contributor', 'dev', 'apidocs', 'kibana', 'share']
---
import shareObj from './share.devdocs.json';
diff --git a/api_docs/snapshot_restore.mdx b/api_docs/snapshot_restore.mdx
index e2c8c04a3183b..725af0a996d55 100644
--- a/api_docs/snapshot_restore.mdx
+++ b/api_docs/snapshot_restore.mdx
@@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/snapshotRestore
title: "snapshotRestore"
image: https://source.unsplash.com/400x175/?github
description: API docs for the snapshotRestore plugin
-date: 2023-09-28
+date: 2023-09-29
tags: ['contributor', 'dev', 'apidocs', 'kibana', 'snapshotRestore']
---
import snapshotRestoreObj from './snapshot_restore.devdocs.json';
diff --git a/api_docs/spaces.mdx b/api_docs/spaces.mdx
index 3d0b490839d7e..f98203fc4ed2c 100644
--- a/api_docs/spaces.mdx
+++ b/api_docs/spaces.mdx
@@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/spaces
title: "spaces"
image: https://source.unsplash.com/400x175/?github
description: API docs for the spaces plugin
-date: 2023-09-28
+date: 2023-09-29
tags: ['contributor', 'dev', 'apidocs', 'kibana', 'spaces']
---
import spacesObj from './spaces.devdocs.json';
diff --git a/api_docs/stack_alerts.mdx b/api_docs/stack_alerts.mdx
index 4f00f67a10b97..80001594777aa 100644
--- a/api_docs/stack_alerts.mdx
+++ b/api_docs/stack_alerts.mdx
@@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/stackAlerts
title: "stackAlerts"
image: https://source.unsplash.com/400x175/?github
description: API docs for the stackAlerts plugin
-date: 2023-09-28
+date: 2023-09-29
tags: ['contributor', 'dev', 'apidocs', 'kibana', 'stackAlerts']
---
import stackAlertsObj from './stack_alerts.devdocs.json';
diff --git a/api_docs/stack_connectors.mdx b/api_docs/stack_connectors.mdx
index a119bc016e882..071068835097e 100644
--- a/api_docs/stack_connectors.mdx
+++ b/api_docs/stack_connectors.mdx
@@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/stackConnectors
title: "stackConnectors"
image: https://source.unsplash.com/400x175/?github
description: API docs for the stackConnectors plugin
-date: 2023-09-28
+date: 2023-09-29
tags: ['contributor', 'dev', 'apidocs', 'kibana', 'stackConnectors']
---
import stackConnectorsObj from './stack_connectors.devdocs.json';
diff --git a/api_docs/task_manager.mdx b/api_docs/task_manager.mdx
index 2001d0871d766..604d4f203d65a 100644
--- a/api_docs/task_manager.mdx
+++ b/api_docs/task_manager.mdx
@@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/taskManager
title: "taskManager"
image: https://source.unsplash.com/400x175/?github
description: API docs for the taskManager plugin
-date: 2023-09-28
+date: 2023-09-29
tags: ['contributor', 'dev', 'apidocs', 'kibana', 'taskManager']
---
import taskManagerObj from './task_manager.devdocs.json';
diff --git a/api_docs/telemetry.mdx b/api_docs/telemetry.mdx
index dd882dccdfcb7..81bd42a753c47 100644
--- a/api_docs/telemetry.mdx
+++ b/api_docs/telemetry.mdx
@@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/telemetry
title: "telemetry"
image: https://source.unsplash.com/400x175/?github
description: API docs for the telemetry plugin
-date: 2023-09-28
+date: 2023-09-29
tags: ['contributor', 'dev', 'apidocs', 'kibana', 'telemetry']
---
import telemetryObj from './telemetry.devdocs.json';
diff --git a/api_docs/telemetry_collection_manager.mdx b/api_docs/telemetry_collection_manager.mdx
index 5a7744abb7f3d..6befbfd938e9c 100644
--- a/api_docs/telemetry_collection_manager.mdx
+++ b/api_docs/telemetry_collection_manager.mdx
@@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/telemetryCollectionManager
title: "telemetryCollectionManager"
image: https://source.unsplash.com/400x175/?github
description: API docs for the telemetryCollectionManager plugin
-date: 2023-09-28
+date: 2023-09-29
tags: ['contributor', 'dev', 'apidocs', 'kibana', 'telemetryCollectionManager']
---
import telemetryCollectionManagerObj from './telemetry_collection_manager.devdocs.json';
diff --git a/api_docs/telemetry_collection_xpack.mdx b/api_docs/telemetry_collection_xpack.mdx
index ba4840e76be51..2807cb8cf865a 100644
--- a/api_docs/telemetry_collection_xpack.mdx
+++ b/api_docs/telemetry_collection_xpack.mdx
@@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/telemetryCollectionXpack
title: "telemetryCollectionXpack"
image: https://source.unsplash.com/400x175/?github
description: API docs for the telemetryCollectionXpack plugin
-date: 2023-09-28
+date: 2023-09-29
tags: ['contributor', 'dev', 'apidocs', 'kibana', 'telemetryCollectionXpack']
---
import telemetryCollectionXpackObj from './telemetry_collection_xpack.devdocs.json';
diff --git a/api_docs/telemetry_management_section.mdx b/api_docs/telemetry_management_section.mdx
index 086eea00a7048..f17403371ed83 100644
--- a/api_docs/telemetry_management_section.mdx
+++ b/api_docs/telemetry_management_section.mdx
@@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/telemetryManagementSection
title: "telemetryManagementSection"
image: https://source.unsplash.com/400x175/?github
description: API docs for the telemetryManagementSection plugin
-date: 2023-09-28
+date: 2023-09-29
tags: ['contributor', 'dev', 'apidocs', 'kibana', 'telemetryManagementSection']
---
import telemetryManagementSectionObj from './telemetry_management_section.devdocs.json';
diff --git a/api_docs/text_based_languages.mdx b/api_docs/text_based_languages.mdx
index 8bed3a38d9d98..fb393daae6c58 100644
--- a/api_docs/text_based_languages.mdx
+++ b/api_docs/text_based_languages.mdx
@@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/textBasedLanguages
title: "textBasedLanguages"
image: https://source.unsplash.com/400x175/?github
description: API docs for the textBasedLanguages plugin
-date: 2023-09-28
+date: 2023-09-29
tags: ['contributor', 'dev', 'apidocs', 'kibana', 'textBasedLanguages']
---
import textBasedLanguagesObj from './text_based_languages.devdocs.json';
diff --git a/api_docs/threat_intelligence.mdx b/api_docs/threat_intelligence.mdx
index 47d5a58321822..b7afa86f87996 100644
--- a/api_docs/threat_intelligence.mdx
+++ b/api_docs/threat_intelligence.mdx
@@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/threatIntelligence
title: "threatIntelligence"
image: https://source.unsplash.com/400x175/?github
description: API docs for the threatIntelligence plugin
-date: 2023-09-28
+date: 2023-09-29
tags: ['contributor', 'dev', 'apidocs', 'kibana', 'threatIntelligence']
---
import threatIntelligenceObj from './threat_intelligence.devdocs.json';
diff --git a/api_docs/timelines.mdx b/api_docs/timelines.mdx
index 797ddd54466a2..734e024ba4b51 100644
--- a/api_docs/timelines.mdx
+++ b/api_docs/timelines.mdx
@@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/timelines
title: "timelines"
image: https://source.unsplash.com/400x175/?github
description: API docs for the timelines plugin
-date: 2023-09-28
+date: 2023-09-29
tags: ['contributor', 'dev', 'apidocs', 'kibana', 'timelines']
---
import timelinesObj from './timelines.devdocs.json';
diff --git a/api_docs/transform.mdx b/api_docs/transform.mdx
index 822955b338e95..0bd05395d4d03 100644
--- a/api_docs/transform.mdx
+++ b/api_docs/transform.mdx
@@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/transform
title: "transform"
image: https://source.unsplash.com/400x175/?github
description: API docs for the transform plugin
-date: 2023-09-28
+date: 2023-09-29
tags: ['contributor', 'dev', 'apidocs', 'kibana', 'transform']
---
import transformObj from './transform.devdocs.json';
diff --git a/api_docs/triggers_actions_ui.mdx b/api_docs/triggers_actions_ui.mdx
index a0be9324233af..1ae5cd6f4d574 100644
--- a/api_docs/triggers_actions_ui.mdx
+++ b/api_docs/triggers_actions_ui.mdx
@@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/triggersActionsUi
title: "triggersActionsUi"
image: https://source.unsplash.com/400x175/?github
description: API docs for the triggersActionsUi plugin
-date: 2023-09-28
+date: 2023-09-29
tags: ['contributor', 'dev', 'apidocs', 'kibana', 'triggersActionsUi']
---
import triggersActionsUiObj from './triggers_actions_ui.devdocs.json';
diff --git a/api_docs/ui_actions.mdx b/api_docs/ui_actions.mdx
index ccd0ffdd8d18f..64a35bf611779 100644
--- a/api_docs/ui_actions.mdx
+++ b/api_docs/ui_actions.mdx
@@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/uiActions
title: "uiActions"
image: https://source.unsplash.com/400x175/?github
description: API docs for the uiActions plugin
-date: 2023-09-28
+date: 2023-09-29
tags: ['contributor', 'dev', 'apidocs', 'kibana', 'uiActions']
---
import uiActionsObj from './ui_actions.devdocs.json';
diff --git a/api_docs/ui_actions_enhanced.mdx b/api_docs/ui_actions_enhanced.mdx
index 4724b1d9fb6b1..da33951af8f66 100644
--- a/api_docs/ui_actions_enhanced.mdx
+++ b/api_docs/ui_actions_enhanced.mdx
@@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/uiActionsEnhanced
title: "uiActionsEnhanced"
image: https://source.unsplash.com/400x175/?github
description: API docs for the uiActionsEnhanced plugin
-date: 2023-09-28
+date: 2023-09-29
tags: ['contributor', 'dev', 'apidocs', 'kibana', 'uiActionsEnhanced']
---
import uiActionsEnhancedObj from './ui_actions_enhanced.devdocs.json';
diff --git a/api_docs/unified_doc_viewer.mdx b/api_docs/unified_doc_viewer.mdx
index 89a392e85cd44..f139ec0e25121 100644
--- a/api_docs/unified_doc_viewer.mdx
+++ b/api_docs/unified_doc_viewer.mdx
@@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/unifiedDocViewer
title: "unifiedDocViewer"
image: https://source.unsplash.com/400x175/?github
description: API docs for the unifiedDocViewer plugin
-date: 2023-09-28
+date: 2023-09-29
tags: ['contributor', 'dev', 'apidocs', 'kibana', 'unifiedDocViewer']
---
import unifiedDocViewerObj from './unified_doc_viewer.devdocs.json';
diff --git a/api_docs/unified_histogram.mdx b/api_docs/unified_histogram.mdx
index 47af58f3b1b0a..1437cc682f137 100644
--- a/api_docs/unified_histogram.mdx
+++ b/api_docs/unified_histogram.mdx
@@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/unifiedHistogram
title: "unifiedHistogram"
image: https://source.unsplash.com/400x175/?github
description: API docs for the unifiedHistogram plugin
-date: 2023-09-28
+date: 2023-09-29
tags: ['contributor', 'dev', 'apidocs', 'kibana', 'unifiedHistogram']
---
import unifiedHistogramObj from './unified_histogram.devdocs.json';
diff --git a/api_docs/unified_search.mdx b/api_docs/unified_search.mdx
index 3520229eed82c..87a52c34f8287 100644
--- a/api_docs/unified_search.mdx
+++ b/api_docs/unified_search.mdx
@@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/unifiedSearch
title: "unifiedSearch"
image: https://source.unsplash.com/400x175/?github
description: API docs for the unifiedSearch plugin
-date: 2023-09-28
+date: 2023-09-29
tags: ['contributor', 'dev', 'apidocs', 'kibana', 'unifiedSearch']
---
import unifiedSearchObj from './unified_search.devdocs.json';
diff --git a/api_docs/unified_search_autocomplete.mdx b/api_docs/unified_search_autocomplete.mdx
index 1d359ea6d6ff1..67cacba2c47e4 100644
--- a/api_docs/unified_search_autocomplete.mdx
+++ b/api_docs/unified_search_autocomplete.mdx
@@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/unifiedSearch-autocomplete
title: "unifiedSearch.autocomplete"
image: https://source.unsplash.com/400x175/?github
description: API docs for the unifiedSearch.autocomplete plugin
-date: 2023-09-28
+date: 2023-09-29
tags: ['contributor', 'dev', 'apidocs', 'kibana', 'unifiedSearch.autocomplete']
---
import unifiedSearchAutocompleteObj from './unified_search_autocomplete.devdocs.json';
diff --git a/api_docs/uptime.mdx b/api_docs/uptime.mdx
index 1fc2ae6dba4e3..0d3603b06fce2 100644
--- a/api_docs/uptime.mdx
+++ b/api_docs/uptime.mdx
@@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/uptime
title: "uptime"
image: https://source.unsplash.com/400x175/?github
description: API docs for the uptime plugin
-date: 2023-09-28
+date: 2023-09-29
tags: ['contributor', 'dev', 'apidocs', 'kibana', 'uptime']
---
import uptimeObj from './uptime.devdocs.json';
diff --git a/api_docs/url_forwarding.mdx b/api_docs/url_forwarding.mdx
index 5db01f521053b..1bd1ecc730ec1 100644
--- a/api_docs/url_forwarding.mdx
+++ b/api_docs/url_forwarding.mdx
@@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/urlForwarding
title: "urlForwarding"
image: https://source.unsplash.com/400x175/?github
description: API docs for the urlForwarding plugin
-date: 2023-09-28
+date: 2023-09-29
tags: ['contributor', 'dev', 'apidocs', 'kibana', 'urlForwarding']
---
import urlForwardingObj from './url_forwarding.devdocs.json';
diff --git a/api_docs/usage_collection.mdx b/api_docs/usage_collection.mdx
index 5fce49ae6bd22..2bf541bb0825e 100644
--- a/api_docs/usage_collection.mdx
+++ b/api_docs/usage_collection.mdx
@@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/usageCollection
title: "usageCollection"
image: https://source.unsplash.com/400x175/?github
description: API docs for the usageCollection plugin
-date: 2023-09-28
+date: 2023-09-29
tags: ['contributor', 'dev', 'apidocs', 'kibana', 'usageCollection']
---
import usageCollectionObj from './usage_collection.devdocs.json';
diff --git a/api_docs/ux.mdx b/api_docs/ux.mdx
index 4bd53cf271676..b7a111300e4b7 100644
--- a/api_docs/ux.mdx
+++ b/api_docs/ux.mdx
@@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/ux
title: "ux"
image: https://source.unsplash.com/400x175/?github
description: API docs for the ux plugin
-date: 2023-09-28
+date: 2023-09-29
tags: ['contributor', 'dev', 'apidocs', 'kibana', 'ux']
---
import uxObj from './ux.devdocs.json';
diff --git a/api_docs/vis_default_editor.mdx b/api_docs/vis_default_editor.mdx
index 3ae101e66ad18..de982b3e1fd85 100644
--- a/api_docs/vis_default_editor.mdx
+++ b/api_docs/vis_default_editor.mdx
@@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/visDefaultEditor
title: "visDefaultEditor"
image: https://source.unsplash.com/400x175/?github
description: API docs for the visDefaultEditor plugin
-date: 2023-09-28
+date: 2023-09-29
tags: ['contributor', 'dev', 'apidocs', 'kibana', 'visDefaultEditor']
---
import visDefaultEditorObj from './vis_default_editor.devdocs.json';
diff --git a/api_docs/vis_type_gauge.mdx b/api_docs/vis_type_gauge.mdx
index e3f8832deeed8..cc8974f313278 100644
--- a/api_docs/vis_type_gauge.mdx
+++ b/api_docs/vis_type_gauge.mdx
@@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/visTypeGauge
title: "visTypeGauge"
image: https://source.unsplash.com/400x175/?github
description: API docs for the visTypeGauge plugin
-date: 2023-09-28
+date: 2023-09-29
tags: ['contributor', 'dev', 'apidocs', 'kibana', 'visTypeGauge']
---
import visTypeGaugeObj from './vis_type_gauge.devdocs.json';
diff --git a/api_docs/vis_type_heatmap.mdx b/api_docs/vis_type_heatmap.mdx
index 0e9b968bcacbd..55b5ecb020689 100644
--- a/api_docs/vis_type_heatmap.mdx
+++ b/api_docs/vis_type_heatmap.mdx
@@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/visTypeHeatmap
title: "visTypeHeatmap"
image: https://source.unsplash.com/400x175/?github
description: API docs for the visTypeHeatmap plugin
-date: 2023-09-28
+date: 2023-09-29
tags: ['contributor', 'dev', 'apidocs', 'kibana', 'visTypeHeatmap']
---
import visTypeHeatmapObj from './vis_type_heatmap.devdocs.json';
diff --git a/api_docs/vis_type_pie.mdx b/api_docs/vis_type_pie.mdx
index 74b27d1c846cd..497dc5be53ff0 100644
--- a/api_docs/vis_type_pie.mdx
+++ b/api_docs/vis_type_pie.mdx
@@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/visTypePie
title: "visTypePie"
image: https://source.unsplash.com/400x175/?github
description: API docs for the visTypePie plugin
-date: 2023-09-28
+date: 2023-09-29
tags: ['contributor', 'dev', 'apidocs', 'kibana', 'visTypePie']
---
import visTypePieObj from './vis_type_pie.devdocs.json';
diff --git a/api_docs/vis_type_table.mdx b/api_docs/vis_type_table.mdx
index bc6949ec4ca44..5b9888c3a7afc 100644
--- a/api_docs/vis_type_table.mdx
+++ b/api_docs/vis_type_table.mdx
@@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/visTypeTable
title: "visTypeTable"
image: https://source.unsplash.com/400x175/?github
description: API docs for the visTypeTable plugin
-date: 2023-09-28
+date: 2023-09-29
tags: ['contributor', 'dev', 'apidocs', 'kibana', 'visTypeTable']
---
import visTypeTableObj from './vis_type_table.devdocs.json';
diff --git a/api_docs/vis_type_timelion.mdx b/api_docs/vis_type_timelion.mdx
index 009837c964ddd..c6e72e4d2054d 100644
--- a/api_docs/vis_type_timelion.mdx
+++ b/api_docs/vis_type_timelion.mdx
@@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/visTypeTimelion
title: "visTypeTimelion"
image: https://source.unsplash.com/400x175/?github
description: API docs for the visTypeTimelion plugin
-date: 2023-09-28
+date: 2023-09-29
tags: ['contributor', 'dev', 'apidocs', 'kibana', 'visTypeTimelion']
---
import visTypeTimelionObj from './vis_type_timelion.devdocs.json';
diff --git a/api_docs/vis_type_timeseries.mdx b/api_docs/vis_type_timeseries.mdx
index 81a64d3344162..aa734a8ec86b0 100644
--- a/api_docs/vis_type_timeseries.mdx
+++ b/api_docs/vis_type_timeseries.mdx
@@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/visTypeTimeseries
title: "visTypeTimeseries"
image: https://source.unsplash.com/400x175/?github
description: API docs for the visTypeTimeseries plugin
-date: 2023-09-28
+date: 2023-09-29
tags: ['contributor', 'dev', 'apidocs', 'kibana', 'visTypeTimeseries']
---
import visTypeTimeseriesObj from './vis_type_timeseries.devdocs.json';
diff --git a/api_docs/vis_type_vega.mdx b/api_docs/vis_type_vega.mdx
index 1ad872a67511f..43ea8343940ed 100644
--- a/api_docs/vis_type_vega.mdx
+++ b/api_docs/vis_type_vega.mdx
@@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/visTypeVega
title: "visTypeVega"
image: https://source.unsplash.com/400x175/?github
description: API docs for the visTypeVega plugin
-date: 2023-09-28
+date: 2023-09-29
tags: ['contributor', 'dev', 'apidocs', 'kibana', 'visTypeVega']
---
import visTypeVegaObj from './vis_type_vega.devdocs.json';
diff --git a/api_docs/vis_type_vislib.mdx b/api_docs/vis_type_vislib.mdx
index 8fe84f20eb7c5..c11ae53418c07 100644
--- a/api_docs/vis_type_vislib.mdx
+++ b/api_docs/vis_type_vislib.mdx
@@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/visTypeVislib
title: "visTypeVislib"
image: https://source.unsplash.com/400x175/?github
description: API docs for the visTypeVislib plugin
-date: 2023-09-28
+date: 2023-09-29
tags: ['contributor', 'dev', 'apidocs', 'kibana', 'visTypeVislib']
---
import visTypeVislibObj from './vis_type_vislib.devdocs.json';
diff --git a/api_docs/vis_type_xy.mdx b/api_docs/vis_type_xy.mdx
index 9c678aca9289b..83f38f5fac57e 100644
--- a/api_docs/vis_type_xy.mdx
+++ b/api_docs/vis_type_xy.mdx
@@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/visTypeXy
title: "visTypeXy"
image: https://source.unsplash.com/400x175/?github
description: API docs for the visTypeXy plugin
-date: 2023-09-28
+date: 2023-09-29
tags: ['contributor', 'dev', 'apidocs', 'kibana', 'visTypeXy']
---
import visTypeXyObj from './vis_type_xy.devdocs.json';
diff --git a/api_docs/visualizations.mdx b/api_docs/visualizations.mdx
index 709b8ba6fc23a..d2a4467bb76e9 100644
--- a/api_docs/visualizations.mdx
+++ b/api_docs/visualizations.mdx
@@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/visualizations
title: "visualizations"
image: https://source.unsplash.com/400x175/?github
description: API docs for the visualizations plugin
-date: 2023-09-28
+date: 2023-09-29
tags: ['contributor', 'dev', 'apidocs', 'kibana', 'visualizations']
---
import visualizationsObj from './visualizations.devdocs.json';
diff --git a/docs/developer/plugin-list.asciidoc b/docs/developer/plugin-list.asciidoc
index 71190c26c4894..ccea77d906970 100644
--- a/docs/developer/plugin-list.asciidoc
+++ b/docs/developer/plugin-list.asciidoc
@@ -451,8 +451,7 @@ The plugin exposes the static DefaultEditorController class to consume.
|{kib-repo}blob/{branch}/x-pack/plugins/asset_manager/README.md[assetManager]
-|This plugin provides access to the asset data stored in assets-* indices, primarily
-for inventory and topology purposes.
+|This plugin provides access to observed asset data, such as information about hosts, pods, containers, services, and more.
|{kib-repo}blob/{branch}/x-pack/plugins/banners/README.md[banners]
diff --git a/package.json b/package.json
index 4792c66f475ab..f2d5295783e26 100644
--- a/package.json
+++ b/package.json
@@ -506,6 +506,7 @@
"@kbn/logstash-plugin": "link:x-pack/plugins/logstash",
"@kbn/management-cards-navigation": "link:packages/kbn-management/cards_navigation",
"@kbn/management-plugin": "link:src/plugins/management",
+ "@kbn/management-settings-components-field-category": "link:packages/kbn-management/settings/components/field_category",
"@kbn/management-settings-components-field-input": "link:packages/kbn-management/settings/components/field_input",
"@kbn/management-settings-components-field-row": "link:packages/kbn-management/settings/components/field_row",
"@kbn/management-settings-components-form": "link:packages/kbn-management/settings/components/form",
diff --git a/packages/core/chrome/core-chrome-browser-internal/src/ui/loading_indicator.tsx b/packages/core/chrome/core-chrome-browser-internal/src/ui/loading_indicator.tsx
index 8e3cae33ceb84..22e9b5dd9276d 100644
--- a/packages/core/chrome/core-chrome-browser-internal/src/ui/loading_indicator.tsx
+++ b/packages/core/chrome/core-chrome-browser-internal/src/ui/loading_indicator.tsx
@@ -19,6 +19,8 @@ export interface LoadingIndicatorProps {
loadingCount$: ReturnType;
showAsBar?: boolean;
customLogo?: string;
+ maxAmount?: number;
+ valueAmount?: string | number;
}
export class LoadingIndicator extends React.Component {
@@ -62,8 +64,6 @@ export class LoadingIndicator extends React.Component;
+
+export const Categories: Story = (params) => {
+ const { onClearQuery, isSavingEnabled, onFieldChange, unsavedChanges, categorizedFields } =
+ useCategoryStory(params);
+
+ return (
+
+
+
+ );
+};
diff --git a/packages/kbn-management/settings/components/field_category/__stories__/category.stories.tsx b/packages/kbn-management/settings/components/field_category/__stories__/category.stories.tsx
new file mode 100644
index 0000000000000..180f3d0b4ce49
--- /dev/null
+++ b/packages/kbn-management/settings/components/field_category/__stories__/category.stories.tsx
@@ -0,0 +1,83 @@
+/*
+ * Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one
+ * or more contributor license agreements. Licensed under the Elastic License
+ * 2.0 and the Server Side Public License, v 1; you may not use this file except
+ * in compliance with, at your election, the Elastic License 2.0 or the Server
+ * Side Public License, v 1.
+ */
+
+import React from 'react';
+import type { ComponentMeta } from '@storybook/react';
+import { action } from '@storybook/addon-actions';
+
+import { getSettingsMock } from '@kbn/management-settings-utilities/mocks/settings.mock';
+import { getFieldDefinitions } from '@kbn/management-settings-field-definition';
+import { categorizeFields } from '@kbn/management-settings-utilities';
+import { FieldRow } from '@kbn/management-settings-components-field-row';
+
+import { FieldCategory as Component, type FieldCategoryProps as ComponentProps } from '../category';
+import { Params, useCategoryStory } from './use_category_story';
+import { FieldCategoryProvider } from '../services';
+
+const settings = getSettingsMock();
+
+// Markdown and JSON fields require Monaco, which are *notoriously* slow in Storybook due
+// to the lack of a webworker. Until we can resolve it, filter out those fields.
+const definitions = getFieldDefinitions(settings, {
+ isCustom: () => {
+ return false;
+ },
+ isOverridden: () => {
+ return false;
+ },
+}).filter((field) => field.type !== 'json' && field.type !== 'markdown');
+
+const categories = Object.keys(categorizeFields(definitions));
+
+export default {
+ title: 'Settings/Field Category/Category',
+ description: '',
+ args: {
+ category: categories[0],
+ isFiltered: false,
+ isSavingEnabled: true,
+ },
+ argTypes: {
+ category: {
+ control: {
+ type: 'select',
+ options: categories,
+ },
+ },
+ },
+} as ComponentMeta;
+
+type FieldCategoryParams = Pick & Params;
+
+export const Category = ({ isFiltered, category, isSavingEnabled }: FieldCategoryParams) => {
+ const { onClearQuery, onFieldChange, unsavedChanges } = useCategoryStory({
+ isFiltered,
+ isSavingEnabled,
+ });
+
+ const { count, fields } = categorizeFields(definitions)[category];
+ const rows = isFiltered ? [fields[0]] : fields;
+
+ return (
+
+
+ {rows.map((field) => (
+
+ ))}
+
+
+ );
+};
diff --git a/packages/kbn-management/settings/components/field_category/__stories__/use_category_story.tsx b/packages/kbn-management/settings/components/field_category/__stories__/use_category_story.tsx
new file mode 100644
index 0000000000000..73962fe9ed16c
--- /dev/null
+++ b/packages/kbn-management/settings/components/field_category/__stories__/use_category_story.tsx
@@ -0,0 +1,63 @@
+/*
+ * Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one
+ * or more contributor license agreements. Licensed under the Elastic License
+ * 2.0 and the Server Side Public License, v 1; you may not use this file except
+ * in compliance with, at your election, the Elastic License 2.0 or the Server
+ * Side Public License, v 1.
+ */
+
+import React from 'react';
+import { useArgs } from '@storybook/client-api';
+import { action } from '@storybook/addon-actions';
+
+import { getSettingsMock } from '@kbn/management-settings-utilities/mocks/settings.mock';
+import { getFieldDefinitions } from '@kbn/management-settings-field-definition';
+import { categorizeFields } from '@kbn/management-settings-utilities';
+import { UnsavedFieldChanges, OnFieldChangeFn } from '@kbn/management-settings-types';
+
+export interface Params {
+ isFiltered: boolean;
+ isSavingEnabled: boolean;
+}
+
+export const useCategoryStory = ({ isFiltered, isSavingEnabled }: Params) => {
+ const [_args, updateArgs] = useArgs();
+ const settings = getSettingsMock();
+
+ // Markdown and JSON fields require Monaco, which are *notoriously* slow in Storybook due
+ // to the lack of a webworker. Until we can resolve it, filter out those fields.
+ const definitions = getFieldDefinitions(settings, {
+ isCustom: () => {
+ return false;
+ },
+ isOverridden: () => {
+ return false;
+ },
+ }).filter((field) => field.type !== 'json' && field.type !== 'markdown');
+
+ const categorizedFields = categorizeFields(definitions);
+
+ if (isFiltered) {
+ Object.keys(categorizedFields).forEach((category) => {
+ categorizedFields[category].fields = categorizedFields[category].fields.slice(0, 1);
+ });
+ }
+
+ const onClearQuery = () => updateArgs({ isFiltered: false });
+
+ const [unsavedChanges, setUnsavedChanges] = React.useState({});
+
+ const onFieldChange: OnFieldChangeFn = (id, change) => {
+ action('onFieldChange')(id, change);
+
+ if (!change) {
+ const { [id]: unsavedChange, ...rest } = unsavedChanges;
+ setUnsavedChanges(rest);
+ return;
+ }
+
+ setUnsavedChanges((changes) => ({ ...changes, [id]: change }));
+ };
+
+ return { onClearQuery, onFieldChange, isSavingEnabled, unsavedChanges, categorizedFields };
+};
diff --git a/packages/kbn-management/settings/components/field_category/categories.tsx b/packages/kbn-management/settings/components/field_category/categories.tsx
new file mode 100644
index 0000000000000..c732c29c4e4a2
--- /dev/null
+++ b/packages/kbn-management/settings/components/field_category/categories.tsx
@@ -0,0 +1,54 @@
+/*
+ * Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one
+ * or more contributor license agreements. Licensed under the Elastic License
+ * 2.0 and the Server Side Public License, v 1; you may not use this file except
+ * in compliance with, at your election, the Elastic License 2.0 or the Server
+ * Side Public License, v 1.
+ */
+
+import React from 'react';
+
+import { CategorizedFields, UnsavedFieldChanges } from '@kbn/management-settings-types';
+
+import { FieldRow, FieldRowProps } from '@kbn/management-settings-components-field-row';
+import { FieldCategory, type FieldCategoryProps } from './category';
+
+/**
+ * Props for the {@link FieldCategories} component.
+ */
+export interface FieldCategoriesProps
+ extends Pick,
+ Pick {
+ /** Categorized fields for display. */
+ categorizedFields: CategorizedFields;
+ /** And unsaved changes currently managed by the parent component. */
+ unsavedChanges?: UnsavedFieldChanges;
+}
+
+/**
+ * Convenience component for displaying a set of {@link FieldCategory} components, given
+ * a set of categorized fields.
+ *
+ * @param {FieldCategoriesProps} props props to pass to the {@link FieldCategories} component.
+ */
+export const FieldCategories = ({
+ categorizedFields,
+ unsavedChanges = {},
+ onClearQuery,
+ isSavingEnabled,
+ onFieldChange,
+}: FieldCategoriesProps) => (
+ <>
+ {Object.entries(categorizedFields).map(([category, { count, fields }]) => (
+
+ {fields.map((field) => (
+
+ ))}
+
+ ))}
+ >
+);
diff --git a/packages/kbn-management/settings/components/field_category/category.tsx b/packages/kbn-management/settings/components/field_category/category.tsx
new file mode 100644
index 0000000000000..47465c2ab0288
--- /dev/null
+++ b/packages/kbn-management/settings/components/field_category/category.tsx
@@ -0,0 +1,67 @@
+/*
+ * Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one
+ * or more contributor license agreements. Licensed under the Elastic License
+ * 2.0 and the Server Side Public License, v 1; you may not use this file except
+ * in compliance with, at your election, the Elastic License 2.0 or the Server
+ * Side Public License, v 1.
+ */
+
+import React, { ReactElement, Children } from 'react';
+
+import { EuiFlexGroup, EuiFlexItem, EuiSplitPanel, EuiTitle, useEuiTheme } from '@elastic/eui';
+
+import { getCategoryName } from '@kbn/management-settings-utilities';
+import type { FieldRowProps } from '@kbn/management-settings-components-field-row';
+import { css } from '@emotion/react';
+import { ClearQueryLink, ClearQueryLinkProps } from './clear_query_link';
+
+/**
+ * Props for a {@link FieldCategory} component.
+ */
+export interface FieldCategoryProps
+ extends Pick {
+ /** The name of the category. */
+ category: string;
+ /** Children-- should be {@link FieldRow} components. */
+ children:
+ | ReactElement
+ | Array>;
+}
+
+/**
+ * Component for displaying a container of fields pertaining to a single
+ * category.
+ * @param props - the props to pass to the {@link FieldCategory} component.
+ */
+export const FieldCategory = (props: FieldCategoryProps) => {
+ const { category, fieldCount, onClearQuery, children } = props;
+ const {
+ euiTheme: { size },
+ } = useEuiTheme();
+
+ const displayCount = Children.count(children);
+
+ const panelCSS = css`
+ & + & {
+ margin-top: ${size.l};
+ }
+ `;
+
+ return (
+
+
+
+
+
+ {getCategoryName(category)}
+
+
+
+
+
+
+
+ {children}
+
+ );
+};
diff --git a/packages/kbn-management/settings/components/field_category/clear_query_link.tsx b/packages/kbn-management/settings/components/field_category/clear_query_link.tsx
new file mode 100644
index 0000000000000..c54b2c9ad52dc
--- /dev/null
+++ b/packages/kbn-management/settings/components/field_category/clear_query_link.tsx
@@ -0,0 +1,59 @@
+/*
+ * Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one
+ * or more contributor license agreements. Licensed under the Elastic License
+ * 2.0 and the Server Side Public License, v 1; you may not use this file except
+ * in compliance with, at your election, the Elastic License 2.0 or the Server
+ * Side Public License, v 1.
+ */
+import React from 'react';
+import { css } from '@emotion/react';
+
+import { EuiLink, EuiText } from '@elastic/eui';
+import { FormattedMessage } from '@kbn/i18n-react';
+
+/**
+ * Props for the {@link ClearQueryLink} component.
+ */
+export interface ClearQueryLinkProps {
+ /** The total number of fields in the category. */
+ fieldCount: number;
+ /** The number of fields currently being displayed. */
+ displayCount: number;
+ /** Handler to invoke when clearing the current filtering query. */
+ onClearQuery: () => void;
+}
+
+/**
+ * Component for displaying a link to clear the current filtering query.
+ */
+export const ClearQueryLink = ({ fieldCount, displayCount, onClearQuery }: ClearQueryLinkProps) => {
+ if (fieldCount === displayCount) {
+ return null;
+ }
+
+ const linkCSS = css`
+ font-style: italic;
+ `;
+
+ return (
+
+
+
+
+
+
+ ),
+ }}
+ />
+
+ );
+};
diff --git a/packages/kbn-management/settings/components/field_category/index.ts b/packages/kbn-management/settings/components/field_category/index.ts
new file mode 100644
index 0000000000000..38e0e914bfa89
--- /dev/null
+++ b/packages/kbn-management/settings/components/field_category/index.ts
@@ -0,0 +1,17 @@
+/*
+ * Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one
+ * or more contributor license agreements. Licensed under the Elastic License
+ * 2.0 and the Server Side Public License, v 1; you may not use this file except
+ * in compliance with, at your election, the Elastic License 2.0 or the Server
+ * Side Public License, v 1.
+ */
+
+export { FieldCategories, type FieldCategoriesProps } from './categories';
+export { FieldCategory, type FieldCategoryProps } from './category';
+export type { ClearQueryLinkProps } from './clear_query_link';
+export type { FieldCategoryKibanaDependencies, FieldCategoryServices } from './types';
+export {
+ FieldCategoryKibanaProvider,
+ FieldCategoryProvider,
+ type FieldCategoryProviderProps,
+} from './services';
diff --git a/packages/kbn-management/settings/components/field_category/jest.config.js b/packages/kbn-management/settings/components/field_category/jest.config.js
new file mode 100644
index 0000000000000..6569a209f7277
--- /dev/null
+++ b/packages/kbn-management/settings/components/field_category/jest.config.js
@@ -0,0 +1,13 @@
+/*
+ * Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one
+ * or more contributor license agreements. Licensed under the Elastic License
+ * 2.0 and the Server Side Public License, v 1; you may not use this file except
+ * in compliance with, at your election, the Elastic License 2.0 or the Server
+ * Side Public License, v 1.
+ */
+
+module.exports = {
+ preset: '@kbn/test',
+ rootDir: '../../../../..',
+ roots: ['/packages/kbn-management/settings/components/field_category'],
+};
diff --git a/packages/kbn-management/settings/components/field_category/kibana.jsonc b/packages/kbn-management/settings/components/field_category/kibana.jsonc
new file mode 100644
index 0000000000000..ac8859b05df4b
--- /dev/null
+++ b/packages/kbn-management/settings/components/field_category/kibana.jsonc
@@ -0,0 +1,5 @@
+{
+ "type": "shared-common",
+ "id": "@kbn/management-settings-components-field-category",
+ "owner": "@elastic/platform-deployment-management"
+}
diff --git a/packages/kbn-management/settings/components/field_category/package.json b/packages/kbn-management/settings/components/field_category/package.json
new file mode 100644
index 0000000000000..d8b9345da3086
--- /dev/null
+++ b/packages/kbn-management/settings/components/field_category/package.json
@@ -0,0 +1,6 @@
+{
+ "name": "@kbn/management-settings-components-field-category",
+ "private": true,
+ "version": "1.0.0",
+ "license": "SSPL-1.0 OR Elastic License 2.0"
+}
\ No newline at end of file
diff --git a/packages/kbn-management/settings/components/field_category/services.tsx b/packages/kbn-management/settings/components/field_category/services.tsx
new file mode 100644
index 0000000000000..2ff805196ec02
--- /dev/null
+++ b/packages/kbn-management/settings/components/field_category/services.tsx
@@ -0,0 +1,33 @@
+/*
+ * Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one
+ * or more contributor license agreements. Licensed under the Elastic License
+ * 2.0 and the Server Side Public License, v 1; you may not use this file except
+ * in compliance with, at your election, the Elastic License 2.0 or the Server
+ * Side Public License, v 1.
+ */
+
+import React from 'react';
+
+import {
+ FieldRowProvider,
+ FieldRowKibanaProvider,
+} from '@kbn/management-settings-components-field-row';
+
+import type { FieldCategoryServices } from './types';
+
+/**
+ * Props for {@link FieldCategoryProvider}.
+ */
+export interface FieldCategoryProviderProps extends FieldCategoryServices {
+ children: React.ReactNode;
+}
+
+/**
+ * React Provider that provides services to a {@link FieldCategory} component and its dependents.
+ */
+export const FieldCategoryProvider = FieldRowProvider;
+
+/**
+ * Kibana-specific Provider that maps Kibana plugins and services to a {@link FieldCategoryProvider}.
+ */
+export const FieldCategoryKibanaProvider = FieldRowKibanaProvider;
diff --git a/packages/kbn-management/settings/components/field_category/tsconfig.json b/packages/kbn-management/settings/components/field_category/tsconfig.json
new file mode 100644
index 0000000000000..8b4e9b1566b31
--- /dev/null
+++ b/packages/kbn-management/settings/components/field_category/tsconfig.json
@@ -0,0 +1,25 @@
+{
+ "extends": "../../../../../tsconfig.base.json",
+ "compilerOptions": {
+ "outDir": "target/types",
+ "types": [
+ "jest",
+ "node",
+ "react"
+ ]
+ },
+ "include": [
+ "**/*.ts",
+ "**/*.tsx",
+ ],
+ "exclude": [
+ "target/**/*"
+ ],
+ "kbn_references": [
+ "@kbn/management-settings-utilities",
+ "@kbn/management-settings-field-definition",
+ "@kbn/management-settings-components-field-row",
+ "@kbn/management-settings-types",
+ "@kbn/i18n-react",
+ ]
+}
diff --git a/packages/kbn-management/settings/components/field_category/types.ts b/packages/kbn-management/settings/components/field_category/types.ts
new file mode 100644
index 0000000000000..3f726f18300b9
--- /dev/null
+++ b/packages/kbn-management/settings/components/field_category/types.ts
@@ -0,0 +1,23 @@
+/*
+ * Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one
+ * or more contributor license agreements. Licensed under the Elastic License
+ * 2.0 and the Server Side Public License, v 1; you may not use this file except
+ * in compliance with, at your election, the Elastic License 2.0 or the Server
+ * Side Public License, v 1.
+ */
+
+import type {
+ FieldRowServices,
+ FieldRowKibanaDependencies,
+} from '@kbn/management-settings-components-field-row';
+
+/**
+ * Contextual services used by a {@link FieldCategory} component and its dependents.
+ */
+export type FieldCategoryServices = FieldRowServices;
+
+/**
+ * An interface containing a collection of Kibana plugins and services required to
+ * render a {@link FieldCategory} component and its dependents.
+ */
+export type FieldCategoryKibanaDependencies = FieldRowKibanaDependencies;
diff --git a/packages/kbn-management/settings/components/field_input/__stories__/common.tsx b/packages/kbn-management/settings/components/field_input/__stories__/common.tsx
index 399a125822a35..39daed80f40b8 100644
--- a/packages/kbn-management/settings/components/field_input/__stories__/common.tsx
+++ b/packages/kbn-management/settings/components/field_input/__stories__/common.tsx
@@ -13,7 +13,7 @@ import { action } from '@storybook/addon-actions';
import { EuiPanel } from '@elastic/eui';
import { UiSettingsType } from '@kbn/core-ui-settings-common';
import {
- OnChangeFn,
+ OnInputChangeFn,
SettingType,
UiSettingMetadata,
UnsavedFieldChange,
@@ -108,17 +108,17 @@ export const getInputStory = (type: SettingType, params: Params = {}) => {
setting,
});
- const onChange: OnChangeFn = (newChange) => {
+ const onInputChange: OnInputChangeFn = (newChange) => {
setUnsavedChange(newChange);
- action('onChange')({
+ action('onInputChange')({
type,
unsavedValue: newChange?.unsavedValue,
savedValue: field.savedValue,
});
};
- return ;
+ return ;
};
Story.argTypes = {
diff --git a/packages/kbn-management/settings/components/field_input/field_input.test.tsx b/packages/kbn-management/settings/components/field_input/field_input.test.tsx
index 0305636fd35e6..a946f259cab96 100644
--- a/packages/kbn-management/settings/components/field_input/field_input.test.tsx
+++ b/packages/kbn-management/settings/components/field_input/field_input.test.tsx
@@ -55,7 +55,7 @@ describe('FieldInput', () => {
},
options,
} as FieldDefinition,
- onChange: jest.fn(),
+ onInputChange: jest.fn(),
isSavingEnabled: true,
};
@@ -132,7 +132,7 @@ describe('FieldInput', () => {
const { getByTestId } = render(wrap());
const input = getByTestId(`${TEST_SUBJ_PREFIX_FIELD}-${name}`);
fireEvent.change(input, { target: { value: 'new value' } });
- expect(props.onChange).toHaveBeenCalledWith({ type: 'string', unsavedValue: 'new value' });
+ expect(props.onInputChange).toHaveBeenCalledWith({ type: 'string', unsavedValue: 'new value' });
});
it('disables the input when isDisabled prop is true', () => {
@@ -191,7 +191,7 @@ describe('FieldInput', () => {
...defaultProps.field,
type: 'foobar',
},
- } as unknown as FieldInputProps;
+ } as unknown as FieldInputProps;
expect(() => render(wrap())).toThrowError(
'Unknown or incompatible field type: foobar'
diff --git a/packages/kbn-management/settings/components/field_input/field_input.tsx b/packages/kbn-management/settings/components/field_input/field_input.tsx
index ae9e3c5c6c536..a5b3fdb4aac55 100644
--- a/packages/kbn-management/settings/components/field_input/field_input.tsx
+++ b/packages/kbn-management/settings/components/field_input/field_input.tsx
@@ -10,7 +10,7 @@ import React, { useImperativeHandle, useRef } from 'react';
import type {
FieldDefinition,
- OnChangeFn,
+ OnInputChangeFn,
ResetInputRef,
SettingType,
UnsavedFieldChange,
@@ -56,13 +56,13 @@ import {
/**
* The props that are passed to the {@link FieldInput} component.
*/
-export interface FieldInputProps {
+export interface FieldInputProps {
/** The {@link FieldDefinition} for the component. */
field: Pick, 'type' | 'id' | 'name' | 'ariaAttributes'>;
/** An {@link UnsavedFieldChange} for the component, if any. */
unsavedChange?: UnsavedFieldChange;
- /** The `onChange` handler for the input. */
- onChange: OnChangeFn;
+ /** The `onInputChange` handler for the input. */
+ onInputChange: OnInputChangeFn;
/** True if the input can be saved, false otherwise. */
isSavingEnabled: boolean;
/** True if the value within the input is invalid, false otherwise. */
@@ -81,140 +81,136 @@ const getMismatchError = (type: SettingType, unsavedType?: SettingType) =>
*
* @param props The props for the {@link FieldInput} component.
*/
-export const FieldInput = React.forwardRef>(
- (props, ref) => {
- const { field, unsavedChange, onChange, isSavingEnabled } = props;
-
- // Create a ref for those input fields that require an imperative handle.
- const inputRef = useRef(null);
-
- // Create an imperative handle that passes the invocation to any internal input that
- // may require it.
- useImperativeHandle(ref, () => ({
- reset: () => {
- if (inputRef.current) {
- inputRef.current.reset();
- }
- },
- }));
-
- const inputProps = { isSavingEnabled, onChange };
-
- // These checks might seem excessive or redundant, but they are necessary to ensure that
- // the types are honored correctly using type guards. These checks get compiled down to
- // checks against the `type` property-- which we were doing in the previous code, albeit
- // in an unenforceable way.
- //
- // Based on the success of a check, we can render the `FieldInput` in a indempotent and
- // type-safe way.
- //
- if (isArrayFieldDefinition(field)) {
- // If the composing component mistakenly provides an incompatible `UnsavedFieldChange`,
- // we can throw an `Error`. We might consider switching to a `console.error` and not
- // rendering the input, but that might be less helpful.
- if (!isArrayFieldUnsavedChange(unsavedChange)) {
- throw getMismatchError(field.type, unsavedChange?.type);
+export const FieldInput = React.forwardRef((props, ref) => {
+ const { field, unsavedChange, onInputChange, isSavingEnabled } = props;
+
+ // Create a ref for those input fields that require an imperative handle.
+ const inputRef = useRef(null);
+
+ // Create an imperative handle that passes the invocation to any internal input that
+ // may require it.
+ useImperativeHandle(ref, () => ({
+ reset: () => {
+ if (inputRef.current) {
+ inputRef.current.reset();
}
-
- return ;
+ },
+ }));
+
+ const inputProps = { isSavingEnabled, onInputChange };
+
+ // These checks might seem excessive or redundant, but they are necessary to ensure that
+ // the types are honored correctly using type guards. These checks get compiled down to
+ // checks against the `type` property-- which we were doing in the previous code, albeit
+ // in an unenforceable way.
+ //
+ // Based on the success of a check, we can render the `FieldInput` in a indempotent and
+ // type-safe way.
+ //
+ if (isArrayFieldDefinition(field)) {
+ // If the composing component mistakenly provides an incompatible `UnsavedFieldChange`,
+ // we can throw an `Error`. We might consider switching to a `console.error` and not
+ // rendering the input, but that might be less helpful.
+ if (!isArrayFieldUnsavedChange(unsavedChange)) {
+ throw getMismatchError(field.type, unsavedChange?.type);
}
- if (isBooleanFieldDefinition(field)) {
- if (!isBooleanFieldUnsavedChange(unsavedChange)) {
- throw getMismatchError(field.type, unsavedChange?.type);
- }
+ return ;
+ }
- return ;
+ if (isBooleanFieldDefinition(field)) {
+ if (!isBooleanFieldUnsavedChange(unsavedChange)) {
+ throw getMismatchError(field.type, unsavedChange?.type);
}
- if (isColorFieldDefinition(field)) {
- if (!isColorFieldUnsavedChange(unsavedChange)) {
- throw getMismatchError(field.type, unsavedChange?.type);
- }
+ return ;
+ }
- return ;
+ if (isColorFieldDefinition(field)) {
+ if (!isColorFieldUnsavedChange(unsavedChange)) {
+ throw getMismatchError(field.type, unsavedChange?.type);
}
- if (isImageFieldDefinition(field)) {
- if (!isImageFieldUnsavedChange(unsavedChange)) {
- throw getMismatchError(field.type, unsavedChange?.type);
- }
+ return ;
+ }
- return ;
+ if (isImageFieldDefinition(field)) {
+ if (!isImageFieldUnsavedChange(unsavedChange)) {
+ throw getMismatchError(field.type, unsavedChange?.type);
}
- if (isJsonFieldDefinition(field)) {
- if (!isJsonFieldUnsavedChange(unsavedChange)) {
- throw getMismatchError(field.type, unsavedChange?.type);
- }
+ return ;
+ }
- return (
-
- );
+ if (isJsonFieldDefinition(field)) {
+ if (!isJsonFieldUnsavedChange(unsavedChange)) {
+ throw getMismatchError(field.type, unsavedChange?.type);
}
- if (isMarkdownFieldDefinition(field)) {
- if (!isMarkdownFieldUnsavedChange(unsavedChange)) {
- throw getMismatchError(field.type, unsavedChange?.type);
- }
+ return (
+
+ );
+ }
- return (
-
- );
+ if (isMarkdownFieldDefinition(field)) {
+ if (!isMarkdownFieldUnsavedChange(unsavedChange)) {
+ throw getMismatchError(field.type, unsavedChange?.type);
}
- if (isNumberFieldDefinition(field)) {
- if (!isNumberFieldUnsavedChange(unsavedChange)) {
- throw getMismatchError(field.type, unsavedChange?.type);
- }
+ return (
+
+ );
+ }
- return ;
+ if (isNumberFieldDefinition(field)) {
+ if (!isNumberFieldUnsavedChange(unsavedChange)) {
+ throw getMismatchError(field.type, unsavedChange?.type);
}
- if (isSelectFieldDefinition(field)) {
- if (!isSelectFieldUnsavedChange(unsavedChange)) {
- throw getMismatchError(field.type, unsavedChange?.type);
- }
-
- const {
- options: { values: optionValues, labels: optionLabels },
- } = field;
+ return ;
+ }
- return (
-
- );
+ if (isSelectFieldDefinition(field)) {
+ if (!isSelectFieldUnsavedChange(unsavedChange)) {
+ throw getMismatchError(field.type, unsavedChange?.type);
}
- if (isStringFieldDefinition(field)) {
- if (!isStringFieldUnsavedChange(unsavedChange)) {
- throw getMismatchError(field.type, unsavedChange?.type);
- }
+ const {
+ options: { values: optionValues, labels: optionLabels },
+ } = field;
- return ;
+ return ;
+ }
+
+ if (isStringFieldDefinition(field)) {
+ if (!isStringFieldUnsavedChange(unsavedChange)) {
+ throw getMismatchError(field.type, unsavedChange?.type);
}
- if (isUndefinedFieldDefinition(field)) {
- if (!isUndefinedFieldUnsavedChange(unsavedChange)) {
- throw getMismatchError(field.type, unsavedChange?.type);
- }
+ return ;
+ }
- return (
- }
- unsavedChange={unsavedChange as unknown as UnsavedFieldChange<'string'>}
- {...inputProps}
- />
- );
+ if (isUndefinedFieldDefinition(field)) {
+ if (!isUndefinedFieldUnsavedChange(unsavedChange)) {
+ throw getMismatchError(field.type, unsavedChange?.type);
}
- throw new Error(`Unknown or incompatible field type: ${field.type}`);
+ return (
+ }
+ unsavedChange={unsavedChange as unknown as UnsavedFieldChange<'string'>}
+ {...inputProps}
+ />
+ );
}
-);
+
+ throw new Error(`Unknown or incompatible field type: ${field.type}`);
+});
diff --git a/packages/kbn-management/settings/components/field_input/input/array_input.test.tsx b/packages/kbn-management/settings/components/field_input/input/array_input.test.tsx
index 6f80de3039b70..c954035e9c639 100644
--- a/packages/kbn-management/settings/components/field_input/input/array_input.test.tsx
+++ b/packages/kbn-management/settings/components/field_input/input/array_input.test.tsx
@@ -18,9 +18,9 @@ const name = 'Some array field';
const id = 'some:array:field';
describe('ArrayInput', () => {
- const onChange = jest.fn();
+ const onInputChange = jest.fn();
const defaultProps: InputProps<'array'> = {
- onChange,
+ onInputChange,
field: {
name,
type: 'array',
@@ -35,7 +35,7 @@ describe('ArrayInput', () => {
};
beforeEach(() => {
- onChange.mockClear();
+ onInputChange.mockClear();
});
it('renders without errors', () => {
@@ -70,7 +70,7 @@ describe('ArrayInput', () => {
expect(input).toHaveValue('foo, bar, baz');
});
- it('only calls onChange when blurred ', () => {
+ it('only calls onInputChange when blurred ', () => {
render(wrap());
const input = screen.getByTestId(`${TEST_SUBJ_PREFIX_FIELD}-${id}`);
@@ -78,13 +78,13 @@ describe('ArrayInput', () => {
userEvent.type(input, ',baz');
expect(input).toHaveValue('foo, bar,baz');
- expect(defaultProps.onChange).not.toHaveBeenCalled();
+ expect(defaultProps.onInputChange).not.toHaveBeenCalled();
act(() => {
input.blur();
});
- expect(defaultProps.onChange).toHaveBeenCalledWith({
+ expect(defaultProps.onInputChange).toHaveBeenCalledWith({
type: 'array',
unsavedValue: ['foo', 'bar', 'baz'],
});
diff --git a/packages/kbn-management/settings/components/field_input/input/array_input.tsx b/packages/kbn-management/settings/components/field_input/input/array_input.tsx
index dfc92dc980bbd..f2ce42051eb04 100644
--- a/packages/kbn-management/settings/components/field_input/input/array_input.tsx
+++ b/packages/kbn-management/settings/components/field_input/input/array_input.tsx
@@ -29,7 +29,7 @@ export const ArrayInput = ({
field,
unsavedChange,
isSavingEnabled,
- onChange: onChangeProp,
+ onInputChange,
}: ArrayInputProps) => {
const [inputValue] = getFieldInputValue(field, unsavedChange) || [];
const [value, setValue] = useState(inputValue?.join(', '));
@@ -39,7 +39,7 @@ export const ArrayInput = ({
setValue(newValue);
};
- const onUpdate = useUpdate({ onChange: onChangeProp, field });
+ const onUpdate = useUpdate({ onInputChange, field });
useEffect(() => {
setValue(inputValue?.join(', '));
diff --git a/packages/kbn-management/settings/components/field_input/input/boolean_input.test.tsx b/packages/kbn-management/settings/components/field_input/input/boolean_input.test.tsx
index b9f3ac883421b..49bc4e9367a65 100644
--- a/packages/kbn-management/settings/components/field_input/input/boolean_input.test.tsx
+++ b/packages/kbn-management/settings/components/field_input/input/boolean_input.test.tsx
@@ -19,9 +19,9 @@ const name = 'Some boolean field';
const id = 'some:boolean:field';
describe('BooleanInput', () => {
- const onChange = jest.fn();
+ const onInputChange = jest.fn();
const defaultProps: InputProps<'boolean'> = {
- onChange,
+ onInputChange,
field: {
name,
type: 'boolean',
@@ -36,7 +36,7 @@ describe('BooleanInput', () => {
};
beforeEach(() => {
- onChange.mockClear();
+ onInputChange.mockClear();
});
it('renders false', () => {
@@ -60,16 +60,16 @@ describe('BooleanInput', () => {
expect(screen.getByTestId(`${TEST_SUBJ_PREFIX_FIELD}-${id}`)).toBeChecked();
});
- it('calls onChange when toggled', () => {
+ it('calls onInputChange when toggled', () => {
render(wrap());
const input = screen.getByTestId(`${TEST_SUBJ_PREFIX_FIELD}-${id}`);
- expect(defaultProps.onChange).not.toHaveBeenCalled();
+ expect(defaultProps.onInputChange).not.toHaveBeenCalled();
act(() => {
fireEvent.click(input);
});
- expect(defaultProps.onChange).toBeCalledWith({ type: 'boolean', unsavedValue: true });
+ expect(defaultProps.onInputChange).toBeCalledWith({ type: 'boolean', unsavedValue: true });
act(() => {
fireEvent.click(input);
diff --git a/packages/kbn-management/settings/components/field_input/input/boolean_input.tsx b/packages/kbn-management/settings/components/field_input/input/boolean_input.tsx
index 4f523da8067eb..782bff10a1ee3 100644
--- a/packages/kbn-management/settings/components/field_input/input/boolean_input.tsx
+++ b/packages/kbn-management/settings/components/field_input/input/boolean_input.tsx
@@ -28,15 +28,15 @@ export const BooleanInput = ({
field,
unsavedChange,
isSavingEnabled,
- onChange: onChangeProp,
+ onInputChange,
}: BooleanInputProps) => {
+ const onUpdate = useUpdate({ onInputChange, field });
+
const onChange: EuiSwitchProps['onChange'] = (event) => {
const inputValue = event.target.checked;
onUpdate({ type: field.type, unsavedValue: inputValue });
};
- const onUpdate = useUpdate({ onChange: onChangeProp, field });
-
const { id, name, ariaAttributes } = field;
const { ariaLabel, ariaDescribedBy } = ariaAttributes;
const [value] = getFieldInputValue(field, unsavedChange);
diff --git a/packages/kbn-management/settings/components/field_input/input/code_editor_input.tsx b/packages/kbn-management/settings/components/field_input/input/code_editor_input.tsx
index dc6c1e15043aa..5b9d90154d087 100644
--- a/packages/kbn-management/settings/components/field_input/input/code_editor_input.tsx
+++ b/packages/kbn-management/settings/components/field_input/input/code_editor_input.tsx
@@ -43,9 +43,9 @@ export const CodeEditorInput = ({
type,
isSavingEnabled,
defaultValue,
- onChange: onChangeProp,
+ onInputChange,
}: CodeEditorInputProps) => {
- const onUpdate = useUpdate({ onChange: onChangeProp, field });
+ const onUpdate = useUpdate({ onInputChange, field });
const onChange: CodeEditorProps['onChange'] = (inputValue) => {
let newUnsavedValue;
diff --git a/packages/kbn-management/settings/components/field_input/input/color_picker_input.test.tsx b/packages/kbn-management/settings/components/field_input/input/color_picker_input.test.tsx
index 0bd73ad51645c..4214b4b37bdf1 100644
--- a/packages/kbn-management/settings/components/field_input/input/color_picker_input.test.tsx
+++ b/packages/kbn-management/settings/components/field_input/input/color_picker_input.test.tsx
@@ -15,9 +15,9 @@ const name = 'Some color field';
const id = 'some:color:field';
describe('ColorPickerInput', () => {
- const onChange = jest.fn();
+ const onInputChange = jest.fn();
const defaultProps: ColorPickerInputProps = {
- onChange,
+ onInputChange,
field: {
name,
type: 'color',
@@ -32,7 +32,7 @@ describe('ColorPickerInput', () => {
};
beforeEach(() => {
- onChange.mockClear();
+ onInputChange.mockClear();
});
it('renders without errors', () => {
@@ -42,20 +42,23 @@ describe('ColorPickerInput', () => {
expect(input).toHaveValue('#000000');
});
- it('calls the onChange prop when the value changes', () => {
+ it('calls the onInputChange prop when the value changes', () => {
const { getByRole } = render(wrap());
const input = getByRole('textbox');
const newValue = '#ffffff';
fireEvent.change(input, { target: { value: newValue } });
- expect(defaultProps.onChange).toHaveBeenCalledWith({ type: 'color', unsavedValue: newValue });
+ expect(defaultProps.onInputChange).toHaveBeenCalledWith({
+ type: 'color',
+ unsavedValue: newValue,
+ });
});
- it('calls the onChange prop with an error when the value is malformed', () => {
+ it('calls the onInputChange prop with an error when the value is malformed', () => {
const { getByRole } = render(wrap());
const input = getByRole('textbox');
const newValue = '#1234';
fireEvent.change(input, { target: { value: newValue } });
- expect(defaultProps.onChange).toHaveBeenCalledWith({
+ expect(defaultProps.onInputChange).toHaveBeenCalledWith({
type: 'color',
unsavedValue: newValue,
isInvalid: true,
diff --git a/packages/kbn-management/settings/components/field_input/input/color_picker_input.tsx b/packages/kbn-management/settings/components/field_input/input/color_picker_input.tsx
index 8533fc0545eab..41f41ea0638fc 100644
--- a/packages/kbn-management/settings/components/field_input/input/color_picker_input.tsx
+++ b/packages/kbn-management/settings/components/field_input/input/color_picker_input.tsx
@@ -32,9 +32,9 @@ export const ColorPickerInput = ({
field,
unsavedChange,
isSavingEnabled,
- onChange: onChangeProp,
+ onInputChange,
}: ColorPickerInputProps) => {
- const onUpdate = useUpdate({ onChange: onChangeProp, field });
+ const onUpdate = useUpdate({ onInputChange, field });
const onChange: EuiColorPickerProps['onChange'] = (newColor, { isValid }) => {
const update: UnsavedFieldChange<'color'> = { type: field.type, unsavedValue: newColor };
diff --git a/packages/kbn-management/settings/components/field_input/input/image_input.test.tsx b/packages/kbn-management/settings/components/field_input/input/image_input.test.tsx
index cbbec332330d1..3d0c47d177822 100644
--- a/packages/kbn-management/settings/components/field_input/input/image_input.test.tsx
+++ b/packages/kbn-management/settings/components/field_input/input/image_input.test.tsx
@@ -18,9 +18,9 @@ const name = 'Some image field';
const id = 'some:image:field';
describe('ImageInput', () => {
- const onChange = jest.fn();
+ const onInputChange = jest.fn();
const defaultProps: ImageInputProps = {
- onChange,
+ onInputChange,
field: {
name,
type: 'image',
@@ -35,7 +35,7 @@ describe('ImageInput', () => {
};
beforeEach(() => {
- onChange.mockClear();
+ onInputChange.mockClear();
});
it('renders without errors', () => {
@@ -43,7 +43,7 @@ describe('ImageInput', () => {
expect(container).toBeInTheDocument();
});
- it('calls the onChange prop when a file is selected', async () => {
+ it('calls the onInputChange prop when a file is selected', async () => {
const { getByTestId } = render(wrap());
const input = getByTestId(`${TEST_SUBJ_PREFIX_FIELD}-${id}`) as HTMLInputElement;
const file = new File(['(⌐□_□)'], 'test.png', { type: 'image/png' });
@@ -55,7 +55,7 @@ describe('ImageInput', () => {
expect(input.files?.length).toBe(1);
// This doesn't work for some reason.
- // expect(defaultProps.onChange).toHaveBeenCalledWith({ value: file });
+ // expect(defaultProps.onInputChange).toHaveBeenCalledWith({ value: file });
});
it('disables the input when isDisabled prop is true', () => {
diff --git a/packages/kbn-management/settings/components/field_input/input/image_input.tsx b/packages/kbn-management/settings/components/field_input/input/image_input.tsx
index 286cba2c49d4c..9bcacf620c1fe 100644
--- a/packages/kbn-management/settings/components/field_input/input/image_input.tsx
+++ b/packages/kbn-management/settings/components/field_input/input/image_input.tsx
@@ -44,7 +44,7 @@ const errorMessage = i18n.translate('management.settings.field.imageChangeErrorM
* Component for manipulating an `image` field.
*/
export const ImageInput = React.forwardRef(
- ({ field, unsavedChange, isSavingEnabled, onChange: onChangeProp }, ref) => {
+ ({ field, unsavedChange, isSavingEnabled, onInputChange }, ref) => {
const inputRef = useRef(null);
useImperativeHandle(ref, () => ({
@@ -53,7 +53,7 @@ export const ImageInput = React.forwardRef(
const { showDanger } = useServices();
- const onUpdate = useUpdate({ onChange: onChangeProp, field });
+ const onUpdate = useUpdate({ onInputChange, field });
const onChange: EuiFilePickerProps['onChange'] = async (files: FileList | null) => {
if (files === null || !files.length) {
diff --git a/packages/kbn-management/settings/components/field_input/input/json_editor_input.test.tsx b/packages/kbn-management/settings/components/field_input/input/json_editor_input.test.tsx
index 2cd34de067ffc..800a807f8103a 100644
--- a/packages/kbn-management/settings/components/field_input/input/json_editor_input.test.tsx
+++ b/packages/kbn-management/settings/components/field_input/input/json_editor_input.test.tsx
@@ -33,9 +33,9 @@ jest.mock('../code_editor', () => ({
}));
describe('JsonEditorInput', () => {
- const onChange = jest.fn();
+ const onInputChange = jest.fn();
const defaultProps: CodeEditorInputProps = {
- onChange,
+ onInputChange,
type: 'json',
field: {
name,
@@ -51,7 +51,7 @@ describe('JsonEditorInput', () => {
};
beforeEach(() => {
- onChange.mockClear();
+ onInputChange.mockClear();
});
it('renders without errors', () => {
@@ -65,28 +65,28 @@ describe('JsonEditorInput', () => {
expect(input).toHaveValue(initialValue);
});
- it('calls the onChange prop when the object value changes', () => {
+ it('calls the onInputChange prop when the object value changes', () => {
const { getByTestId } = render();
const input = getByTestId(`${TEST_SUBJ_PREFIX_FIELD}-${id}`);
fireEvent.change(input, { target: { value: '{"bar":"foo"}' } });
- expect(defaultProps.onChange).toHaveBeenCalledWith({
+ expect(defaultProps.onInputChange).toHaveBeenCalledWith({
type: 'json',
unsavedValue: '{"bar":"foo"}',
});
});
- it('calls the onChange prop when the object value changes with no value', () => {
+ it('calls the onInputChange prop when the object value changes with no value', () => {
const { getByTestId } = render();
const input = getByTestId(`${TEST_SUBJ_PREFIX_FIELD}-${id}`);
fireEvent.change(input, { target: { value: '' } });
- expect(defaultProps.onChange).toHaveBeenCalledWith({ type: 'json', unsavedValue: '' });
+ expect(defaultProps.onInputChange).toHaveBeenCalledWith({ type: 'json', unsavedValue: '' });
});
- it('calls the onChange prop with an error when the object value changes to invalid JSON', () => {
+ it('calls the onInputChange prop with an error when the object value changes to invalid JSON', () => {
const { getByTestId } = render();
const input = getByTestId(`${TEST_SUBJ_PREFIX_FIELD}-${id}`);
fireEvent.change(input, { target: { value: '{"bar" "foo"}' } });
- expect(defaultProps.onChange).toHaveBeenCalledWith({
+ expect(defaultProps.onInputChange).toHaveBeenCalledWith({
type: 'json',
unsavedValue: '{"bar" "foo"}',
error: 'Invalid JSON syntax',
@@ -94,20 +94,20 @@ describe('JsonEditorInput', () => {
});
});
- it('calls the onChange prop when the array value changes', () => {
+ it('calls the onInputChange prop when the array value changes', () => {
const props = { ...defaultProps, defaultValue: '["bar", "foo"]', value: undefined };
const { getByTestId } = render();
const input = getByTestId(`${TEST_SUBJ_PREFIX_FIELD}-${id}`);
fireEvent.change(input, { target: { value: '["foo", "bar", "baz"]' } });
waitFor(() =>
- expect(defaultProps.onChange).toHaveBeenCalledWith({
+ expect(defaultProps.onInputChange).toHaveBeenCalledWith({
type: 'json',
unsavedValue: '["foo", "bar", "baz"]',
})
);
});
- it('calls the onChange prop when the array value changes with no value', () => {
+ it('calls the onInputChange prop when the array value changes with no value', () => {
const props = {
...defaultProps,
defaultValue: '["bar", "foo"]',
@@ -116,15 +116,15 @@ describe('JsonEditorInput', () => {
const { getByTestId } = render();
const input = getByTestId(`${TEST_SUBJ_PREFIX_FIELD}-${id}`);
fireEvent.change(input, { target: { value: '' } });
- expect(defaultProps.onChange).toHaveBeenCalledWith({ type: 'json', unsavedValue: '' });
+ expect(defaultProps.onInputChange).toHaveBeenCalledWith({ type: 'json', unsavedValue: '' });
});
- it('calls the onChange prop with an array when the array value changes to invalid JSON', () => {
+ it('calls the onInputChange prop with an array when the array value changes to invalid JSON', () => {
const props = { ...defaultProps, defaultValue: '["bar", "foo"]', value: undefined };
const { getByTestId } = render();
const input = getByTestId(`${TEST_SUBJ_PREFIX_FIELD}-${id}`);
fireEvent.change(input, { target: { value: '["bar", "foo" | "baz"]' } });
- expect(defaultProps.onChange).toHaveBeenCalledWith({
+ expect(defaultProps.onInputChange).toHaveBeenCalledWith({
type: 'json',
unsavedValue: '["bar", "foo" | "baz"]',
error: 'Invalid JSON syntax',
diff --git a/packages/kbn-management/settings/components/field_input/input/markdown_editor_input.test.tsx b/packages/kbn-management/settings/components/field_input/input/markdown_editor_input.test.tsx
index dd15b250cf1e0..291585e5f149a 100644
--- a/packages/kbn-management/settings/components/field_input/input/markdown_editor_input.test.tsx
+++ b/packages/kbn-management/settings/components/field_input/input/markdown_editor_input.test.tsx
@@ -33,9 +33,9 @@ jest.mock('../code_editor', () => ({
}));
describe('MarkdownEditorInput', () => {
- const onChange = jest.fn();
+ const onInputChange = jest.fn();
const defaultProps: CodeEditorInputProps = {
- onChange,
+ onInputChange,
type: 'markdown',
field: {
name,
@@ -51,7 +51,7 @@ describe('MarkdownEditorInput', () => {
};
beforeEach(() => {
- onChange.mockClear();
+ onInputChange.mockClear();
});
it('renders without errors', () => {
@@ -65,11 +65,11 @@ describe('MarkdownEditorInput', () => {
expect(input).toHaveValue(initialValue);
});
- it('calls the onChange prop when the value changes', () => {
+ it('calls the onInputChange prop when the value changes', () => {
const { getByTestId } = render();
const input = getByTestId(`${TEST_SUBJ_PREFIX_FIELD}-${id}`);
fireEvent.change(input, { target: { value: '# New Markdown Title' } });
- expect(defaultProps.onChange).toHaveBeenCalledWith({
+ expect(defaultProps.onInputChange).toHaveBeenCalledWith({
type: 'markdown',
unsavedValue: '# New Markdown Title',
});
diff --git a/packages/kbn-management/settings/components/field_input/input/number_input.test.tsx b/packages/kbn-management/settings/components/field_input/input/number_input.test.tsx
index 3fd6518102a46..fa228a48b721e 100644
--- a/packages/kbn-management/settings/components/field_input/input/number_input.test.tsx
+++ b/packages/kbn-management/settings/components/field_input/input/number_input.test.tsx
@@ -16,9 +16,9 @@ const name = 'Some number field';
const id = 'some:number:field';
describe('NumberInput', () => {
- const onChange = jest.fn();
+ const onInputChange = jest.fn();
const defaultProps: NumberInputProps = {
- onChange,
+ onInputChange,
field: {
name,
type: 'number',
@@ -33,7 +33,7 @@ describe('NumberInput', () => {
};
beforeEach(() => {
- onChange.mockClear();
+ onInputChange.mockClear();
});
it('renders without errors', () => {
@@ -65,11 +65,14 @@ describe('NumberInput', () => {
expect(input).toHaveValue(4321);
});
- it('calls the onChange prop when the value changes', () => {
+ it('calls the onInputChange prop when the value changes', () => {
const { getByTestId } = render(wrap());
const input = getByTestId(`${TEST_SUBJ_PREFIX_FIELD}-${id}`);
fireEvent.change(input, { target: { value: '54321' } });
- expect(defaultProps.onChange).toHaveBeenCalledWith({ type: 'number', unsavedValue: 54321 });
+ expect(defaultProps.onInputChange).toHaveBeenCalledWith({
+ type: 'number',
+ unsavedValue: 54321,
+ });
});
it('disables the input when isDisabled prop is true', () => {
diff --git a/packages/kbn-management/settings/components/field_input/input/number_input.tsx b/packages/kbn-management/settings/components/field_input/input/number_input.tsx
index f67e27be505e2..a1929593e3cb5 100644
--- a/packages/kbn-management/settings/components/field_input/input/number_input.tsx
+++ b/packages/kbn-management/settings/components/field_input/input/number_input.tsx
@@ -26,14 +26,14 @@ export const NumberInput = ({
field,
unsavedChange,
isSavingEnabled,
- onChange: onChangeProp,
+ onInputChange,
}: NumberInputProps) => {
const onChange: EuiFieldNumberProps['onChange'] = (event) => {
const inputValue = Number(event.target.value);
onUpdate({ type: field.type, unsavedValue: inputValue });
};
- const onUpdate = useUpdate({ onChange: onChangeProp, field });
+ const onUpdate = useUpdate({ onInputChange, field });
const { id, name, ariaAttributes } = field;
const { ariaLabel, ariaDescribedBy } = ariaAttributes;
diff --git a/packages/kbn-management/settings/components/field_input/input/select_input.test.tsx b/packages/kbn-management/settings/components/field_input/input/select_input.test.tsx
index ca2e875a65604..e77d2a2cbfe49 100644
--- a/packages/kbn-management/settings/components/field_input/input/select_input.test.tsx
+++ b/packages/kbn-management/settings/components/field_input/input/select_input.test.tsx
@@ -16,9 +16,9 @@ const name = 'Some select field';
const id = 'some:select:field';
describe('SelectInput', () => {
- const onChange = jest.fn();
+ const onInputChange = jest.fn();
const defaultProps: SelectInputProps = {
- onChange,
+ onInputChange,
field: {
name,
type: 'select',
@@ -39,7 +39,7 @@ describe('SelectInput', () => {
};
beforeEach(() => {
- onChange.mockClear();
+ onInputChange.mockClear();
});
it('renders without errors', () => {
@@ -49,11 +49,14 @@ describe('SelectInput', () => {
expect(input).toHaveValue('option2');
});
- it('calls the onChange prop when the value changes', () => {
+ it('calls the onInputChange prop when the value changes', () => {
const { getByTestId } = render(wrap());
const input = getByTestId(`${TEST_SUBJ_PREFIX_FIELD}-${id}`);
fireEvent.change(input, { target: { value: 'option3' } });
- expect(defaultProps.onChange).toHaveBeenCalledWith({ type: 'select', unsavedValue: 'option3' });
+ expect(defaultProps.onInputChange).toHaveBeenCalledWith({
+ type: 'select',
+ unsavedValue: 'option3',
+ });
});
it('disables the input when isDisabled prop is true', () => {
diff --git a/packages/kbn-management/settings/components/field_input/input/select_input.tsx b/packages/kbn-management/settings/components/field_input/input/select_input.tsx
index bd53fb9913ec5..9421d4d3e83b1 100644
--- a/packages/kbn-management/settings/components/field_input/input/select_input.tsx
+++ b/packages/kbn-management/settings/components/field_input/input/select_input.tsx
@@ -30,7 +30,7 @@ export interface SelectInputProps extends InputProps<'select'> {
export const SelectInput = ({
field,
unsavedChange,
- onChange: onChangeProp,
+ onInputChange,
optionLabels = {},
optionValues: optionsProp,
isSavingEnabled,
@@ -53,7 +53,7 @@ export const SelectInput = ({
onUpdate({ type: field.type, unsavedValue: inputValue });
};
- const onUpdate = useUpdate({ onChange: onChangeProp, field });
+ const onUpdate = useUpdate({ onInputChange, field });
const { id, ariaAttributes } = field;
const { ariaLabel, ariaDescribedBy } = ariaAttributes;
diff --git a/packages/kbn-management/settings/components/field_input/input/text_input.test.tsx b/packages/kbn-management/settings/components/field_input/input/text_input.test.tsx
index 9dcdb8a04d5ea..e0d2eb75fca90 100644
--- a/packages/kbn-management/settings/components/field_input/input/text_input.test.tsx
+++ b/packages/kbn-management/settings/components/field_input/input/text_input.test.tsx
@@ -16,9 +16,9 @@ const name = 'Some text field';
const id = 'some:text:field';
describe('TextInput', () => {
- const onChange = jest.fn();
+ const onInputChange = jest.fn();
const defaultProps: TextInputProps = {
- onChange,
+ onInputChange,
field: {
name,
type: 'string',
@@ -33,7 +33,7 @@ describe('TextInput', () => {
};
beforeEach(() => {
- onChange.mockClear();
+ onInputChange.mockClear();
});
it('renders without errors', () => {
@@ -47,11 +47,11 @@ describe('TextInput', () => {
expect(input).toHaveValue('initial value');
});
- it('calls the onChange prop when the value changes', () => {
+ it('calls the onInputChange prop when the value changes', () => {
const { getByTestId } = render();
const input = getByTestId(`${TEST_SUBJ_PREFIX_FIELD}-${id}`);
fireEvent.change(input, { target: { value: 'new value' } });
- expect(defaultProps.onChange).toHaveBeenCalledWith({
+ expect(defaultProps.onInputChange).toHaveBeenCalledWith({
type: 'string',
unsavedValue: 'new value',
});
diff --git a/packages/kbn-management/settings/components/field_input/input/text_input.tsx b/packages/kbn-management/settings/components/field_input/input/text_input.tsx
index f4f9450e9577f..711d7aa808344 100644
--- a/packages/kbn-management/settings/components/field_input/input/text_input.tsx
+++ b/packages/kbn-management/settings/components/field_input/input/text_input.tsx
@@ -26,14 +26,14 @@ export const TextInput = ({
field,
unsavedChange,
isSavingEnabled,
- onChange: onChangeProp,
+ onInputChange,
}: TextInputProps) => {
const onChange: EuiFieldTextProps['onChange'] = (event) => {
const inputValue = event.target.value;
onUpdate({ type: field.type, unsavedValue: inputValue });
};
- const onUpdate = useUpdate({ onChange: onChangeProp, field });
+ const onUpdate = useUpdate({ onInputChange, field });
const { id, name, ariaAttributes } = field;
const { ariaLabel, ariaDescribedBy } = ariaAttributes;
diff --git a/packages/kbn-management/settings/components/field_input/types.ts b/packages/kbn-management/settings/components/field_input/types.ts
index e5d5c11e2f199..fc4d311a3d210 100644
--- a/packages/kbn-management/settings/components/field_input/types.ts
+++ b/packages/kbn-management/settings/components/field_input/types.ts
@@ -8,7 +8,7 @@
import {
FieldDefinition,
- OnChangeFn,
+ OnInputChangeFn,
SettingType,
UnsavedFieldChange,
} from '@kbn/management-settings-types';
@@ -44,6 +44,6 @@ export interface InputProps {
>;
unsavedChange?: UnsavedFieldChange;
isSavingEnabled: boolean;
- /** The `onChange` handler. */
- onChange: OnChangeFn;
+ /** The `onInputChange` handler. */
+ onInputChange: OnInputChangeFn;
}
diff --git a/packages/kbn-management/settings/components/field_row/README.mdx b/packages/kbn-management/settings/components/field_row/README.mdx
index 6fe238938407c..d8febe27dd674 100644
--- a/packages/kbn-management/settings/components/field_row/README.mdx
+++ b/packages/kbn-management/settings/components/field_row/README.mdx
@@ -19,7 +19,7 @@ For reference, this is an example of the current Advanced Settings UI:
## Implementation
-A `FormRow` represents a single UiSetting, and is responsible for rendering the UiSetting's label, description, and equivalent value input. It displays the state of any unsaved change, (e.g. error). It also handles the logic for updating the UiSetting's value in a consuming component through the `onChange` handler.
+A `FormRow` represents a single UiSetting, and is responsible for rendering the UiSetting's label, description, and equivalent value input. It displays the state of any unsaved change, (e.g. error). It also handles the logic for updating the UiSetting's value in a consuming component through the `onFieldChange` handler.
diff --git a/packages/kbn-management/settings/components/field_row/__stories__/common.tsx b/packages/kbn-management/settings/components/field_row/__stories__/common.tsx
index 58e145146cc40..e8c51d075c21d 100644
--- a/packages/kbn-management/settings/components/field_row/__stories__/common.tsx
+++ b/packages/kbn-management/settings/components/field_row/__stories__/common.tsx
@@ -12,12 +12,15 @@ import { action } from '@storybook/addon-actions';
import { EuiPanel } from '@elastic/eui';
import { SettingType, UnsavedFieldChange } from '@kbn/management-settings-types';
-import { KnownTypeToMetadata, UiSettingMetadata } from '@kbn/management-settings-types/metadata';
+import {
+ KnownTypeToMetadata,
+ UiSettingMetadata,
+ OnFieldChangeFn,
+} from '@kbn/management-settings-types';
import { getDefaultValue, getUserValue } from '@kbn/management-settings-utilities/storybook';
import { getFieldDefinition } from '@kbn/management-settings-field-definition';
import { FieldRow as Component, FieldRow } from '../field_row';
import { FieldRowProvider } from '../services';
-import { RowOnChangeFn } from '../types';
/**
* Props for a {@link FieldInput} Storybook story.
@@ -103,10 +106,7 @@ export const storyArgs = {
* @param type The type of the UiSetting for this {@link FieldRow}.
* @returns A Storybook Story.
*/
-export const getFieldRowStory = (
- type: SettingType,
- settingFields?: Partial>
-) => {
+export const getFieldRowStory = (type: SettingType, settingFields?: Partial) => {
const Story = ({
isCustom,
isDeprecated,
@@ -143,17 +143,17 @@ export const getFieldRowStory = (
},
});
- const onChange: RowOnChangeFn = (_id, newChange) => {
+ const onFieldChange: OnFieldChangeFn = (_id, newChange) => {
setUnsavedChange(newChange);
- action('onChange')({
+ action('onFieldChange')({
type,
unsavedValue: newChange?.unsavedValue,
savedValue: field.savedValue,
});
};
- return ;
+ return ;
};
// In Kibana, the image default value is never anything other than null. There would be a number
diff --git a/packages/kbn-management/settings/components/field_row/field_row.test.tsx b/packages/kbn-management/settings/components/field_row/field_row.test.tsx
index afa425d2a459a..e64d32366409e 100644
--- a/packages/kbn-management/settings/components/field_row/field_row.test.tsx
+++ b/packages/kbn-management/settings/components/field_row/field_row.test.tsx
@@ -198,7 +198,7 @@ describe('Field', () => {
wrap(
)
@@ -212,7 +212,7 @@ describe('Field', () => {
wrap(
)
@@ -243,7 +243,7 @@ describe('Field', () => {
setting,
params: { isOverridden: true },
})}
- onChange={handleChange}
+ onFieldChange={handleChange}
isSavingEnabled={true}
/>
)
@@ -265,7 +265,7 @@ describe('Field', () => {
id,
setting,
})}
- onChange={handleChange}
+ onFieldChange={handleChange}
isSavingEnabled={false}
/>
)
@@ -288,7 +288,7 @@ describe('Field', () => {
userValue: userValues[type] as any,
},
})}
- onChange={handleChange}
+ onFieldChange={handleChange}
isSavingEnabled={true}
/>
)
@@ -319,7 +319,7 @@ describe('Field', () => {
setting,
params: { isCustom: true },
})}
- onChange={handleChange}
+ onFieldChange={handleChange}
isSavingEnabled={true}
/>
)
@@ -341,7 +341,7 @@ describe('Field', () => {
type,
unsavedValue: userValues[type] as any,
}}
- onChange={handleChange}
+ onFieldChange={handleChange}
isSavingEnabled={true}
/>
)
@@ -373,7 +373,7 @@ describe('Field', () => {
});
const { getByTestId } = render(
- wrap()
+ wrap()
);
const input = getByTestId(`${DATA_TEST_SUBJ_RESET_PREFIX}-${field.id}`);
@@ -395,7 +395,7 @@ describe('Field', () => {
)
@@ -408,12 +408,12 @@ describe('Field', () => {
});
});
- it('should fire onChange when input changes', () => {
+ it('should fire onFieldChange when input changes', () => {
const setting = settings.string;
const field = getFieldDefinition({ id: setting.name || setting.type, setting });
const { getByTestId } = render(
- wrap()
+ wrap()
);
const input = getByTestId(`${TEST_SUBJ_PREFIX_FIELD}-${field.id}`);
@@ -424,12 +424,12 @@ describe('Field', () => {
});
});
- it('should fire onChange with an error when input changes with invalid value', () => {
+ it('should fire onFieldChange with an error when input changes with invalid value', () => {
const setting = settings.color;
const field = getFieldDefinition({ id: setting.name || setting.type, setting });
const { getByTestId } = render(
- wrap()
+ wrap()
);
const input = getByTestId(`euiColorPickerAnchor ${TEST_SUBJ_PREFIX_FIELD}-${field.id}`);
@@ -451,7 +451,7 @@ describe('Field', () => {
wrap(
{
const { getByTestId } = render(
wrap(
-
+
)
);
@@ -512,7 +516,7 @@ describe('Field', () => {
});
const { getByTestId, getByAltText } = render(
- wrap()
+ wrap()
);
const link = getByTestId(`${DATA_TEST_SUBJ_CHANGE_LINK_PREFIX}-${field.id}`);
@@ -534,7 +538,7 @@ describe('Field', () => {
wrap(
diff --git a/packages/kbn-management/settings/components/field_row/field_row.tsx b/packages/kbn-management/settings/components/field_row/field_row.tsx
index 9058511c955d1..3592e634ade5e 100644
--- a/packages/kbn-management/settings/components/field_row/field_row.tsx
+++ b/packages/kbn-management/settings/components/field_row/field_row.tsx
@@ -21,7 +21,8 @@ import type {
ResetInputRef,
SettingType,
UnsavedFieldChange,
- OnChangeFn,
+ OnInputChangeFn,
+ OnFieldChangeFn,
} from '@kbn/management-settings-types';
import { isImageFieldDefinition } from '@kbn/management-settings-field-definition';
import { FieldInput } from '@kbn/management-settings-components-field-input';
@@ -30,12 +31,11 @@ import { hasUnsavedChange } from '@kbn/management-settings-utilities';
import { FieldDescription } from './description';
import { FieldTitle } from './title';
import { useFieldStyles } from './field_row.styles';
-import { RowOnChangeFn } from './types';
import { FieldInputFooter } from './footer';
export const DATA_TEST_SUBJ_SCREEN_READER_MESSAGE = 'fieldRowScreenReaderMessage';
-type Definition = Pick<
+type Definition = Pick<
FieldDefinition,
| 'ariaAttributes'
| 'defaultValue'
@@ -57,18 +57,18 @@ type Definition = Pick<
*/
export interface FieldRowProps {
/** The {@link FieldDefinition} corresponding the setting. */
- field: Definition;
+ field: Definition;
/** True if saving settings is enabled, false otherwise. */
isSavingEnabled: boolean;
- /** The {@link OnChangeFn} handler. */
- onChange: RowOnChangeFn;
+ /** The {@link OnInputChangeFn} handler. */
+ onFieldChange: OnFieldChangeFn;
/**
* The onClear handler, if a value is cleared to an empty or default state.
* @param id The id relating to the field to clear.
*/
onClear?: (id: string) => void;
/** The {@link UnsavedFieldChange} corresponding to any unsaved change to the field. */
- unsavedChange?: UnsavedFieldChange;
+ unsavedChange?: UnsavedFieldChange;
}
/**
@@ -76,7 +76,7 @@ export interface FieldRowProps {
* @param props The {@link FieldRowProps} for the {@link FieldRow} component.
*/
export const FieldRow = (props: FieldRowProps) => {
- const { isSavingEnabled, onChange: onChangeProp, field, unsavedChange } = props;
+ const { isSavingEnabled, onFieldChange, field, unsavedChange } = props;
const { id, groupId, isOverridden, unsavedFieldId } = field;
const { cssFieldFormGroup } = useFieldStyles({
field,
@@ -86,9 +86,9 @@ export const FieldRow = (props: FieldRowProps) => {
// Create a ref for those input fields that use a `reset` handle.
const ref = useRef(null);
- // Route any change to the `onChange` handler, along with the field id.
- const onChange: OnChangeFn = (update) => {
- onChangeProp(id, update);
+ // Route any change to the `onFieldChange` handler, along with the field id.
+ const onInputChange: OnInputChangeFn = (update) => {
+ onFieldChange(id, update);
};
const onReset = () => {
@@ -97,9 +97,9 @@ export const FieldRow = (props: FieldRowProps) => {
const update = { type: field.type, unsavedValue: field.defaultValue };
if (hasUnsavedChange(field, update)) {
- onChange(update);
+ onInputChange(update);
} else {
- onChange();
+ onInputChange();
}
};
@@ -111,9 +111,9 @@ export const FieldRow = (props: FieldRowProps) => {
// Indicate a field is being cleared for a new value by setting its unchanged
// value to`undefined`. Currently, this only applies to `image` fields.
if (field.savedValue !== undefined && field.savedValue !== null) {
- onChange({ type: field.type, unsavedValue: undefined });
+ onInputChange({ type: field.type, unsavedValue: undefined });
} else {
- onChange();
+ onInputChange();
}
};
@@ -162,7 +162,7 @@ export const FieldRow = (props: FieldRowProps) => {
{unsavedScreenReaderMessage}
>
diff --git a/packages/kbn-management/settings/components/field_row/footer/reset_link.test.tsx b/packages/kbn-management/settings/components/field_row/footer/reset_link.test.tsx
index 2704e9e33d743..74f87aadca816 100644
--- a/packages/kbn-management/settings/components/field_row/footer/reset_link.test.tsx
+++ b/packages/kbn-management/settings/components/field_row/footer/reset_link.test.tsx
@@ -9,13 +9,11 @@
import React from 'react';
import { render, fireEvent } from '@testing-library/react';
-import { SettingType } from '@kbn/management-settings-types';
-
import { wrap } from '../mocks';
import { InputResetLink, InputResetLinkProps } from './reset_link';
describe('InputResetLink', () => {
- const defaultProps: InputResetLinkProps = {
+ const defaultProps: InputResetLinkProps = {
field: {
type: 'string',
id: 'test',
diff --git a/packages/kbn-management/settings/components/field_row/footer/reset_link.tsx b/packages/kbn-management/settings/components/field_row/footer/reset_link.tsx
index 35a34350e0be8..778995085d981 100644
--- a/packages/kbn-management/settings/components/field_row/footer/reset_link.tsx
+++ b/packages/kbn-management/settings/components/field_row/footer/reset_link.tsx
@@ -21,7 +21,7 @@ import { isFieldDefaultValue } from '@kbn/management-settings-utilities';
/**
* Props for a {@link InputResetLink} component.
*/
-export interface InputResetLinkProps {
+export interface InputResetLinkProps {
/** The {@link FieldDefinition} corresponding the setting. */
field: Pick<
FieldDefinition,
diff --git a/packages/kbn-management/settings/components/field_row/index.ts b/packages/kbn-management/settings/components/field_row/index.ts
index 98c64f1cd494d..6bcbcf409d1be 100644
--- a/packages/kbn-management/settings/components/field_row/index.ts
+++ b/packages/kbn-management/settings/components/field_row/index.ts
@@ -6,12 +6,11 @@
* Side Public License, v 1.
*/
-export { FieldRow, type FieldRowProps as FieldProps } from './field_row';
+export { FieldRow, type FieldRowProps } from './field_row';
export { FieldRowProvider, FieldRowKibanaProvider, type FieldRowProviderProps } from './services';
export type {
FieldRowServices,
FieldRowKibanaDependencies,
- RowOnChangeFn,
KibanaDependencies,
Services,
} from './types';
diff --git a/packages/kbn-management/settings/components/field_row/types.ts b/packages/kbn-management/settings/components/field_row/types.ts
index d353cd91fba49..a483763e79571 100644
--- a/packages/kbn-management/settings/components/field_row/types.ts
+++ b/packages/kbn-management/settings/components/field_row/types.ts
@@ -12,7 +12,6 @@ import type {
FieldInputServices,
FieldInputKibanaDependencies,
} from '@kbn/management-settings-components-field-input';
-import { SettingType, UnsavedFieldChange } from '@kbn/management-settings-types';
/**
* Contextual services used by a {@link FieldRow} component.
@@ -43,13 +42,3 @@ export interface KibanaDependencies {
* render a {@link FieldRow} component and its dependents.
*/
export type FieldRowKibanaDependencies = KibanaDependencies & FieldInputKibanaDependencies;
-
-/**
- * An `onChange` handler for a {@link FieldRow} component.
- * @param id A unique id corresponding to the particular setting being changed.
- * @param change The {@link UnsavedFieldChange} corresponding to any unsaved change to the field.
- */
-export type RowOnChangeFn = (
- id: string,
- change?: UnsavedFieldChange
-) => void;
diff --git a/packages/kbn-management/settings/components/form/form.test.tsx b/packages/kbn-management/settings/components/form/form.test.tsx
index 2f1cbdb80bcac..0e149938e2146 100644
--- a/packages/kbn-management/settings/components/form/form.test.tsx
+++ b/packages/kbn-management/settings/components/form/form.test.tsx
@@ -7,22 +7,20 @@
*/
import React from 'react';
-import { fireEvent, render, waitFor } from '@testing-library/react';
+import { act, fireEvent, render, waitFor } from '@testing-library/react';
import { FieldDefinition, SettingType } from '@kbn/management-settings-types';
import { getFieldDefinitions } from '@kbn/management-settings-field-definition';
+import { getSettingsMock } from '@kbn/management-settings-utilities/mocks/settings.mock';
+import { TEST_SUBJ_PREFIX_FIELD } from '@kbn/management-settings-components-field-input/input';
import { Form } from './form';
-import { wrap, getSettingsMock, createFormServicesMock, uiSettingsClientMock } from './mocks';
-import { TEST_SUBJ_PREFIX_FIELD } from '@kbn/management-settings-components-field-input/input';
+import { wrap, createFormServicesMock, uiSettingsClientMock } from './mocks';
import { DATA_TEST_SUBJ_SAVE_BUTTON, DATA_TEST_SUBJ_CANCEL_BUTTON } from './bottom_bar/bottom_bar';
import { FormServices } from './types';
const settingsMock = getSettingsMock();
-const fields: Array> = getFieldDefinitions(
- settingsMock,
- uiSettingsClientMock
-);
+const fields: FieldDefinition[] = getFieldDefinitions(settingsMock, uiSettingsClientMock);
describe('Form', () => {
beforeEach(() => {
@@ -78,14 +76,18 @@ describe('Form', () => {
fireEvent.change(input, { target: { value: 'test' } });
const saveButton = getByTestId(DATA_TEST_SUBJ_SAVE_BUTTON);
- fireEvent.click(saveButton);
+ act(() => {
+ fireEvent.click(saveButton);
+ });
- expect(services.saveChanges).toHaveBeenCalledWith({
- string: { type: 'string', unsavedValue: 'test' },
+ await waitFor(() => {
+ expect(services.saveChanges).toHaveBeenCalledWith({
+ string: { type: 'string', unsavedValue: 'test' },
+ });
});
});
- it('clears changes when Cancel button is clicked', () => {
+ it('clears changes when Cancel button is clicked', async () => {
const { getByTestId } = render(wrap());
const testFieldType = 'string';
@@ -93,12 +95,16 @@ describe('Form', () => {
fireEvent.change(input, { target: { value: 'test' } });
const cancelButton = getByTestId(DATA_TEST_SUBJ_CANCEL_BUTTON);
- fireEvent.click(cancelButton);
+ act(() => {
+ fireEvent.click(cancelButton);
+ });
- expect(input).toHaveValue(settingsMock[testFieldType].value);
+ await waitFor(() => {
+ expect(input).toHaveValue(settingsMock[testFieldType].value);
+ });
});
- it('fires showError when saving is unsuccessful', () => {
+ it('fires showError when saving is unsuccessful', async () => {
const services: FormServices = createFormServicesMock();
const saveChangesWithError = jest.fn(() => {
throw new Error('Unable to save');
@@ -114,15 +120,19 @@ describe('Form', () => {
fireEvent.change(input, { target: { value: 'test' } });
const saveButton = getByTestId(DATA_TEST_SUBJ_SAVE_BUTTON);
- fireEvent.click(saveButton);
+ act(() => {
+ fireEvent.click(saveButton);
+ });
- expect(testServices.showError).toHaveBeenCalled();
+ await waitFor(() => {
+ expect(testServices.showError).toHaveBeenCalled();
+ });
});
it('fires showReloadPagePrompt when changing a reloadPageRequired setting', async () => {
const services: FormServices = createFormServicesMock();
// Make all settings require a page reload
- const testFields: Array> = getFieldDefinitions(
+ const testFields: FieldDefinition[] = getFieldDefinitions(
getSettingsMock(true),
uiSettingsClientMock
);
@@ -135,7 +145,9 @@ describe('Form', () => {
fireEvent.change(input, { target: { value: 'test' } });
const saveButton = getByTestId(DATA_TEST_SUBJ_SAVE_BUTTON);
- fireEvent.click(saveButton);
+ act(() => {
+ fireEvent.click(saveButton);
+ });
await waitFor(() => {
expect(services.showReloadPagePrompt).toHaveBeenCalled();
diff --git a/packages/kbn-management/settings/components/form/form.tsx b/packages/kbn-management/settings/components/form/form.tsx
index fabc80755cad8..0bc9d2c96fb29 100644
--- a/packages/kbn-management/settings/components/form/form.tsx
+++ b/packages/kbn-management/settings/components/form/form.tsx
@@ -9,9 +9,10 @@
import React, { Fragment } from 'react';
import type { FieldDefinition } from '@kbn/management-settings-types';
-import { FieldRow, RowOnChangeFn } from '@kbn/management-settings-components-field-row';
-import { SettingType, UnsavedFieldChange } from '@kbn/management-settings-types';
+import { FieldCategories } from '@kbn/management-settings-components-field-category';
+import { UnsavedFieldChange, OnFieldChangeFn } from '@kbn/management-settings-types';
import { isEmpty } from 'lodash';
+import { categorizeFields } from '@kbn/management-settings-utilities';
import { BottomBar } from './bottom_bar';
import { useSave } from './use_save';
@@ -20,7 +21,7 @@ import { useSave } from './use_save';
*/
export interface FormProps {
/** A list of {@link FieldDefinition} corresponding to settings to be displayed in the form. */
- fields: Array>;
+ fields: FieldDefinition[];
/** True if saving settings is enabled, false otherwise. */
isSavingEnabled: boolean;
}
@@ -32,9 +33,9 @@ export interface FormProps {
export const Form = (props: FormProps) => {
const { fields, isSavingEnabled } = props;
- const [unsavedChanges, setUnsavedChanges] = React.useState<
- Record>
- >({});
+ const [unsavedChanges, setUnsavedChanges] = React.useState>(
+ {}
+ );
const [isLoading, setIsLoading] = React.useState(false);
@@ -53,7 +54,7 @@ export const Form = (props: FormProps) => {
setIsLoading(false);
};
- const onChange: RowOnChangeFn = (id, change) => {
+ const onFieldChange: OnFieldChangeFn = (id, change) => {
if (!change) {
const { [id]: unsavedChange, ...rest } = unsavedChanges;
setUnsavedChanges(rest);
@@ -63,15 +64,16 @@ export const Form = (props: FormProps) => {
setUnsavedChanges((changes) => ({ ...changes, [id]: change }));
};
- const fieldRows = fields.map((field) => {
- const { id: key } = field;
- const unsavedChange = unsavedChanges[key];
- return ;
- });
+ const categorizedFields = categorizeFields(fields);
+
+ /** TODO - Querying is not enabled yet. */
+ const onClearQuery = () => {};
return (
- {fieldRows}
+
{!isEmpty(unsavedChanges) && (
{
return (
- {children}
+ {children}
);
};
@@ -47,7 +47,7 @@ export const FormKibanaProvider: FC = ({ children, ...de
return (
>) => {
+ saveChanges: (changes: Record) => {
const arr = Object.entries(changes).map(([key, value]) =>
settings.client.set(key, value.unsavedValue)
);
@@ -57,7 +57,9 @@ export const FormKibanaProvider: FC = ({ children, ...de
showReloadPagePrompt: () => toasts.add(reloadPageToast(theme, i18nStart)),
}}
>
- {children}
+
+ {children}
+
);
};
diff --git a/packages/kbn-management/settings/components/form/storybook/form.stories.tsx b/packages/kbn-management/settings/components/form/storybook/form.stories.tsx
index 5ba4a57d8a2f3..060ddd6355340 100644
--- a/packages/kbn-management/settings/components/form/storybook/form.stories.tsx
+++ b/packages/kbn-management/settings/components/form/storybook/form.stories.tsx
@@ -6,12 +6,13 @@
* Side Public License, v 1.
*/
import React from 'react';
-import { EuiPanel } from '@elastic/eui';
import { action } from '@storybook/addon-actions';
import { ComponentMeta } from '@storybook/react';
-import { FieldDefinition, SettingType } from '@kbn/management-settings-types';
+import { FieldDefinition } from '@kbn/management-settings-types';
import { getFieldDefinitions } from '@kbn/management-settings-field-definition';
-import { getSettingsMock, uiSettingsClientMock } from '../mocks';
+import { getSettingsMock } from '@kbn/management-settings-utilities/mocks/settings.mock';
+
+import { uiSettingsClientMock } from '../mocks';
import { Form as Component } from '../form';
import { FormProvider } from '../services';
@@ -37,12 +38,15 @@ export default {
showError={action('showError')}
showReloadPagePrompt={action('showReloadPagePrompt')}
>
-
-
-
+
),
],
+ parameters: {
+ backgrounds: {
+ default: 'ghost',
+ },
+ },
} as ComponentMeta;
interface FormStoryProps {
@@ -53,7 +57,7 @@ interface FormStoryProps {
}
export const Form = ({ isSavingEnabled, requirePageReload }: FormStoryProps) => {
- const fields: Array> = getFieldDefinitions(
+ const fields: FieldDefinition[] = getFieldDefinitions(
getSettingsMock(requirePageReload),
uiSettingsClientMock
);
diff --git a/packages/kbn-management/settings/components/form/tsconfig.json b/packages/kbn-management/settings/components/form/tsconfig.json
index 359e5560fd2e4..cfd8fe3ac53b0 100644
--- a/packages/kbn-management/settings/components/form/tsconfig.json
+++ b/packages/kbn-management/settings/components/form/tsconfig.json
@@ -30,5 +30,7 @@
"@kbn/core-theme-browser",
"@kbn/core-ui-settings-browser",
"@kbn/management-settings-components-field-input",
+ "@kbn/management-settings-components-field-category",
+ "@kbn/management-settings-utilities",
]
}
diff --git a/packages/kbn-management/settings/components/form/types.ts b/packages/kbn-management/settings/components/form/types.ts
index 2e803cbd74cb5..155420f5effe2 100644
--- a/packages/kbn-management/settings/components/form/types.ts
+++ b/packages/kbn-management/settings/components/form/types.ts
@@ -10,7 +10,7 @@ import type {
FieldRowKibanaDependencies,
FieldRowServices,
} from '@kbn/management-settings-components-field-row';
-import { SettingType, UnsavedFieldChange } from '@kbn/management-settings-types';
+import { UnsavedFieldChange } from '@kbn/management-settings-types';
import { SettingsStart } from '@kbn/core-ui-settings-browser';
import { I18nStart } from '@kbn/core-i18n-browser';
import { ThemeServiceStart } from '@kbn/core-theme-browser';
@@ -20,7 +20,7 @@ import { ToastsStart } from '@kbn/core-notifications-browser';
* Contextual services used by a {@link Form} component.
*/
export interface Services {
- saveChanges: (changes: Record>) => void;
+ saveChanges: (changes: Record) => void;
showError: (message: string) => void;
showReloadPagePrompt: () => void;
}
diff --git a/packages/kbn-management/settings/components/form/use_save.ts b/packages/kbn-management/settings/components/form/use_save.ts
index ebd1981eb57d9..f0679f31aca20 100644
--- a/packages/kbn-management/settings/components/form/use_save.ts
+++ b/packages/kbn-management/settings/components/form/use_save.ts
@@ -6,7 +6,7 @@
* Side Public License, v 1.
*/
-import type { FieldDefinition, SettingType } from '@kbn/management-settings-types';
+import type { FieldDefinition } from '@kbn/management-settings-types';
import { isEmpty } from 'lodash';
import { i18n } from '@kbn/i18n';
import { UnsavedFieldChange } from '@kbn/management-settings-types';
@@ -14,7 +14,7 @@ import { useServices } from './services';
export interface UseSaveParameters {
/** All {@link FieldDefinition} in the form. */
- fields: Array>;
+ fields: FieldDefinition[];
/** The function to invoke for clearing all unsaved changes. */
clearChanges: () => void;
}
@@ -28,7 +28,7 @@ export interface UseSaveParameters {
export const useSave = (params: UseSaveParameters) => {
const { saveChanges, showError, showReloadPagePrompt } = useServices();
- return async (changes: Record>) => {
+ return async (changes: Record) => {
if (isEmpty(changes)) {
return;
}
diff --git a/packages/kbn-management/settings/field_definition/get_definitions.ts b/packages/kbn-management/settings/field_definition/get_definitions.ts
index 83d604db294cf..e84c05b03f07d 100644
--- a/packages/kbn-management/settings/field_definition/get_definitions.ts
+++ b/packages/kbn-management/settings/field_definition/get_definitions.ts
@@ -7,7 +7,7 @@
*/
import { IUiSettingsClient } from '@kbn/core-ui-settings-browser';
-import { FieldDefinition, SettingType, UiSettingMetadata } from '@kbn/management-settings-types';
+import { FieldDefinition, UiSettingMetadata } from '@kbn/management-settings-types';
import { getFieldDefinition } from './get_definition';
type SettingsClient = Pick;
@@ -21,9 +21,9 @@ type SettingsClient = Pick;
* @returns An array of {@link FieldDefinition} objects.
*/
export const getFieldDefinitions = (
- settings: Record>,
+ settings: Record,
client: SettingsClient
-): Array> =>
+): FieldDefinition[] =>
Object.entries(settings).map(([id, setting]) =>
getFieldDefinition({
id,
diff --git a/packages/kbn-management/settings/field_definition/is/field_definition.ts b/packages/kbn-management/settings/field_definition/is/field_definition.ts
index 52c6e83468177..364cb4940f0d2 100644
--- a/packages/kbn-management/settings/field_definition/is/field_definition.ts
+++ b/packages/kbn-management/settings/field_definition/is/field_definition.ts
@@ -26,13 +26,12 @@ import {
MarkdownFieldDefinition,
NumberFieldDefinition,
SelectFieldDefinition,
- SettingType,
StringFieldDefinition,
UndefinedFieldDefinition,
} from '@kbn/management-settings-types';
/** Simplifed type for a {@link FieldDefinition} */
-type Definition = Pick, 'type'>;
+type Definition = Pick;
/**
* Returns `true` if the given {@link FieldDefinition} is an {@link ArrayFieldDefinition},
diff --git a/packages/kbn-management/settings/field_definition/is/unsaved_change.ts b/packages/kbn-management/settings/field_definition/is/unsaved_change.ts
index 6af63db17e36a..a88e0842bb095 100644
--- a/packages/kbn-management/settings/field_definition/is/unsaved_change.ts
+++ b/packages/kbn-management/settings/field_definition/is/unsaved_change.ts
@@ -27,12 +27,11 @@ import {
SelectUnsavedFieldChange,
StringUnsavedFieldChange,
UndefinedUnsavedFieldChange,
- SettingType,
UnsavedFieldChange,
} from '@kbn/management-settings-types';
/** Simplifed type for a {@link UnsavedFieldChange} */
-type Change = UnsavedFieldChange;
+type Change = UnsavedFieldChange;
/**
* Returns `true` if the given {@link FieldUnsavedChange} is an {@link ArrayUnsavedFieldChange},
diff --git a/packages/kbn-management/settings/types/category.ts b/packages/kbn-management/settings/types/category.ts
new file mode 100644
index 0000000000000..fe5d4910e426f
--- /dev/null
+++ b/packages/kbn-management/settings/types/category.ts
@@ -0,0 +1,16 @@
+/*
+ * Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one
+ * or more contributor license agreements. Licensed under the Elastic License
+ * 2.0 and the Server Side Public License, v 1; you may not use this file except
+ * in compliance with, at your election, the Elastic License 2.0 or the Server
+ * Side Public License, v 1.
+ */
+
+import { FieldDefinition } from './field_definition';
+
+export interface CategorizedFields {
+ [category: string]: {
+ count: number;
+ fields: FieldDefinition[];
+ };
+}
diff --git a/packages/kbn-management/settings/types/field_definition.ts b/packages/kbn-management/settings/types/field_definition.ts
index eb34df3b67868..2da9168b6401e 100644
--- a/packages/kbn-management/settings/types/field_definition.ts
+++ b/packages/kbn-management/settings/types/field_definition.ts
@@ -20,7 +20,10 @@ import { KnownTypeToValue, SettingType } from './setting_type';
* representing a UiSetting).
* @public
*/
-export interface FieldDefinition | null> {
+export interface FieldDefinition<
+ T extends SettingType = SettingType,
+ V = KnownTypeToValue | null
+> {
/** UX ARIA attributes derived from the setting. */
ariaAttributes: {
/** The `aria-label` attribute for the field input. */
diff --git a/packages/kbn-management/settings/types/index.ts b/packages/kbn-management/settings/types/index.ts
index 08cd1ae1df3bb..7f8afb8073a5c 100644
--- a/packages/kbn-management/settings/types/index.ts
+++ b/packages/kbn-management/settings/types/index.ts
@@ -51,6 +51,7 @@ export type {
StringUnsavedFieldChange,
UndefinedUnsavedFieldChange,
UnsavedFieldChange,
+ UnsavedFieldChanges,
} from './unsaved_change';
export type {
@@ -64,6 +65,8 @@ export type {
Value,
} from './setting_type';
+export type { CategorizedFields } from './category';
+
/**
* A React `ref` that indicates an input can be reset using an
* imperative handle.
@@ -76,4 +79,16 @@ export type ResetInputRef = {
* A function that is called when the value of a {@link FieldInput} changes.
* @param change The {@link UnsavedFieldChange} passed to the handler.
*/
-export type OnChangeFn = (change?: UnsavedFieldChange) => void;
+export type OnInputChangeFn = (
+ change?: UnsavedFieldChange
+) => void;
+
+/**
+ * An `onFieldChange` handler when a Field changes.
+ * @param id A unique id corresponding to the particular setting being changed.
+ * @param change The {@link UnsavedFieldChange} corresponding to any unsaved change to the field.
+ */
+export type OnFieldChangeFn = (
+ id: string,
+ change?: UnsavedFieldChange
+) => void;
diff --git a/packages/kbn-management/settings/types/metadata.ts b/packages/kbn-management/settings/types/metadata.ts
index c0a79549039de..48ff816230ce1 100644
--- a/packages/kbn-management/settings/types/metadata.ts
+++ b/packages/kbn-management/settings/types/metadata.ts
@@ -21,8 +21,10 @@ export type UiSetting = PublicUiSettingsParams & UserProvidedValues;
*
* @public
*/
-export interface UiSettingMetadata | null>
- extends UiSetting {
+export interface UiSettingMetadata<
+ T extends SettingType = SettingType,
+ V = KnownTypeToValue | null
+> extends UiSetting {
/**
* The type of setting being represented.
* @see{@link SettingType}
diff --git a/packages/kbn-management/settings/types/setting_type.ts b/packages/kbn-management/settings/types/setting_type.ts
index da297c6d94171..92db0744ac83e 100644
--- a/packages/kbn-management/settings/types/setting_type.ts
+++ b/packages/kbn-management/settings/types/setting_type.ts
@@ -63,7 +63,7 @@ export type Value = string | boolean | number | Array | undefin
* given {@link SettingType}.
* @public
*/
-export type KnownTypeToValue =
+export type KnownTypeToValue =
T extends 'color' | 'image' | 'json' | 'markdown' | 'select' | 'string' ? string :
T extends 'boolean' ? boolean :
T extends 'number' | 'bigint' ? number :
diff --git a/packages/kbn-management/settings/types/unsaved_change.ts b/packages/kbn-management/settings/types/unsaved_change.ts
index 3bd815187f70a..0b5a02e241931 100644
--- a/packages/kbn-management/settings/types/unsaved_change.ts
+++ b/packages/kbn-management/settings/types/unsaved_change.ts
@@ -13,7 +13,7 @@ import { KnownTypeToValue, SettingType } from './setting_type';
* yet been saved.
* @public
*/
-export interface UnsavedFieldChange {
+export interface UnsavedFieldChange {
/**
* The type of setting.
* @see {@link SettingType}
@@ -125,3 +125,5 @@ export type KnownTypeToUnsavedChange =
T extends 'string' ? StringUnsavedFieldChange:
T extends 'undefined' ? UndefinedUnsavedFieldChange :
never;
+
+export type UnsavedFieldChanges = Record;
diff --git a/packages/kbn-management/settings/utilities/category/categorize_fields.ts b/packages/kbn-management/settings/utilities/category/categorize_fields.ts
new file mode 100644
index 0000000000000..a705d5f872266
--- /dev/null
+++ b/packages/kbn-management/settings/utilities/category/categorize_fields.ts
@@ -0,0 +1,22 @@
+/*
+ * Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one
+ * or more contributor license agreements. Licensed under the Elastic License
+ * 2.0 and the Server Side Public License, v 1; you may not use this file except
+ * in compliance with, at your election, the Elastic License 2.0 or the Server
+ * Side Public License, v 1.
+ */
+
+import { CategorizedFields, FieldDefinition } from '@kbn/management-settings-types';
+
+export const categorizeFields = (fields: FieldDefinition[]): CategorizedFields => {
+ // Group settings by category
+ return fields.reduce((grouped: CategorizedFields, field) => {
+ const category = field.categories[0];
+ const group = grouped[category] || { count: 0, fields: [] };
+ group.fields = [...group.fields, field];
+ group.count = group.fields.length;
+ grouped[category] = group;
+
+ return grouped;
+ }, {});
+};
diff --git a/packages/kbn-management/settings/utilities/category/get_category_name.ts b/packages/kbn-management/settings/utilities/category/get_category_name.ts
new file mode 100644
index 0000000000000..8355f001f7bbd
--- /dev/null
+++ b/packages/kbn-management/settings/utilities/category/get_category_name.ts
@@ -0,0 +1,54 @@
+/*
+ * Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one
+ * or more contributor license agreements. Licensed under the Elastic License
+ * 2.0 and the Server Side Public License, v 1; you may not use this file except
+ * in compliance with, at your election, the Elastic License 2.0 or the Server
+ * Side Public License, v 1.
+ */
+
+import { i18n } from '@kbn/i18n';
+
+const upperFirst = (str = '') => str.replace(/^./, (strng) => strng.toUpperCase());
+
+const names: Record = {
+ general: i18n.translate('management.settings.categoryNames.generalLabel', {
+ defaultMessage: 'General',
+ }),
+ machineLearning: i18n.translate('management.settings.categoryNames.machineLearningLabel', {
+ defaultMessage: 'Machine Learning',
+ }),
+ observability: i18n.translate('management.settings.categoryNames.observabilityLabel', {
+ defaultMessage: 'Observability',
+ }),
+ timelion: i18n.translate('management.settings.categoryNames.timelionLabel', {
+ defaultMessage: 'Timelion',
+ }),
+ notifications: i18n.translate('management.settings.categoryNames.notificationsLabel', {
+ defaultMessage: 'Notifications',
+ }),
+ visualizations: i18n.translate('management.settings.categoryNames.visualizationsLabel', {
+ defaultMessage: 'Visualizations',
+ }),
+ discover: i18n.translate('management.settings.categoryNames.discoverLabel', {
+ defaultMessage: 'Discover',
+ }),
+ dashboard: i18n.translate('management.settings.categoryNames.dashboardLabel', {
+ defaultMessage: 'Dashboard',
+ }),
+ reporting: i18n.translate('management.settings.categoryNames.reportingLabel', {
+ defaultMessage: 'Reporting',
+ }),
+ search: i18n.translate('management.settings.categoryNames.searchLabel', {
+ defaultMessage: 'Search',
+ }),
+ securitySolution: i18n.translate('management.settings.categoryNames.securitySolutionLabel', {
+ defaultMessage: 'Security Solution',
+ }),
+ enterpriseSearch: i18n.translate('management.settings.categoryNames.enterpriseSearchLabel', {
+ defaultMessage: 'Enterprise Search',
+ }),
+};
+
+export function getCategoryName(category?: string) {
+ return category ? names[category] || upperFirst(category) : '';
+}
diff --git a/packages/kbn-management/settings/utilities/category/index.ts b/packages/kbn-management/settings/utilities/category/index.ts
new file mode 100644
index 0000000000000..c562a888e0cbe
--- /dev/null
+++ b/packages/kbn-management/settings/utilities/category/index.ts
@@ -0,0 +1,10 @@
+/*
+ * Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one
+ * or more contributor license agreements. Licensed under the Elastic License
+ * 2.0 and the Server Side Public License, v 1; you may not use this file except
+ * in compliance with, at your election, the Elastic License 2.0 or the Server
+ * Side Public License, v 1.
+ */
+
+export { categorizeFields } from './categorize_fields';
+export { getCategoryName } from './get_category_name';
diff --git a/packages/kbn-management/settings/utilities/field/use_update.ts b/packages/kbn-management/settings/utilities/field/use_update.ts
index 4744d59dd90e7..c330ff25d7f4d 100644
--- a/packages/kbn-management/settings/utilities/field/use_update.ts
+++ b/packages/kbn-management/settings/utilities/field/use_update.ts
@@ -6,31 +6,33 @@
* Side Public License, v 1.
*/
-import type { FieldDefinition, SettingType, OnChangeFn } from '@kbn/management-settings-types';
+import type { FieldDefinition, SettingType, OnInputChangeFn } from '@kbn/management-settings-types';
import { hasUnsavedChange } from './has_unsaved_change';
export interface UseUpdateParameters {
- /** The {@link OnChangeFn} to invoke. */
- onChange: OnChangeFn;
+ /** The {@link OnInputChangeFn} to invoke. */
+ onInputChange: OnInputChangeFn;
/** The {@link FieldDefinition} to use to create an update. */
field: Pick, 'defaultValue' | 'savedValue'>;
}
/**
- * Hook to provide a standard {@link OnChangeFn} that will send an update to the
+ * Hook to provide a standard {@link OnInputChangeFn} that will send an update to the
* field.
*
* @param params The {@link UseUpdateParameters} to use.
- * @returns An {@link OnChangeFn} that will send an update to the field.
+ * @returns An {@link OnInputChangeFn} that will send an update to the field.
*/
-export const useUpdate = (params: UseUpdateParameters): OnChangeFn => {
- const { onChange, field } = params;
+export const useUpdate = (
+ params: UseUpdateParameters
+): OnInputChangeFn => {
+ const { onInputChange, field } = params;
return (update) => {
if (hasUnsavedChange(field, update)) {
- onChange(update);
+ onInputChange(update);
} else {
- onChange();
+ onInputChange();
}
};
};
diff --git a/packages/kbn-management/settings/utilities/index.ts b/packages/kbn-management/settings/utilities/index.ts
index 4e4523f66eb59..60cb17e47206f 100644
--- a/packages/kbn-management/settings/utilities/index.ts
+++ b/packages/kbn-management/settings/utilities/index.ts
@@ -7,6 +7,7 @@
*/
export { isSettingDefaultValue, normalizeSettings } from './setting';
+
export {
getFieldInputValue,
hasUnsavedChange,
@@ -14,3 +15,5 @@ export {
useUpdate,
type UseUpdateParameters,
} from './field';
+
+export { categorizeFields, getCategoryName } from './category';
diff --git a/packages/kbn-management/settings/components/form/mocks/settings.ts b/packages/kbn-management/settings/utilities/mocks/settings.mock.ts
similarity index 79%
rename from packages/kbn-management/settings/components/form/mocks/settings.ts
rename to packages/kbn-management/settings/utilities/mocks/settings.mock.ts
index e22f24e4a1a09..ca2a2892836ce 100644
--- a/packages/kbn-management/settings/components/form/mocks/settings.ts
+++ b/packages/kbn-management/settings/utilities/mocks/settings.mock.ts
@@ -14,13 +14,15 @@ type Settings = {
/**
* A utility function returning a representative set of UiSettings.
- * @param requirePageReload The value of the `requirePageReload` param for all settings.
+ * @param requiresPageReload The value of the `requirePageReload` param for all settings.
*/
-export const getSettingsMock = (requirePageReload: boolean = false): Settings => {
+export const getSettingsMock = (
+ requiresPageReload: boolean = false,
+ readonly: boolean = false
+): Settings => {
const defaults = {
- requiresPageReload: requirePageReload,
- readonly: false,
- category: ['category'],
+ requiresPageReload,
+ readonly,
};
return {
@@ -29,7 +31,8 @@ export const getSettingsMock = (requirePageReload: boolean = false): Settings =>
name: 'array:test:setting',
type: 'array',
userValue: null,
- value: ['example_value'],
+ value: ['foo', 'bar', 'baz'],
+ category: ['general', 'dashboard'],
...defaults,
},
boolean: {
@@ -38,6 +41,7 @@ export const getSettingsMock = (requirePageReload: boolean = false): Settings =>
type: 'boolean',
userValue: null,
value: true,
+ category: ['general', 'dashboard'],
...defaults,
},
color: {
@@ -46,6 +50,7 @@ export const getSettingsMock = (requirePageReload: boolean = false): Settings =>
type: 'color',
userValue: null,
value: '#FF00CC',
+ category: ['general', 'dashboard'],
...defaults,
},
image: {
@@ -54,6 +59,7 @@ export const getSettingsMock = (requirePageReload: boolean = false): Settings =>
type: 'image',
userValue: null,
value: '',
+ category: ['dashboard', 'discover'],
...defaults,
},
number: {
@@ -62,6 +68,7 @@ export const getSettingsMock = (requirePageReload: boolean = false): Settings =>
type: 'number',
userValue: null,
value: 1,
+ category: ['dashboard', 'discover'],
...defaults,
},
json: {
@@ -70,6 +77,7 @@ export const getSettingsMock = (requirePageReload: boolean = false): Settings =>
type: 'json',
userValue: null,
value: '{"foo": "bar"}',
+ category: ['dashboard', 'discover'],
...defaults,
},
markdown: {
@@ -78,6 +86,7 @@ export const getSettingsMock = (requirePageReload: boolean = false): Settings =>
type: 'markdown',
userValue: null,
value: '',
+ category: ['notifications', 'search'],
...defaults,
},
select: {
@@ -92,6 +101,7 @@ export const getSettingsMock = (requirePageReload: boolean = false): Settings =>
type: 'select',
userValue: null,
value: 'apple',
+ category: ['notifications', 'search'],
...defaults,
},
string: {
@@ -100,6 +110,7 @@ export const getSettingsMock = (requirePageReload: boolean = false): Settings =>
type: 'string',
userValue: null,
value: 'hello world',
+ category: ['notifications', 'search'],
...defaults,
},
undefined: {
@@ -108,6 +119,7 @@ export const getSettingsMock = (requirePageReload: boolean = false): Settings =>
type: 'undefined',
userValue: null,
value: undefined,
+ category: ['notifications', 'search'],
...defaults,
},
};
diff --git a/packages/kbn-management/settings/utilities/setting/is_default_value.ts b/packages/kbn-management/settings/utilities/setting/is_default_value.ts
index b59467b7410ac..9c6dbe0077521 100644
--- a/packages/kbn-management/settings/utilities/setting/is_default_value.ts
+++ b/packages/kbn-management/settings/utilities/setting/is_default_value.ts
@@ -6,7 +6,7 @@
* Side Public License, v 1.
*/
-import { SettingType, UiSettingMetadata, Value } from '@kbn/management-settings-types';
+import { UiSettingMetadata, Value } from '@kbn/management-settings-types';
import isEqual from 'lodash/isEqual';
/**
@@ -17,7 +17,7 @@ import isEqual from 'lodash/isEqual';
* @returns True if the provided value is equal to the setting's default value, false otherwise.
*/
export const isSettingDefaultValue = (
- setting: UiSettingMetadata,
+ setting: UiSettingMetadata,
userValue: Value = setting.userValue
) => {
const { value } = setting;
diff --git a/packages/kbn-management/settings/utilities/setting/normalize_settings.ts b/packages/kbn-management/settings/utilities/setting/normalize_settings.ts
index fa247151c7751..e4083ab58c96b 100644
--- a/packages/kbn-management/settings/utilities/setting/normalize_settings.ts
+++ b/packages/kbn-management/settings/utilities/setting/normalize_settings.ts
@@ -92,10 +92,8 @@ const deriveValue = (type: SettingType, value: unknown): Value => {
* may be missing the `type` or `value` properties.
* @returns A mapped collection of normalized {@link UiSetting} objects.
*/
-export const normalizeSettings = (
- rawSettings: RawSettings
-): Record> => {
- const normalizedSettings: Record> = {};
+export const normalizeSettings = (rawSettings: RawSettings): Record => {
+ const normalizedSettings: Record = {};
const entries = Object.entries(rawSettings);
diff --git a/packages/kbn-management/settings/utilities/tsconfig.json b/packages/kbn-management/settings/utilities/tsconfig.json
index 1247d2cd18707..c97a0448689a3 100644
--- a/packages/kbn-management/settings/utilities/tsconfig.json
+++ b/packages/kbn-management/settings/utilities/tsconfig.json
@@ -17,5 +17,6 @@
],
"kbn_references": [
"@kbn/management-settings-types",
+ "@kbn/i18n",
]
}
diff --git a/packages/kbn-management/storybook/config/preview.ts b/packages/kbn-management/storybook/config/preview.ts
index ee65b88614fb9..032af90b7dd5b 100644
--- a/packages/kbn-management/storybook/config/preview.ts
+++ b/packages/kbn-management/storybook/config/preview.ts
@@ -20,3 +20,19 @@ import jest from 'jest-mock';
/* @ts-expect-error TS doesn't see jest as a property of window, and I don't want to edit our global config. */
window.jest = jest;
+
+export const parameters = {
+ backgrounds: {
+ default: 'body',
+ values: [
+ {
+ name: 'body',
+ value: '##f7f8fc',
+ },
+ {
+ name: 'ghost',
+ value: '#fff',
+ },
+ ],
+ },
+};
diff --git a/packages/kbn-optimizer/limits.yml b/packages/kbn-optimizer/limits.yml
index ec34d257eadc2..9b12708a506fc 100644
--- a/packages/kbn-optimizer/limits.yml
+++ b/packages/kbn-optimizer/limits.yml
@@ -4,6 +4,7 @@ pageLoadAssetSize:
aiops: 10000
alerting: 106936
apm: 64385
+ assetManager: 25000
banners: 17946
bfetch: 22837
canvas: 1066647
diff --git a/packages/kbn-securitysolution-autocomplete/src/field_value_match_any/index.tsx b/packages/kbn-securitysolution-autocomplete/src/field_value_match_any/index.tsx
index bccbe24186ab8..aa3cb5dc9a417 100644
--- a/packages/kbn-securitysolution-autocomplete/src/field_value_match_any/index.tsx
+++ b/packages/kbn-securitysolution-autocomplete/src/field_value_match_any/index.tsx
@@ -184,6 +184,7 @@ export const AutocompleteFieldMatchAnyComponent: React.FC
"ingest-agent-policies": "f11cc19275f4c3e4ee7c5cd6423b6706b21b989d",
"ingest-download-sources": "279a68147e62e4d8858c09ad1cf03bd5551ce58d",
"ingest-outputs": "b4e636b13a5d0f89f0400fb67811d4cca4736eb0",
- "ingest-package-policies": "af9e8d523a6f3ae5b8c9adcfba391ff405dfa374",
+ "ingest-package-policies": "8ec637429836f80f1fcc798bcee7c5916eceaed5",
"ingest_manager_settings": "64955ef1b7a9ffa894d4bb9cf863b5602bfa6885",
"inventory-view": "b8683c8e352a286b4aca1ab21003115a4800af83",
"kql-telemetry": "93c1d16c1a0dfca9c8842062cf5ef8f62ae401ad",
@@ -137,7 +137,7 @@ describe('checking migration metadata changes on all registered SO types', () =>
"security-rule": "07abb4d7e707d91675ec0495c73816394c7b521f",
"security-solution-signals-migration": "9d99715fe5246f19de2273ba77debd2446c36bb1",
"siem-detection-engine-rule-actions": "54f08e23887b20da7c805fab7c60bc67c428aff9",
- "siem-ui-timeline": "820b5a7c478cd4d5ae9cd92ce0d05ac988fee69c",
+ "siem-ui-timeline": "2d9925f7286a9e947a008eff8e61118dadd8229b",
"siem-ui-timeline-note": "0a32fb776907f596bedca292b8c646496ae9c57b",
"siem-ui-timeline-pinned-event": "082daa3ce647b33873f6abccf340bdfa32057c8d",
"slo": "2048ab6791df2e1ae0936f29c20765cb8d2fcfaa",
diff --git a/src/plugins/discover/public/application/main/services/discover_app_state_container.test.ts b/src/plugins/discover/public/application/main/services/discover_app_state_container.test.ts
index 80fb6c241b2f5..f93a9fd759da9 100644
--- a/src/plugins/discover/public/application/main/services/discover_app_state_container.test.ts
+++ b/src/plugins/discover/public/application/main/services/discover_app_state_container.test.ts
@@ -6,7 +6,10 @@
* Side Public License, v 1.
*/
+import { createSearchSourceMock } from '@kbn/data-plugin/public/mocks';
+import { dataViewMock } from '@kbn/discover-utils/src/__mocks__';
import { createKbnUrlStateStorage, withNotifyOnErrors } from '@kbn/kibana-utils-plugin/public';
+import type { Filter } from '@kbn/es-query';
import { History } from 'history';
import { savedSearchMock } from '../../../__mocks__/saved_search';
@@ -15,6 +18,7 @@ import {
DiscoverAppStateContainer,
getDiscoverAppStateContainer,
} from './discover_app_state_container';
+import { SavedSearch } from '@kbn/saved-search-plugin/common';
let history: History;
let state: DiscoverAppStateContainer;
@@ -48,4 +52,109 @@ describe('Test discover app state container', () => {
state.set({ index: 'second' });
expect(state.getPrevious()).toEqual(stateA);
});
+
+ describe('getAppStateFromSavedSearch', () => {
+ const customQuery = {
+ language: 'kuery',
+ query: '_id: *',
+ };
+
+ const defaultQuery = {
+ query: '*',
+ language: 'kuery',
+ };
+
+ const customFilter = {
+ $state: {
+ store: 'appState',
+ },
+ meta: {
+ alias: null,
+ disabled: false,
+ field: 'ecs.version',
+ index: 'kibana-event-log-data-view',
+ key: 'ecs.version',
+ negate: false,
+ params: {
+ query: '1.8.0',
+ },
+ type: 'phrase',
+ },
+ query: {
+ match_phrase: {
+ 'ecs.version': '1.8.0',
+ },
+ },
+ } as Filter;
+
+ const localSavedSearchMock = {
+ id: 'the-saved-search-id',
+ title: 'A saved search',
+ breakdownField: 'customBreakDownField',
+ searchSource: createSearchSourceMock({
+ index: dataViewMock,
+ filter: [customFilter],
+ query: customQuery,
+ }),
+ hideChart: true,
+ rowsPerPage: 250,
+ hideAggregatedPreview: true,
+ } as SavedSearch;
+
+ test('should return correct output', () => {
+ const appState = state.getAppStateFromSavedSearch(localSavedSearchMock);
+ expect(appState).toMatchObject(
+ expect.objectContaining({
+ breakdownField: 'customBreakDownField',
+ columns: ['default_column'],
+ filters: [customFilter],
+ grid: undefined,
+ hideChart: true,
+ index: 'the-data-view-id',
+ interval: 'auto',
+ query: customQuery,
+ rowHeight: undefined,
+ rowsPerPage: 250,
+ hideAggregatedPreview: true,
+ savedQuery: undefined,
+ sort: [],
+ viewMode: undefined,
+ })
+ );
+ });
+
+ test('should return default query if query is undefined', () => {
+ discoverServiceMock.data.query.queryString.getDefaultQuery = jest
+ .fn()
+ .mockReturnValue(defaultQuery);
+ const newSavedSearchMock = {
+ id: 'new-saved-search-id',
+ title: 'A saved search',
+ searchSource: createSearchSourceMock({
+ index: dataViewMock,
+ filter: [customFilter],
+ query: undefined,
+ }),
+ };
+ const appState = state.getAppStateFromSavedSearch(newSavedSearchMock);
+ expect(appState).toMatchObject(
+ expect.objectContaining({
+ breakdownField: undefined,
+ columns: ['default_column'],
+ filters: [customFilter],
+ grid: undefined,
+ hideChart: undefined,
+ index: 'the-data-view-id',
+ interval: 'auto',
+ query: defaultQuery,
+ rowHeight: undefined,
+ rowsPerPage: undefined,
+ hideAggregatedPreview: undefined,
+ savedQuery: undefined,
+ sort: [],
+ viewMode: undefined,
+ })
+ );
+ });
+ });
});
diff --git a/src/plugins/discover/public/application/main/services/discover_app_state_container.ts b/src/plugins/discover/public/application/main/services/discover_app_state_container.ts
index 47cd216b1547e..046e8fd6393f1 100644
--- a/src/plugins/discover/public/application/main/services/discover_app_state_container.ts
+++ b/src/plugins/discover/public/application/main/services/discover_app_state_container.ts
@@ -73,6 +73,12 @@ export interface DiscoverAppStateContainer extends ReduxLikeStateContainer void;
+
+ /*
+ * Get updated AppState when given a saved search
+ *
+ * */
+ getAppStateFromSavedSearch: (newSavedSearch: SavedSearch) => DiscoverAppState;
}
export interface DiscoverAppState {
@@ -170,6 +176,13 @@ export const getDiscoverAppStateContainer = ({
return !isEqualState(initialState, appStateContainer.getState());
};
+ const getAppStateFromSavedSearch = (newSavedSearch: SavedSearch) => {
+ return getStateDefaults({
+ savedSearch: newSavedSearch,
+ services,
+ });
+ };
+
const resetToState = (state: DiscoverAppState) => {
addLog('[appState] reset state to', state);
previousState = state;
@@ -260,6 +273,7 @@ export const getDiscoverAppStateContainer = ({
replaceUrlState,
syncState: startAppStateUrlSync,
update,
+ getAppStateFromSavedSearch,
};
};
diff --git a/src/plugins/discover/public/application/main/services/discover_state.ts b/src/plugins/discover/public/application/main/services/discover_state.ts
index d6e2809c14bd6..bb0fbed792d64 100644
--- a/src/plugins/discover/public/application/main/services/discover_state.ts
+++ b/src/plugins/discover/public/application/main/services/discover_state.ts
@@ -50,7 +50,10 @@ import {
DiscoverSavedSearchContainer,
} from './discover_saved_search_container';
import { updateFiltersReferences } from '../utils/update_filter_references';
-import { getDiscoverGlobalStateContainer } from './discover_global_state_container';
+import {
+ getDiscoverGlobalStateContainer,
+ DiscoverGlobalStateContainer,
+} from './discover_global_state_container';
interface DiscoverStateContainerParams {
/**
* Browser history
@@ -87,6 +90,11 @@ export interface LoadParams {
}
export interface DiscoverStateContainer {
+ /**
+ * Global State, the _g part of the URL
+ */
+ globalState: DiscoverGlobalStateContainer;
+
/**
* App state, the _a part of the URL
*/
@@ -460,6 +468,7 @@ export function getDiscoverStateContainer({
};
return {
+ globalState: globalStateContainer,
appState: appStateContainer,
internalState: internalStateContainer,
dataState: dataStateContainer,
diff --git a/src/plugins/discover/public/mocks.tsx b/src/plugins/discover/public/mocks.tsx
index ae2bc4fa547fd..e97c8f5a841a2 100644
--- a/src/plugins/discover/public/mocks.tsx
+++ b/src/plugins/discover/public/mocks.tsx
@@ -9,6 +9,7 @@
import React from 'react';
import { sharePluginMock } from '@kbn/share-plugin/public/mocks';
import { DiscoverSetup, DiscoverStart } from '.';
+import { getDiscoverStateMock } from './__mocks__/discover_state.mock';
export type Setup = jest.Mocked;
export type Start = jest.Mocked;
@@ -32,4 +33,5 @@ const createStartContract = (): Start => {
export const discoverPluginMock = {
createSetupContract,
createStartContract,
+ getDiscoverStateMock,
};
diff --git a/src/plugins/saved_objects_tagging_oss/common/types.ts b/src/plugins/saved_objects_tagging_oss/common/types.ts
index e62639659b5f4..046e187a6b9d7 100644
--- a/src/plugins/saved_objects_tagging_oss/common/types.ts
+++ b/src/plugins/saved_objects_tagging_oss/common/types.ts
@@ -35,6 +35,7 @@ export interface ITagsClient {
create(attributes: TagAttributes, options?: CreateTagOptions): Promise;
get(id: string): Promise;
getAll(options?: GetAllTagsOptions): Promise;
+ findByName(name: string, options?: { exact?: boolean }): Promise;
delete(id: string): Promise;
update(id: string, attributes: TagAttributes): Promise;
}
diff --git a/src/plugins/saved_objects_tagging_oss/public/api.mock.ts b/src/plugins/saved_objects_tagging_oss/public/api.mock.ts
index e96aa2277b0a5..f481319ec7fb0 100644
--- a/src/plugins/saved_objects_tagging_oss/public/api.mock.ts
+++ b/src/plugins/saved_objects_tagging_oss/public/api.mock.ts
@@ -16,6 +16,7 @@ const createClientMock = () => {
getAll: jest.fn(),
delete: jest.fn(),
update: jest.fn(),
+ findByName: jest.fn(),
};
return mock;
diff --git a/test/plugin_functional/test_suites/core_plugins/rendering.ts b/test/plugin_functional/test_suites/core_plugins/rendering.ts
index 94af20ff4f86b..ca639ed3272fd 100644
--- a/test/plugin_functional/test_suites/core_plugins/rendering.ts
+++ b/test/plugin_functional/test_suites/core_plugins/rendering.ts
@@ -197,6 +197,7 @@ export default function ({ getService }: PluginFunctionalProviderContext) {
'xpack.apm.featureFlags.sourcemapApiAvailable (any)',
'xpack.apm.featureFlags.storageExplorerAvailable (any)',
'xpack.apm.serverless.enabled (any)', // It's a boolean (any because schema.conditional)
+ 'xpack.assetManager.alphaEnabled (boolean)',
'xpack.observability_onboarding.serverless.enabled (any)', // It's a boolean (any because schema.conditional)
'xpack.cases.files.allowedMimeTypes (array)',
'xpack.cases.files.maxSize (number)',
diff --git a/tsconfig.base.json b/tsconfig.base.json
index bb2aec9d5819f..02071396e272f 100644
--- a/tsconfig.base.json
+++ b/tsconfig.base.json
@@ -962,6 +962,8 @@
"@kbn/management-cards-navigation/*": ["packages/kbn-management/cards_navigation/*"],
"@kbn/management-plugin": ["src/plugins/management"],
"@kbn/management-plugin/*": ["src/plugins/management/*"],
+ "@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"],
diff --git a/x-pack/plugins/asset_manager/README.md b/x-pack/plugins/asset_manager/README.md
index f82f174af471c..d73bfbb53b087 100644
--- a/x-pack/plugins/asset_manager/README.md
+++ b/x-pack/plugins/asset_manager/README.md
@@ -1,39 +1,13 @@
# Asset Manager Plugin
-This plugin provides access to the asset data stored in assets-\* indices, primarily
-for inventory and topology purposes.
+This plugin provides access to observed asset data, such as information about hosts, pods, containers, services, and more.
## Documentation
-See [docs for the provided APIs in the docs folder](./docs/index.md).
+### User Docs
-## Running Tests
+For those interested in making use of the APIs provided by this plugin, see [our API docs](./docs/api.md).
-There are integration tests for the endpoints implemented thus far as well as for
-the sample data tests. There is also a small set of tests meant to ensure that the
-plugin is not doing anything without the proper config value in place to enable
-the plugin fully. For more on enabling the plugin, see [the docs page](./docs/index.md).
+### Developer Docs
-The "not enabled" tests are run by default in CI. To run them manually, do the following:
-
-```shell
-$ node scripts/functional_tests_server --config x-pack/test/api_integration/apis/asset_manager/config_when_disabled.ts
-$ node scripts/functional_test_runner --config=x-pack/test/api_integration/apis/asset_manager/config_when_disabled.ts
-```
-
-The "enabled" tests are NOT run by CI yet, to prevent blocking Kibana development for a
-test failure in this alpha, tech preview plugin. They will be moved into the right place
-to make them run for CI before the plugin is enabled by default. To run them manually:
-
-```shell
-$ node scripts/functional_tests_server --config x-pack/test/api_integration/apis/asset_manager/config.ts
-$ node scripts/functional_test_runner --config=x-pack/test/api_integration/apis/asset_manager/config.ts
-```
-
-## Using Sample Data
-
-This plugin comes with a full "working set" of sample asset documents, meant
-to provide enough data in the correct schema format so that all of the API
-endpoints return expected values.
-
-To create the sample data, follow [the instructions in the REST API docs](./docs/index.md#sample-data).
+For those working on this plugin directly and developing it, please see [our development docs](./docs/development.md).
diff --git a/x-pack/plugins/asset_manager/common/config.ts b/x-pack/plugins/asset_manager/common/config.ts
new file mode 100644
index 0000000000000..0a57e37d497bb
--- /dev/null
+++ b/x-pack/plugins/asset_manager/common/config.ts
@@ -0,0 +1,56 @@
+/*
+ * Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one
+ * or more contributor license agreements. Licensed under the Elastic License
+ * 2.0; you may not use this file except in compliance with the Elastic License
+ * 2.0.
+ */
+
+import { schema, TypeOf } from '@kbn/config-schema';
+
+export const INDEX_DEFAULTS = {
+ logs: 'filebeat-*,logs-*',
+};
+
+export const configSchema = schema.object({
+ alphaEnabled: schema.maybe(schema.boolean()),
+ // Designate where various types of data live.
+ // NOTE: this should be handled in a centralized way for observability, so
+ // that when a user configures these differently from the known defaults,
+ // that value is propagated everywhere. For now, we duplicate the value here.
+ sourceIndices: schema.object(
+ {
+ logs: schema.string({ defaultValue: INDEX_DEFAULTS.logs }),
+ },
+ { defaultValue: INDEX_DEFAULTS }
+ ),
+ // Choose an explicit source for asset queries.
+ // NOTE: This will eventually need to be able to cleverly switch
+ // between these values based on the availability of data in the
+ // indices, and possibly for each asset kind/type value.
+ // For now, we set this explicitly.
+ lockedSource: schema.oneOf([schema.literal('assets'), schema.literal('signals')], {
+ defaultValue: 'signals',
+ }),
+});
+
+export type AssetManagerConfig = TypeOf;
+
+/**
+ * The following map is passed to the server plugin setup under the
+ * exposeToBrowser: option, and controls which of the above config
+ * keys are allow-listed to be available in the browser config.
+ *
+ * NOTE: anything exposed here will be visible in the UI dev tools,
+ * and therefore MUST NOT be anything that is sensitive information!
+ */
+export const exposeToBrowserConfig = {
+ alphaEnabled: true,
+} as const;
+
+type ValidKeys = keyof {
+ [K in keyof typeof exposeToBrowserConfig as typeof exposeToBrowserConfig[K] extends true
+ ? K
+ : never]: true;
+};
+
+export type AssetManagerPublicConfig = Pick;
diff --git a/x-pack/plugins/asset_manager/common/constants_routes.ts b/x-pack/plugins/asset_manager/common/constants_routes.ts
new file mode 100644
index 0000000000000..1aef43f7383bd
--- /dev/null
+++ b/x-pack/plugins/asset_manager/common/constants_routes.ts
@@ -0,0 +1,18 @@
+/*
+ * Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one
+ * or more contributor license agreements. Licensed under the Elastic License
+ * 2.0; you may not use this file except in compliance with the Elastic License
+ * 2.0.
+ */
+
+export const ASSET_MANAGER_API_BASE = '/api/asset-manager';
+
+function base(path: string) {
+ return `${ASSET_MANAGER_API_BASE}${path}`;
+}
+
+export const GET_ASSETS = base('/assets');
+export const GET_RELATED_ASSETS = base('/assets/related');
+export const GET_ASSETS_DIFF = base('/assets/diff');
+
+export const GET_HOSTS = base('/assets/hosts');
diff --git a/x-pack/plugins/asset_manager/common/types_api.ts b/x-pack/plugins/asset_manager/common/types_api.ts
index 8e9e9181a29e4..11b5ea4bda3a4 100644
--- a/x-pack/plugins/asset_manager/common/types_api.ts
+++ b/x-pack/plugins/asset_manager/common/types_api.ts
@@ -6,77 +6,111 @@
*/
import * as rt from 'io-ts';
-
-export const assetTypeRT = rt.union([
- rt.literal('k8s.pod'),
- rt.literal('k8s.cluster'),
- rt.literal('k8s.node'),
-]);
+import {
+ dateRt,
+ inRangeFromStringRt,
+ datemathStringRt,
+ createLiteralValueFromUndefinedRT,
+} from '@kbn/io-ts-utils';
+
+export const assetTypeRT = rt.keyof({
+ 'k8s.pod': null,
+ 'k8s.cluster': null,
+ 'k8s.node': null,
+});
export type AssetType = rt.TypeOf;
-export const assetKindRT = rt.union([
- rt.literal('cluster'),
- rt.literal('host'),
- rt.literal('pod'),
- rt.literal('container'),
- rt.literal('service'),
- rt.literal('alert'),
-]);
+export const assetKindRT = rt.keyof({
+ cluster: null,
+ host: null,
+ pod: null,
+ container: null,
+ service: null,
+ alert: null,
+});
export type AssetKind = rt.TypeOf;
-export type AssetStatus =
- | 'CREATING'
- | 'ACTIVE'
- | 'DELETING'
- | 'FAILED'
- | 'UPDATING'
- | 'PENDING'
- | 'UNKNOWN';
-export type CloudProviderName = 'aws' | 'gcp' | 'azure' | 'other' | 'unknown' | 'none';
-
-interface WithTimestamp {
- '@timestamp': string;
-}
-export interface ECSDocument extends WithTimestamp {
- 'kubernetes.namespace'?: string;
- 'kubernetes.pod.name'?: string;
- 'kubernetes.pod.uid'?: string;
- 'kubernetes.pod.start_time'?: Date;
- 'kubernetes.node.name'?: string;
- 'kubernetes.node.start_time'?: Date;
-
- 'orchestrator.api_version'?: string;
- 'orchestrator.namespace'?: string;
- 'orchestrator.organization'?: string;
- 'orchestrator.type'?: string;
- 'orchestrator.cluster.id'?: string;
- 'orchestrator.cluster.name'?: string;
- 'orchestrator.cluster.url'?: string;
- 'orchestrator.cluster.version'?: string;
-
- 'cloud.provider'?: CloudProviderName;
- 'cloud.instance.id'?: string;
- 'cloud.region'?: string;
- 'cloud.service.name'?: string;
-
- 'service.environment'?: string;
-}
+export const assetStatusRT = rt.keyof({
+ CREATING: null,
+ ACTIVE: null,
+ DELETING: null,
+ FAILED: null,
+ UPDATING: null,
+ PENDING: null,
+ UNKNOWN: null,
+});
+
+export type AssetStatus = rt.TypeOf;
+
+// https://github.com/gcanti/io-ts/blob/master/index.md#union-of-string-literals
+export const cloudProviderNameRT = rt.keyof({
+ aws: null,
+ gcp: null,
+ azure: null,
+ other: null,
+ unknown: null,
+ none: null,
+});
+
+export type CloudProviderName = rt.TypeOf;
+
+const withTimestampRT = rt.type({
+ '@timestamp': rt.string,
+});
+
+export type WithTimestamp = rt.TypeOf;
+
+export const ECSDocumentRT = rt.intersection([
+ withTimestampRT,
+ rt.partial({
+ 'kubernetes.namespace': rt.string,
+ 'kubernetes.pod.name': rt.string,
+ 'kubernetes.pod.uid': rt.string,
+ 'kubernetes.pod.start_time': rt.string,
+ 'kubernetes.node.name': rt.string,
+ 'kubernetes.node.start_time': rt.string,
+ 'orchestrator.api_version': rt.string,
+ 'orchestrator.namespace': rt.string,
+ 'orchestrator.organization': rt.string,
+ 'orchestrator.type': rt.string,
+ 'orchestrator.cluster.id': rt.string,
+ 'orchestrator.cluster.name': rt.string,
+ 'orchestrator.cluster.url': rt.string,
+ 'orchestrator.cluster.version': rt.string,
+ 'cloud.provider': cloudProviderNameRT,
+ 'cloud.instance.id': rt.string,
+ 'cloud.region': rt.string,
+ 'cloud.service.name': rt.string,
+ 'service.environment': rt.string,
+ }),
+]);
-export interface Asset extends ECSDocument {
- 'asset.collection_version'?: string;
- 'asset.ean': string;
- 'asset.id': string;
- 'asset.kind': AssetKind;
- 'asset.name'?: string;
- 'asset.type'?: AssetType;
- 'asset.status'?: AssetStatus;
- 'asset.parents'?: string | string[];
- 'asset.children'?: string | string[];
- 'asset.references'?: string | string[];
- 'asset.namespace'?: string;
-}
+export type ECSDocument = rt.TypeOf;
+
+export const assetRT = rt.intersection([
+ ECSDocumentRT,
+ rt.type({
+ 'asset.ean': rt.string,
+ 'asset.id': rt.string,
+ 'asset.kind': assetKindRT,
+ }),
+ // mixed required and optional require separate hashes combined via intersection
+ // https://github.com/gcanti/io-ts/blob/master/index.md#mixing-required-and-optional-props
+ rt.partial({
+ 'asset.collection_version': rt.string,
+ 'asset.name': rt.string,
+ 'asset.type': assetTypeRT,
+ 'asset.status': assetStatusRT,
+ 'asset.parents': rt.union([rt.string, rt.array(rt.string)]),
+ 'asset.children': rt.union([rt.string, rt.array(rt.string)]),
+ 'asset.references': rt.union([rt.string, rt.array(rt.string)]),
+ 'asset.namespace': rt.string,
+ }),
+]);
+
+export type Asset = rt.TypeOf;
export type AssetWithoutTimestamp = Omit;
@@ -156,3 +190,22 @@ export type RelationField = keyof Pick<
Asset,
'asset.children' | 'asset.parents' | 'asset.references'
>;
+
+export const sizeRT = rt.union([
+ inRangeFromStringRt(1, 100),
+ createLiteralValueFromUndefinedRT(10),
+]);
+export const assetDateRT = rt.union([dateRt, datemathStringRt]);
+export const getHostAssetsQueryOptionsRT = rt.exact(
+ rt.partial({
+ from: assetDateRT,
+ to: assetDateRT,
+ size: sizeRT,
+ })
+);
+export type GetHostAssetsQueryOptions = rt.TypeOf;
+
+export const getHostAssetsResponseRT = rt.type({
+ hosts: rt.array(assetRT),
+});
+export type GetHostAssetsResponse = rt.TypeOf;
diff --git a/x-pack/plugins/asset_manager/common/types_client.ts b/x-pack/plugins/asset_manager/common/types_client.ts
new file mode 100644
index 0000000000000..350a168da8965
--- /dev/null
+++ b/x-pack/plugins/asset_manager/common/types_client.ts
@@ -0,0 +1,17 @@
+/*
+ * Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one
+ * or more contributor license agreements. Licensed under the Elastic License
+ * 2.0; you may not use this file except in compliance with the Elastic License
+ * 2.0.
+ */
+
+export interface GetHostsOptionsPublic {
+ from: string;
+ to: string;
+}
+
+export interface GetServicesOptionsPublic {
+ from: string;
+ to: string;
+ parent?: string;
+}
diff --git a/x-pack/plugins/asset_manager/docs/api.md b/x-pack/plugins/asset_manager/docs/api.md
new file mode 100644
index 0000000000000..755abfe4be373
--- /dev/null
+++ b/x-pack/plugins/asset_manager/docs/api.md
@@ -0,0 +1,187 @@
+# Asset Manager API Documentation
+
+## Plugin configuration
+
+This plugin is NOT fully enabled by default, even though it's always enabled
+by Kibana's definition of "enabled". However, without the following configuration,
+it will bail before it sets up any routes or returns anything from its
+start, setup, or stop hooks.
+
+To fully enable the plugin, set the following config values in your kibana.yml file:
+
+```yaml
+xpack.assetManager:
+ alphaEnabled: true
+```
+
+## Depending on an asset client in your packages
+
+If you're creating a shared UI component or tool that needs to access asset data, you
+can create that code in a stateless Kibana package that can itself be imported into
+any Kibana plugin without any dependency restrictions. To gain access to the asset data,
+this component or tool can require the appropriate asset client to be passed in.
+
+TODO: need to move main client types to a package so that they can be depended on by
+other packages that require an injected asset client. Then we can list that package name
+here and explain how to use those types in a package.
+
+## Client APIs
+
+This plugin provides asset clients for Kibana server and public usage. The differences between these
+two clients are described below in their sections, while the methods for both APIs are described
+in the Client Methods section.
+
+These clients are set up in the following way. For a given "methodA":
+
+```
+publicMethodA(...options: MethodAPublicOptions)
+ -> browser client calls corresponding REST API method with MethodAPublicOptions
+ -> REST API handler calls corresponding serverMethodA
+ -> serverMethodA requires MethodAPublicOptions & AssetClientDependencies, and it also
+ injects some internal dependencies from the plugin's config on your behalf
+```
+
+The public and server clientss are both accessible to plugin dependants, but the REST API is NOT.
+
+### Required dependency setup
+
+To use either client, you must first add "assetManager" to your `"requiredDependencies"` array
+in your plugin's kibana.jsonc file.
+
+TECH PREVIEW NOTE: While this plugin is in "tech preview", in both the server and public clients,
+the provided plugin dependencies can be undefined for this plugin if the proper configuration
+has not been set (see above). For that reason, the types will force you to guard against this
+undefined scenario. Once the tech preview gating is removed, this will no longer be the case.
+
+### Server client usage
+
+In your plugin's `setup` method, you can gain access to the client from the injected `plugins` map.
+Make sure you import the `AssetManagerServerPluginSetup` type from the plugin's server
+directory and add it to your own SetupPlugins type, as seen below.
+
+```ts
+import { AssetManagerServerPluginSetup } from '@kbn/assetManager-plugin/server';
+
+interface MyPluginSetupDeps {
+ assetManager: AssetManagerServerPluginSetup;
+}
+
+class MyPlugin {
+ setup(core: CoreSetup, plugins: MyPluginSetupDeps) {
+ // assetClient is found on plugins.assetManager.assetClient
+ setupRoutes(router, plugins);
+ }
+}
+```
+
+To use the server client in your server routes, you can use something like this:
+
+```ts
+export function setupRoutes(router: IRouter, plugins: MyPluginDeps) {
+ router.get(
+ {
+ path: '/my/path',
+ validate: {},
+ },
+ async (context, req, res) => {
+ // handle route
+ // optionally, use asset client
+ // NOTE: see below for important info on required server client args
+ const hosts = await plugins.assetManager.assetClient.getHosts();
+ }
+ );
+}
+```
+
+#### Required parameters for server client methods
+
+All methods called via the server client require some core Kibana clients to be passed in,
+so that they are pulled from the request context and properly scoped. If the asset manager
+plugin provided these clients internally, they would not be scoped to the user that made
+the API request, so they are required arguments for every server client method.
+
+_Note: These required arguments are referred to as `AssetClientDependencies`, which can be
+seen in the [the server types file](../server/types.ts)._
+
+For example:
+
+```ts
+router.get(
+ {
+ path: '/my/path',
+ validate: {},
+ },
+ async (context, req, res) => {
+ // to use server asset client, you must get the following clients
+ // from the request context and pass them to the client method
+ // alongside whatever "public" arguments that method defines
+ const coreContext = await context.core;
+ const hostsOptions: PublicGetHostsOptions = {}; // these will be different for each method
+
+ const hosts = await plugins.assetManager.assetClient.getHosts({
+ ...hostsOptions,
+ elasticsearchClient: coreContext.elasticsearch.client.asCurrentUser,
+ savedObjectsClient: coreContext.savedObjects.client,
+ });
+ }
+);
+```
+
+### Public client usage
+
+You should grab the public client in the same way as the server one, via the plugin dependencies
+in your `setup` lifecycle.
+
+```ts
+import { AssetManagerPublicPluginStart } from '@kbn/assetManager-plugin/public';
+
+interface MyPluginStartDeps {
+ assetManager: AssetManagerPublicPluginStart;
+}
+
+class MyPlugin {
+ setup(core: CoreSetup) {
+ core.application.register({
+ id: 'my-other-plugin',
+ title: '',
+ appRoute: '/app/my-other-plugin',
+ mount: async (params: AppMountParameters) => {
+ // mount callback should not use setup dependencies, get start dependencies instead
+ // so the pluginStart map passed to your renderApp method will be the start deps,
+ // not the setup deps -- the same asset client is provided to both setup and start in public
+ const [coreStart, , pluginStart] = await core.getStartServices();
+ // assetClient is found on pluginStart.assetManager.assetClient
+ return renderApp(coreStart, pluginStart, params);
+ },
+ });
+ }
+}
+```
+
+All methods in the public client only require their public options (seen below), and don't require
+the "AssetClientDependencies" that are required for the server client versions of the same methods.
+This is because the public client will use the asset manager's internal REST API under the hood, where
+it will be able to pull the properly-scoped client dependencies off of that request context for you.
+
+### Client methods
+
+#### getHosts
+
+Get a group of host assets found within a specified time range.
+
+| Parameter | Type | Required? | Description |
+| :-------- | :-------------- | :-------- | :--------------------------------------------------------------------- |
+| from | datetime string | yes | ISO date string representing the START of the time range being queried |
+| to | datetime string | yes | ISO date string representing the END of the time range being queried |
+
+**Response**
+
+```json
+{
+ "hosts": [
+ ...found host assets
+ ]
+}
+```
+
+TODO: Link to a centralized asset document example that each response can reference?
diff --git a/x-pack/plugins/asset_manager/docs/development.md b/x-pack/plugins/asset_manager/docs/development.md
new file mode 100644
index 0000000000000..a98e8e46a8ce4
--- /dev/null
+++ b/x-pack/plugins/asset_manager/docs/development.md
@@ -0,0 +1,34 @@
+# Asset Manager Plugin Development
+
+These docs contain information you might need if you are developing this plugin in Kibana. If you are interested in the APIs this plugin exposes, please see [./api.md](our API docs) instead.
+
+## Running Tests
+
+There are integration tests for the endpoints implemented thus far as well as for
+the sample data tests. There is also a small set of tests meant to ensure that the
+plugin is not doing anything without the proper config value in place to enable
+the plugin fully. For more on enabling the plugin, see [the docs page](./docs/index.md).
+
+The "not enabled" tests are run by default in CI. To run them manually, do the following:
+
+```shell
+$ node scripts/functional_tests_server --config x-pack/test/api_integration/apis/asset_manager/config_when_disabled.ts
+$ node scripts/functional_test_runner --config=x-pack/test/api_integration/apis/asset_manager/config_when_disabled.ts
+```
+
+The "enabled" tests are NOT run by CI yet, to prevent blocking Kibana development for a
+test failure in this alpha, tech preview plugin. They will be moved into the right place
+to make them run for CI before the plugin is enabled by default. To run them manually:
+
+```shell
+$ node scripts/functional_tests_server --config x-pack/test/api_integration/apis/asset_manager/config.ts
+$ node scripts/functional_test_runner --config=x-pack/test/api_integration/apis/asset_manager/config.ts
+```
+
+## Using Sample Data
+
+This plugin comes with a full "working set" of sample asset documents, meant
+to provide enough data in the correct schema format so that all of the API
+endpoints return expected values.
+
+To create the sample data, follow [the instructions in the REST API docs](./docs/index.md#sample-data).
diff --git a/x-pack/plugins/asset_manager/docs/index.md b/x-pack/plugins/asset_manager/docs/rest_deprecated.md
similarity index 93%
rename from x-pack/plugins/asset_manager/docs/index.md
rename to x-pack/plugins/asset_manager/docs/rest_deprecated.md
index 790beb87b4f7e..43a5f74a0d058 100644
--- a/x-pack/plugins/asset_manager/docs/index.md
+++ b/x-pack/plugins/asset_manager/docs/rest_deprecated.md
@@ -1,24 +1,6 @@
-# Asset Manager Documentation
+## Deprecated REST API docs
-_Note:_ To read about development guidance around testing, sample data, etc., see the
-[plugin's main README file](../README.md)
-
-## Alpha Configuration
-
-This plugin is NOT fully enabled by default, even though it's always enabled
-by Kibana's definition of "enabled". However, without the following configuration,
-it will bail before it sets up any routes or returns anything from its
-start, setup, or stop hooks.
-
-To fully enable the plugin, set the following config value in your kibana.yml file:
-
-```yaml
-xpack.assetManager.alphaEnabled: true
-```
-
-## APIs
-
-This plugin provides the following APIs.
+These docs are not being currently maintained because they pertain to an internal REST API. Please see [our docs for our API clients](./api.md) instead.
### Shared Types
@@ -58,16 +40,16 @@ Returns a list of assets present within a given time range. Can be limited by as
##### Request
-| Option | Type | Required? | Default | Description |
-| :------ | :------------ | :-------- | :------ | :--------------------------------------------------------------------------------- |
-| from | RangeDate | No | "now-24h" | Starting point for date range to search for assets within |
-| to | RangeDate | No | "now" | End point for date range to search for assets |
-| type | AssetType[] | No | all | Specify one or more types to restrict the query |
-| ean | AssetEan[] | No | all | Specify one or more EANs (specific assets) to restrict the query |
-| size | number | No | all | Limit the amount of assets returned |
-
+| Option | Type | Required? | Default | Description |
+| :----- | :---------- | :-------- | :-------- | :--------------------------------------------------------------- |
+| from | RangeDate | No | "now-24h" | Starting point for date range to search for assets within |
+| to | RangeDate | No | "now" | End point for date range to search for assets |
+| type | AssetType[] | No | all | Specify one or more types to restrict the query |
+| ean | AssetEan[] | No | all | Specify one or more EANs (specific assets) to restrict the query |
+| size | number | No | all | Limit the amount of assets returned |
_Notes:_
+
- User cannot specify both type and ean at the same time.
- For array types such as `type` and `ean`, user should specify the query parameter multiple times, e.g. `type=k8s.pod&type=k8s.node`
@@ -410,15 +392,15 @@ GET kbn:/api/asset-manager/assets?from=2023-03-25T17:44:44.000Z&to=2023-03-25T18
Returns assets found in the two time ranges, split by what occurs in only either or in both.
-#### Request
+#### Request
-| Option | Type | Required? | Default | Description |
-| :--- | :--- | :--- | :--- | :--- |
-| aFrom | RangeDate | Yes | N/A | Starting point for baseline date range to search for assets within |
-| aTo | RangeDate | Yes | N/A | End point for baseline date range to search for assets within |
-| bFrom | RangeDate | Yes | N/A | Starting point for comparison date range |
-| bTo | RangeDate | Yes | N/A | End point for comparison date range |
-| type | AssetType[] | No | all | Restrict results to one or more asset.type value |
+| Option | Type | Required? | Default | Description |
+| :----- | :---------- | :-------- | :------ | :----------------------------------------------------------------- |
+| aFrom | RangeDate | Yes | N/A | Starting point for baseline date range to search for assets within |
+| aTo | RangeDate | Yes | N/A | End point for baseline date range to search for assets within |
+| bFrom | RangeDate | Yes | N/A | Starting point for comparison date range |
+| bTo | RangeDate | Yes | N/A | End point for comparison date range |
+| type | AssetType[] | No | all | Restrict results to one or more asset.type value |
#### Responses
@@ -1044,14 +1026,14 @@ Returns assets related to the provided ean. The relation can be one of ancestors
#### Request
-| Option | Type | Required? | Default | Description |
-| :--- | :--- | :--- | :--- | :--- |
-| relation | string | Yes | N/A | The type of related assets we're looking for. One of (ancestors|descendants|references) |
-| from | RangeDate | Yes | N/A | Starting point for date range to search for assets within |
-| to | RangeDate | No | "now" | End point for date range to search for assets |
-| ean | AssetEan | Yes | N/A | Single Elastic Asset Name representing the asset for which the related assets are being requested |
-| type | AssetType[] | No | all | Restrict results to one or more asset.type value |
-| maxDistance | number (1-5) | No | 1 | Maximum number of "hops" to search away from specified asset |
+| Option | Type | Required? | Default | Description |
+| :---------- | :----------- | :-------- | :------ | :------------------------------------------------------------------------------------------------ | ----------- | ----------- |
+| relation | string | Yes | N/A | The type of related assets we're looking for. One of (ancestors | descendants | references) |
+| from | RangeDate | Yes | N/A | Starting point for date range to search for assets within |
+| to | RangeDate | No | "now" | End point for date range to search for assets |
+| ean | AssetEan | Yes | N/A | Single Elastic Asset Name representing the asset for which the related assets are being requested |
+| type | AssetType[] | No | all | Restrict results to one or more asset.type value |
+| maxDistance | number (1-5) | No | 1 | Maximum number of "hops" to search away from specified asset |
#### Responses
diff --git a/x-pack/plugins/asset_manager/kibana.jsonc b/x-pack/plugins/asset_manager/kibana.jsonc
index 49b1b59838d9c..b3fcd1b3a4fa1 100644
--- a/x-pack/plugins/asset_manager/kibana.jsonc
+++ b/x-pack/plugins/asset_manager/kibana.jsonc
@@ -15,7 +15,7 @@
"apmDataAccess",
"metricsDataAccess"
],
- "browser": false,
+ "browser": true,
"server": true,
"requiredBundles": [
]
diff --git a/x-pack/plugins/asset_manager/public/index.ts b/x-pack/plugins/asset_manager/public/index.ts
new file mode 100644
index 0000000000000..7837c00909430
--- /dev/null
+++ b/x-pack/plugins/asset_manager/public/index.ts
@@ -0,0 +1,20 @@
+/*
+ * Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one
+ * or more contributor license agreements. Licensed under the Elastic License
+ * 2.0; you may not use this file except in compliance with the Elastic License
+ * 2.0.
+ */
+
+import { PluginInitializer, PluginInitializerContext } from '@kbn/core/public';
+import { Plugin } from './plugin';
+import { AssetManagerPublicPluginSetup, AssetManagerPublicPluginStart } from './types';
+
+export const plugin: PluginInitializer<
+ AssetManagerPublicPluginSetup | undefined,
+ AssetManagerPublicPluginStart | undefined
+> = (context: PluginInitializerContext) => {
+ return new Plugin(context);
+};
+
+export type { AssetManagerPublicPluginSetup, AssetManagerPublicPluginStart };
+export type AssetManagerAppId = 'assetManager';
diff --git a/x-pack/plugins/asset_manager/public/lib/public_assets_client.test.ts b/x-pack/plugins/asset_manager/public/lib/public_assets_client.test.ts
new file mode 100644
index 0000000000000..93cc541a34af4
--- /dev/null
+++ b/x-pack/plugins/asset_manager/public/lib/public_assets_client.test.ts
@@ -0,0 +1,48 @@
+/*
+ * Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one
+ * or more contributor license agreements. Licensed under the Elastic License
+ * 2.0; you may not use this file except in compliance with the Elastic License
+ * 2.0.
+ */
+
+import { HttpSetupMock } from '@kbn/core-http-browser-mocks';
+import { coreMock } from '@kbn/core/public/mocks';
+import { PublicAssetsClient } from './public_assets_client';
+import * as routePaths from '../../common/constants_routes';
+
+describe('Public assets client', () => {
+ let http: HttpSetupMock = coreMock.createSetup().http;
+
+ beforeEach(() => {
+ http = coreMock.createSetup().http;
+ });
+
+ describe('class instantiation', () => {
+ it('should successfully instantiate', () => {
+ new PublicAssetsClient(http);
+ });
+ });
+
+ describe('getHosts', () => {
+ it('should call the REST API', async () => {
+ const client = new PublicAssetsClient(http);
+ await client.getHosts({ from: 'x', to: 'y' });
+ expect(http.get).toBeCalledTimes(1);
+ });
+
+ it('should include specified "from" and "to" parameters in http.get query', async () => {
+ const client = new PublicAssetsClient(http);
+ await client.getHosts({ from: 'x', to: 'y' });
+ expect(http.get).toBeCalledWith(routePaths.GET_HOSTS, {
+ query: { from: 'x', to: 'y' },
+ });
+ });
+
+ it('should return the direct results of http.get', async () => {
+ const client = new PublicAssetsClient(http);
+ http.get.mockResolvedValueOnce('my result');
+ const result = await client.getHosts({ from: 'x', to: 'y' });
+ expect(result).toBe('my result');
+ });
+ });
+});
diff --git a/x-pack/plugins/asset_manager/public/lib/public_assets_client.ts b/x-pack/plugins/asset_manager/public/lib/public_assets_client.ts
new file mode 100644
index 0000000000000..dd18386868f94
--- /dev/null
+++ b/x-pack/plugins/asset_manager/public/lib/public_assets_client.ts
@@ -0,0 +1,26 @@
+/*
+ * Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one
+ * or more contributor license agreements. Licensed under the Elastic License
+ * 2.0; you may not use this file except in compliance with the Elastic License
+ * 2.0.
+ */
+
+import { HttpStart } from '@kbn/core/public';
+import { GetHostsOptionsPublic } from '../../common/types_client';
+import { GetHostAssetsResponse } from '../../common/types_api';
+import { GET_HOSTS } from '../../common/constants_routes';
+import { IPublicAssetsClient } from '../types';
+
+export class PublicAssetsClient implements IPublicAssetsClient {
+ constructor(private readonly http: HttpStart) {}
+
+ async getHosts(options: GetHostsOptionsPublic) {
+ const results = await this.http.get(GET_HOSTS, {
+ query: {
+ ...options,
+ },
+ });
+
+ return results;
+ }
+}
diff --git a/x-pack/plugins/asset_manager/public/plugin.ts b/x-pack/plugins/asset_manager/public/plugin.ts
new file mode 100644
index 0000000000000..4b2d91f3a60f1
--- /dev/null
+++ b/x-pack/plugins/asset_manager/public/plugin.ts
@@ -0,0 +1,51 @@
+/*
+ * Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one
+ * or more contributor license agreements. Licensed under the Elastic License
+ * 2.0; you may not use this file except in compliance with the Elastic License
+ * 2.0.
+ */
+
+import { CoreSetup, CoreStart, PluginInitializerContext } from '@kbn/core/public';
+import { Logger } from '@kbn/logging';
+import { AssetManagerPluginClass } from './types';
+import { PublicAssetsClient } from './lib/public_assets_client';
+import type { AssetManagerPublicConfig } from '../common/config';
+
+export class Plugin implements AssetManagerPluginClass {
+ public config: AssetManagerPublicConfig;
+ public logger: Logger;
+
+ constructor(context: PluginInitializerContext<{}>) {
+ this.config = context.config.get();
+ this.logger = context.logger.get();
+ }
+
+ setup(core: CoreSetup) {
+ // Check for config value and bail out if not "alpha-enabled"
+ if (!this.config.alphaEnabled) {
+ this.logger.debug('Public is NOT enabled');
+ return;
+ }
+
+ this.logger.debug('Public is enabled');
+
+ const publicAssetsClient = new PublicAssetsClient(core.http);
+ return {
+ publicAssetsClient,
+ };
+ }
+
+ start(core: CoreStart) {
+ // Check for config value and bail out if not "alpha-enabled"
+ if (!this.config.alphaEnabled) {
+ return;
+ }
+
+ const publicAssetsClient = new PublicAssetsClient(core.http);
+ return {
+ publicAssetsClient,
+ };
+ }
+
+ stop() {}
+}
diff --git a/x-pack/plugins/asset_manager/public/types.ts b/x-pack/plugins/asset_manager/public/types.ts
new file mode 100644
index 0000000000000..67f0053cfdd56
--- /dev/null
+++ b/x-pack/plugins/asset_manager/public/types.ts
@@ -0,0 +1,25 @@
+/*
+ * Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one
+ * or more contributor license agreements. Licensed under the Elastic License
+ * 2.0; you may not use this file except in compliance with the Elastic License
+ * 2.0.
+ */
+import type { Plugin as PluginClass } from '@kbn/core/public';
+import { GetHostsOptionsPublic } from '../common/types_client';
+import { GetHostAssetsResponse } from '../common/types_api';
+export interface AssetManagerPublicPluginSetup {
+ publicAssetsClient: IPublicAssetsClient;
+}
+
+export interface AssetManagerPublicPluginStart {
+ publicAssetsClient: IPublicAssetsClient;
+}
+
+export type AssetManagerPluginClass = PluginClass<
+ AssetManagerPublicPluginSetup | undefined,
+ AssetManagerPublicPluginStart | undefined
+>;
+
+export interface IPublicAssetsClient {
+ getHosts: (options: GetHostsOptionsPublic) => Promise;
+}
diff --git a/x-pack/plugins/asset_manager/server/constants.ts b/x-pack/plugins/asset_manager/server/constants.ts
index 0aa1cb467df48..4630365e47875 100644
--- a/x-pack/plugins/asset_manager/server/constants.ts
+++ b/x-pack/plugins/asset_manager/server/constants.ts
@@ -6,4 +6,3 @@
*/
export const ASSETS_INDEX_PREFIX = 'assets';
-export const ASSET_MANAGER_API_BASE = '/api/asset-manager';
diff --git a/x-pack/plugins/asset_manager/server/index.ts b/x-pack/plugins/asset_manager/server/index.ts
index d6eafa380b857..5dbecbee5f9da 100644
--- a/x-pack/plugins/asset_manager/server/index.ts
+++ b/x-pack/plugins/asset_manager/server/index.ts
@@ -6,11 +6,21 @@
*/
import { PluginInitializerContext } from '@kbn/core-plugins-server';
-import { AssetManagerServerPlugin, config } from './plugin';
+import { AssetManagerConfig } from '../common/config';
+import {
+ AssetManagerServerPlugin,
+ AssetManagerServerPluginSetup,
+ AssetManagerServerPluginStart,
+ config,
+} from './plugin';
import type { WriteSamplesPostBody } from './routes/sample_assets';
-import { AssetManagerConfig } from './types';
-export type { AssetManagerConfig, WriteSamplesPostBody };
+export type {
+ AssetManagerConfig,
+ WriteSamplesPostBody,
+ AssetManagerServerPluginSetup,
+ AssetManagerServerPluginStart,
+};
export { config };
export const plugin = (context: PluginInitializerContext) =>
diff --git a/x-pack/plugins/asset_manager/server/lib/accessors/hosts/get_hosts_by_assets.ts b/x-pack/plugins/asset_manager/server/lib/accessors/hosts/get_hosts_by_assets.ts
index 13e2d00a82083..f975df1cd82f4 100644
--- a/x-pack/plugins/asset_manager/server/lib/accessors/hosts/get_hosts_by_assets.ts
+++ b/x-pack/plugins/asset_manager/server/lib/accessors/hosts/get_hosts_by_assets.ts
@@ -13,7 +13,7 @@ export async function getHostsByAssets(
options: GetHostsOptionsInjected
): Promise<{ hosts: Asset[] }> {
const hosts = await getAssets({
- esClient: options.esClient,
+ elasticsearchClient: options.elasticsearchClient,
filters: {
kind: 'host',
from: options.from,
diff --git a/x-pack/plugins/asset_manager/server/lib/accessors/hosts/get_hosts_by_signals.ts b/x-pack/plugins/asset_manager/server/lib/accessors/hosts/get_hosts_by_signals.ts
index 4fad9e301a89d..93e601ae00f9c 100644
--- a/x-pack/plugins/asset_manager/server/lib/accessors/hosts/get_hosts_by_signals.ts
+++ b/x-pack/plugins/asset_manager/server/lib/accessors/hosts/get_hosts_by_signals.ts
@@ -13,11 +13,11 @@ export async function getHostsBySignals(
options: GetHostsOptionsInjected
): Promise<{ hosts: Asset[] }> {
const metricsIndices = await options.metricsClient.getMetricIndices({
- savedObjectsClient: options.soClient,
+ savedObjectsClient: options.savedObjectsClient,
});
const { assets } = await collectHosts({
- client: options.esClient,
+ client: options.elasticsearchClient,
from: options.from,
to: options.to,
sourceIndices: {
diff --git a/x-pack/plugins/asset_manager/server/lib/accessors/hosts/index.ts b/x-pack/plugins/asset_manager/server/lib/accessors/hosts/index.ts
index 9becb15ebdc0a..1b60268d85389 100644
--- a/x-pack/plugins/asset_manager/server/lib/accessors/hosts/index.ts
+++ b/x-pack/plugins/asset_manager/server/lib/accessors/hosts/index.ts
@@ -5,12 +5,11 @@
* 2.0.
*/
-import { AccessorOptions, OptionsWithInjectedValues } from '..';
+import type { AssetClientDependencies } from '../../../types';
+import type { GetHostsOptionsPublic } from '../../../../common/types_client';
+import type { OptionsWithInjectedValues } from '..';
-export interface GetHostsOptions extends AccessorOptions {
- from: string;
- to: string;
-}
+export type GetHostsOptions = GetHostsOptionsPublic & AssetClientDependencies;
export type GetHostsOptionsInjected = OptionsWithInjectedValues;
export interface HostIdentifier {
diff --git a/x-pack/plugins/asset_manager/server/lib/accessors/index.ts b/x-pack/plugins/asset_manager/server/lib/accessors/index.ts
index f5cf4d38fadc8..6fd9254a2182e 100644
--- a/x-pack/plugins/asset_manager/server/lib/accessors/index.ts
+++ b/x-pack/plugins/asset_manager/server/lib/accessors/index.ts
@@ -5,11 +5,10 @@
* 2.0.
*/
-import { ElasticsearchClient } from '@kbn/core-elasticsearch-server';
import { APMDataAccessConfig } from '@kbn/apm-data-access-plugin/server';
import { MetricsDataClient } from '@kbn/metrics-data-access-plugin/server';
import { SavedObjectsClientContract } from '@kbn/core/server';
-import { AssetManagerConfig } from '../../types';
+import { AssetManagerConfig } from '../../../common/config';
export interface InjectedValues {
sourceIndices: AssetManagerConfig['sourceIndices'];
@@ -18,8 +17,3 @@ export interface InjectedValues {
}
export type OptionsWithInjectedValues = T & InjectedValues;
-
-export interface AccessorOptions {
- esClient: ElasticsearchClient;
- soClient: SavedObjectsClientContract;
-}
diff --git a/x-pack/plugins/asset_manager/server/lib/accessors/services/get_services_by_assets.ts b/x-pack/plugins/asset_manager/server/lib/accessors/services/get_services_by_assets.ts
index 8bdd6283d6559..8e69bcbff4625 100644
--- a/x-pack/plugins/asset_manager/server/lib/accessors/services/get_services_by_assets.ts
+++ b/x-pack/plugins/asset_manager/server/lib/accessors/services/get_services_by_assets.ts
@@ -18,7 +18,7 @@ export async function getServicesByAssets(
}
const services = await getAssets({
- esClient: options.esClient,
+ elasticsearchClient: options.elasticsearchClient,
filters: {
kind: 'service',
from: options.from,
@@ -32,7 +32,7 @@ export async function getServicesByAssets(
async function getServicesByParent(
options: GetServicesOptionsInjected
): Promise<{ services: Asset[] }> {
- const { descendants } = await getAllRelatedAssets(options.esClient, {
+ const { descendants } = await getAllRelatedAssets(options.elasticsearchClient, {
from: options.from,
to: options.to,
maxDistance: 5,
diff --git a/x-pack/plugins/asset_manager/server/lib/accessors/services/get_services_by_signals.ts b/x-pack/plugins/asset_manager/server/lib/accessors/services/get_services_by_signals.ts
index ab8de39adb301..720d6b3e30531 100644
--- a/x-pack/plugins/asset_manager/server/lib/accessors/services/get_services_by_signals.ts
+++ b/x-pack/plugins/asset_manager/server/lib/accessors/services/get_services_by_signals.ts
@@ -26,9 +26,9 @@ export async function getServicesBySignals(
});
}
- const apmIndices = await options.getApmIndices(options.soClient);
+ const apmIndices = await options.getApmIndices(options.savedObjectsClient);
const { assets } = await collectServices({
- client: options.esClient,
+ client: options.elasticsearchClient,
from: options.from,
to: options.to,
sourceIndices: {
diff --git a/x-pack/plugins/asset_manager/server/lib/accessors/services/index.ts b/x-pack/plugins/asset_manager/server/lib/accessors/services/index.ts
index 3fed1047eacba..e8b52e4924c4d 100644
--- a/x-pack/plugins/asset_manager/server/lib/accessors/services/index.ts
+++ b/x-pack/plugins/asset_manager/server/lib/accessors/services/index.ts
@@ -5,13 +5,11 @@
* 2.0.
*/
-import { AccessorOptions, OptionsWithInjectedValues } from '..';
+import { AssetClientDependencies } from '../../../types';
+import { GetServicesOptionsPublic } from '../../../../common/types_client';
+import { OptionsWithInjectedValues } from '..';
-export interface GetServicesOptions extends AccessorOptions {
- from: string;
- to: string;
- parent?: string;
-}
+export type GetServicesOptions = GetServicesOptionsPublic & AssetClientDependencies;
export type GetServicesOptionsInjected = OptionsWithInjectedValues;
export interface ServiceIdentifier {
diff --git a/x-pack/plugins/asset_manager/server/lib/asset_accessor.ts b/x-pack/plugins/asset_manager/server/lib/asset_client.ts
similarity index 81%
rename from x-pack/plugins/asset_manager/server/lib/asset_accessor.ts
rename to x-pack/plugins/asset_manager/server/lib/asset_client.ts
index 73c2064e48311..8bf23313c663e 100644
--- a/x-pack/plugins/asset_manager/server/lib/asset_accessor.ts
+++ b/x-pack/plugins/asset_manager/server/lib/asset_client.ts
@@ -8,8 +8,8 @@
import { APMDataAccessConfig } from '@kbn/apm-data-access-plugin/server';
import { MetricsDataClient } from '@kbn/metrics-data-access-plugin/server';
import { SavedObjectsClientContract } from '@kbn/core/server';
+import { AssetManagerConfig } from '../../common/config';
import { Asset } from '../../common/types_api';
-import { AssetManagerConfig } from '../types';
import { OptionsWithInjectedValues } from './accessors';
import { GetHostsOptions } from './accessors/hosts';
import { GetServicesOptions } from './accessors/services';
@@ -18,28 +18,28 @@ import { getHostsBySignals } from './accessors/hosts/get_hosts_by_signals';
import { getServicesByAssets } from './accessors/services/get_services_by_assets';
import { getServicesBySignals } from './accessors/services/get_services_by_signals';
-interface AssetAccessorClassOptions {
+interface AssetClientClassOptions {
sourceIndices: AssetManagerConfig['sourceIndices'];
source: AssetManagerConfig['lockedSource'];
getApmIndices: (soClient: SavedObjectsClientContract) => Promise;
metricsClient: MetricsDataClient;
}
-export class AssetAccessor {
- constructor(private options: AssetAccessorClassOptions) {}
+export class AssetClient {
+ constructor(private baseOptions: AssetClientClassOptions) {}
injectOptions(options: T): OptionsWithInjectedValues {
return {
...options,
- sourceIndices: this.options.sourceIndices,
- getApmIndices: this.options.getApmIndices,
- metricsClient: this.options.metricsClient,
+ sourceIndices: this.baseOptions.sourceIndices,
+ getApmIndices: this.baseOptions.getApmIndices,
+ metricsClient: this.baseOptions.metricsClient,
};
}
async getHosts(options: GetHostsOptions): Promise<{ hosts: Asset[] }> {
const withInjected = this.injectOptions(options);
- if (this.options.source === 'assets') {
+ if (this.baseOptions.source === 'assets') {
return await getHostsByAssets(withInjected);
} else {
return await getHostsBySignals(withInjected);
@@ -48,7 +48,7 @@ export class AssetAccessor {
async getServices(options: GetServicesOptions): Promise<{ services: Asset[] }> {
const withInjected = this.injectOptions(options);
- if (this.options.source === 'assets') {
+ if (this.baseOptions.source === 'assets') {
return await getServicesByAssets(withInjected);
} else {
return await getServicesBySignals(withInjected);
diff --git a/x-pack/plugins/asset_manager/server/lib/get_all_related_assets.ts b/x-pack/plugins/asset_manager/server/lib/get_all_related_assets.ts
index ad8aff78cbb18..dddbb792b0979 100644
--- a/x-pack/plugins/asset_manager/server/lib/get_all_related_assets.ts
+++ b/x-pack/plugins/asset_manager/server/lib/get_all_related_assets.ts
@@ -26,13 +26,13 @@ interface GetAllRelatedAssetsOptions {
}
export async function getAllRelatedAssets(
- esClient: ElasticsearchClient,
+ elasticsearchClient: ElasticsearchClient,
options: GetAllRelatedAssetsOptions
) {
// How to put size into this?
const { ean, from, to, relation, maxDistance, kind = [] } = options;
- const primary = await findPrimary(esClient, { ean, from, to });
+ const primary = await findPrimary(elasticsearchClient, { ean, from, to });
let assetsToFetch = [primary];
let currentDistance = 1;
@@ -52,7 +52,7 @@ export async function getAllRelatedAssets(
const results = flatten(
await Promise.all(
- assetsToFetch.map((asset) => findRelatedAssets(esClient, asset, queryOptions))
+ assetsToFetch.map((asset) => findRelatedAssets(elasticsearchClient, asset, queryOptions))
)
);
@@ -75,11 +75,11 @@ export async function getAllRelatedAssets(
}
async function findPrimary(
- esClient: ElasticsearchClient,
+ elasticsearchClient: ElasticsearchClient,
{ ean, from, to }: Pick
): Promise {
const primaryResults = await getAssets({
- esClient,
+ elasticsearchClient,
size: 1,
filters: { ean, from, to },
});
@@ -101,7 +101,7 @@ type FindRelatedAssetsOptions = Pick<
> & { visitedEans: string[] };
async function findRelatedAssets(
- esClient: ElasticsearchClient,
+ elasticsearchClient: ElasticsearchClient,
primary: Asset,
{ relation, from, to, kind, visitedEans }: FindRelatedAssetsOptions
): Promise {
@@ -116,7 +116,7 @@ async function findRelatedAssets(
const remainingEansToFind = without(directlyRelatedEans, ...visitedEans);
if (remainingEansToFind.length > 0) {
directlyRelatedAssets = await getAssets({
- esClient,
+ elasticsearchClient,
filters: { ean: remainingEansToFind, from, to, kind },
});
}
@@ -124,7 +124,7 @@ async function findRelatedAssets(
debug('Directly related assets found:', JSON.stringify(directlyRelatedAssets));
const indirectlyRelatedAssets = await getIndirectlyRelatedAssets({
- esClient,
+ elasticsearchClient,
ean: primary['asset.ean'],
excludeEans: visitedEans.concat(directlyRelatedEans),
relation,
diff --git a/x-pack/plugins/asset_manager/server/lib/get_assets.ts b/x-pack/plugins/asset_manager/server/lib/get_assets.ts
index 12f87e4b398fc..e3630f92f26e9 100644
--- a/x-pack/plugins/asset_manager/server/lib/get_assets.ts
+++ b/x-pack/plugins/asset_manager/server/lib/get_assets.ts
@@ -19,7 +19,7 @@ interface GetAssetsOptions extends ElasticsearchAccessorOptions {
}
export async function getAssets({
- esClient,
+ elasticsearchClient,
size = 100,
filters = {},
}: GetAssetsOptions): Promise {
@@ -125,6 +125,6 @@ export async function getAssets({
debug('Performing Get Assets Query', '\n\n', JSON.stringify(dsl, null, 2));
- const response = await esClient.search(dsl);
+ const response = await elasticsearchClient.search(dsl);
return response.hits.hits.map((hit) => hit._source).filter((asset): asset is Asset => !!asset);
}
diff --git a/x-pack/plugins/asset_manager/server/lib/get_indirectly_related_assets.ts b/x-pack/plugins/asset_manager/server/lib/get_indirectly_related_assets.ts
index fa9f3279ec497..b91242f4aba1b 100644
--- a/x-pack/plugins/asset_manager/server/lib/get_indirectly_related_assets.ts
+++ b/x-pack/plugins/asset_manager/server/lib/get_indirectly_related_assets.ts
@@ -23,7 +23,7 @@ interface GetRelatedAssetsOptions extends ElasticsearchAccessorOptions {
}
export async function getIndirectlyRelatedAssets({
- esClient,
+ elasticsearchClient,
size = 100,
from = 'now-24h',
to = 'now',
@@ -91,7 +91,7 @@ export async function getIndirectlyRelatedAssets({
debug('Performing Indirectly Related Asset Query', '\n\n', JSON.stringify(dsl, null, 2));
- const response = await esClient.search(dsl);
+ const response = await elasticsearchClient.search(dsl);
return response.hits.hits.map((hit) => hit._source).filter((asset): asset is Asset => !!asset);
}
diff --git a/x-pack/plugins/asset_manager/server/lib/write_assets.ts b/x-pack/plugins/asset_manager/server/lib/write_assets.ts
index 55c5397645725..72b79bc366b6d 100644
--- a/x-pack/plugins/asset_manager/server/lib/write_assets.ts
+++ b/x-pack/plugins/asset_manager/server/lib/write_assets.ts
@@ -18,7 +18,7 @@ interface WriteAssetsOptions extends ElasticsearchAccessorOptions {
}
export async function writeAssets({
- esClient,
+ elasticsearchClient,
assetDocs,
namespace = 'default',
refresh = false,
@@ -33,5 +33,5 @@ export async function writeAssets({
debug('Performing Write Asset Query', '\n\n', JSON.stringify(dsl, null, 2));
- return await esClient.bulk<{}>(dsl);
+ return await elasticsearchClient.bulk<{}>(dsl);
}
diff --git a/x-pack/plugins/asset_manager/server/plugin.ts b/x-pack/plugins/asset_manager/server/plugin.ts
index 6693e6037a836..24563b5e0fbc1 100644
--- a/x-pack/plugins/asset_manager/server/plugin.ts
+++ b/x-pack/plugins/asset_manager/server/plugin.ts
@@ -18,15 +18,16 @@ import {
import { upsertTemplate } from './lib/manage_index_templates';
import { setupRoutes } from './routes';
import { assetsIndexTemplateConfig } from './templates/assets_template';
-import { AssetManagerConfig, configSchema } from './types';
-import { AssetAccessor } from './lib/asset_accessor';
+import { AssetClient } from './lib/asset_client';
import { AssetManagerPluginSetupDependencies, AssetManagerPluginStartDependencies } from './types';
+import { AssetManagerConfig, configSchema, exposeToBrowserConfig } from '../common/config';
export type AssetManagerServerPluginSetup = ReturnType;
export type AssetManagerServerPluginStart = ReturnType;
export const config: PluginConfigDescriptor = {
schema: configSchema,
+ exposeToBrowser: exposeToBrowserConfig,
};
export class AssetManagerServerPlugin
@@ -49,13 +50,13 @@ export class AssetManagerServerPlugin
public setup(core: CoreSetup, plugins: AssetManagerPluginSetupDependencies) {
// Check for config value and bail out if not "alpha-enabled"
if (!this.config.alphaEnabled) {
- this.logger.info('Asset manager plugin [tech preview] is NOT enabled');
+ this.logger.info('Server is NOT enabled');
return;
}
- this.logger.info('Asset manager plugin [tech preview] is enabled');
+ this.logger.info('Server is enabled');
- const assetAccessor = new AssetAccessor({
+ const assetClient = new AssetClient({
source: this.config.lockedSource,
sourceIndices: this.config.sourceIndices,
getApmIndices: plugins.apmDataAccess.getApmIndices,
@@ -63,10 +64,10 @@ export class AssetManagerServerPlugin
});
const router = core.http.createRouter();
- setupRoutes({ router, assetAccessor });
+ setupRoutes({ router, assetClient });
return {
- assetAccessor,
+ assetClient,
};
}
diff --git a/x-pack/plugins/asset_manager/server/routes/assets/hosts.ts b/x-pack/plugins/asset_manager/server/routes/assets/hosts.ts
index e17ad95f81a24..f7780f2ef4a6c 100644
--- a/x-pack/plugins/asset_manager/server/routes/assets/hosts.ts
+++ b/x-pack/plugins/asset_manager/server/routes/assets/hosts.ts
@@ -5,56 +5,37 @@
* 2.0.
*/
-import * as rt from 'io-ts';
import datemath from '@kbn/datemath';
-import {
- dateRt,
- inRangeFromStringRt,
- datemathStringRt,
- createRouteValidationFunction,
- createLiteralValueFromUndefinedRT,
-} from '@kbn/io-ts-utils';
+import { createRouteValidationFunction } from '@kbn/io-ts-utils';
import { RequestHandlerContext } from '@kbn/core-http-request-handler-context-server';
+import { GetHostAssetsQueryOptions, getHostAssetsQueryOptionsRT } from '../../../common/types_api';
import { debug } from '../../../common/debug_log';
import { SetupRouteOptions } from '../types';
-import { ASSET_MANAGER_API_BASE } from '../../constants';
-import { getEsClientFromContext } from '../utils';
-
-const sizeRT = rt.union([inRangeFromStringRt(1, 100), createLiteralValueFromUndefinedRT(10)]);
-const assetDateRT = rt.union([dateRt, datemathStringRt]);
-const getHostAssetsQueryOptionsRT = rt.exact(
- rt.partial({
- from: assetDateRT,
- to: assetDateRT,
- size: sizeRT,
- })
-);
-
-export type GetHostAssetsQueryOptions = rt.TypeOf;
+import * as routePaths from '../../../common/constants_routes';
+import { getClientsFromContext } from '../utils';
export function hostsRoutes({
router,
- assetAccessor,
+ assetClient,
}: SetupRouteOptions) {
router.get(
{
- path: `${ASSET_MANAGER_API_BASE}/assets/hosts`,
+ path: routePaths.GET_HOSTS,
validate: {
query: createRouteValidationFunction(getHostAssetsQueryOptionsRT),
},
},
async (context, req, res) => {
const { from = 'now-24h', to = 'now' } = req.query || {};
- const esClient = await getEsClientFromContext(context);
- const coreContext = await context.core;
- const soClient = coreContext.savedObjects.client;
+
+ const { elasticsearchClient, savedObjectsClient } = await getClientsFromContext(context);
try {
- const response = await assetAccessor.getHosts({
+ const response = await assetClient.getHosts({
from: datemath.parse(from)!.toISOString(),
to: datemath.parse(to)!.toISOString(),
- esClient,
- soClient,
+ elasticsearchClient,
+ savedObjectsClient,
});
return res.ok({ body: response });
diff --git a/x-pack/plugins/asset_manager/server/routes/assets/index.ts b/x-pack/plugins/asset_manager/server/routes/assets/index.ts
index b8b6d7ab0fa3a..8d9eaff170d30 100644
--- a/x-pack/plugins/asset_manager/server/routes/assets/index.ts
+++ b/x-pack/plugins/asset_manager/server/routes/assets/index.ts
@@ -17,11 +17,11 @@ import {
} from '@kbn/io-ts-utils';
import { debug } from '../../../common/debug_log';
import { assetTypeRT, assetKindRT, relationRT } from '../../../common/types_api';
-import { ASSET_MANAGER_API_BASE } from '../../constants';
+import { GET_ASSETS, GET_RELATED_ASSETS, GET_ASSETS_DIFF } from '../../../common/constants_routes';
import { getAssets } from '../../lib/get_assets';
import { getAllRelatedAssets } from '../../lib/get_all_related_assets';
import { SetupRouteOptions } from '../types';
-import { getEsClientFromContext } from '../utils';
+import { getClientsFromContext } from '../utils';
import { AssetNotFoundError } from '../../lib/errors';
import { isValidRange } from '../../lib/utils';
@@ -82,7 +82,7 @@ export function assetsRoutes({ router }: SetupR
// GET /assets
router.get(
{
- path: `${ASSET_MANAGER_API_BASE}/assets`,
+ path: GET_ASSETS,
validate: {
query: createRouteValidationFunction(getAssetsQueryOptionsRT),
},
@@ -102,10 +102,10 @@ export function assetsRoutes({ router }: SetupR
});
}
- const esClient = await getEsClientFromContext(context);
+ const { elasticsearchClient } = await getClientsFromContext(context);
try {
- const results = await getAssets({ esClient, size, filters });
+ const results = await getAssets({ elasticsearchClient, size, filters });
return res.ok({ body: { results } });
} catch (error: unknown) {
debug('error looking up asset records', error);
@@ -120,7 +120,7 @@ export function assetsRoutes({ router }: SetupR
// GET assets/related
router.get(
{
- path: `${ASSET_MANAGER_API_BASE}/assets/related`,
+ path: GET_RELATED_ASSETS,
validate: {
query: createRouteValidationFunction(getRelatedAssetsQueryOptionsRT),
},
@@ -129,7 +129,7 @@ export function assetsRoutes({ router }: SetupR
// Add references into sample data and write integration tests
const { from, to, ean, relation, maxDistance, size, type, kind } = req.query || {};
- const esClient = await getEsClientFromContext(context);
+ const { elasticsearchClient } = await getClientsFromContext(context);
if (to && !isValidRange(from, to)) {
return res.badRequest({
@@ -140,7 +140,7 @@ export function assetsRoutes({ router }: SetupR
try {
return res.ok({
body: {
- results: await getAllRelatedAssets(esClient, {
+ results: await getAllRelatedAssets(elasticsearchClient, {
ean,
from,
to,
@@ -165,7 +165,7 @@ export function assetsRoutes({ router }: SetupR
// GET /assets/diff
router.get(
{
- path: `${ASSET_MANAGER_API_BASE}/assets/diff`,
+ path: GET_ASSETS_DIFF,
validate: {
query: createRouteValidationFunction(getAssetsDiffQueryOptionsRT),
},
@@ -187,11 +187,11 @@ export function assetsRoutes({ router }: SetupR
});
}
- const esClient = await getEsClientFromContext(context);
+ const { elasticsearchClient } = await getClientsFromContext(context);
try {
const resultsForA = await getAssets({
- esClient,
+ elasticsearchClient,
filters: {
from: aFrom,
to: aTo,
@@ -201,7 +201,7 @@ export function assetsRoutes({ router }: SetupR
});
const resultsForB = await getAssets({
- esClient,
+ elasticsearchClient,
filters: {
from: bFrom,
to: bTo,
diff --git a/x-pack/plugins/asset_manager/server/routes/assets/services.ts b/x-pack/plugins/asset_manager/server/routes/assets/services.ts
index d7edf3b6f7f3c..3852a0bb60d11 100644
--- a/x-pack/plugins/asset_manager/server/routes/assets/services.ts
+++ b/x-pack/plugins/asset_manager/server/routes/assets/services.ts
@@ -17,8 +17,8 @@ import {
import { RequestHandlerContext } from '@kbn/core-http-request-handler-context-server';
import { debug } from '../../../common/debug_log';
import { SetupRouteOptions } from '../types';
-import { ASSET_MANAGER_API_BASE } from '../../constants';
-import { getEsClientFromContext } from '../utils';
+import { ASSET_MANAGER_API_BASE } from '../../../common/constants_routes';
+import { getClientsFromContext } from '../utils';
const sizeRT = rt.union([inRangeFromStringRt(1, 100), createLiteralValueFromUndefinedRT(10)]);
const assetDateRT = rt.union([dateRt, datemathStringRt]);
@@ -35,7 +35,7 @@ export type GetServiceAssetsQueryOptions = rt.TypeOf({
router,
- assetAccessor,
+ assetClient,
}: SetupRouteOptions) {
// GET /assets/services
router.get(
@@ -47,16 +47,14 @@ export function servicesRoutes({
},
async (context, req, res) => {
const { from = 'now-24h', to = 'now', parent } = req.query || {};
- const esClient = await getEsClientFromContext(context);
- const coreContext = await context.core;
- const soClient = coreContext.savedObjects.client;
+ const { elasticsearchClient, savedObjectsClient } = await getClientsFromContext(context);
try {
- const response = await assetAccessor.getServices({
+ const response = await assetClient.getServices({
from: datemath.parse(from)!.toISOString(),
to: datemath.parse(to)!.toISOString(),
parent,
- esClient,
- soClient,
+ elasticsearchClient,
+ savedObjectsClient,
});
return res.ok({ body: response });
diff --git a/x-pack/plugins/asset_manager/server/routes/index.ts b/x-pack/plugins/asset_manager/server/routes/index.ts
index cab0b1558fa00..30064a8562b6f 100644
--- a/x-pack/plugins/asset_manager/server/routes/index.ts
+++ b/x-pack/plugins/asset_manager/server/routes/index.ts
@@ -15,11 +15,11 @@ import { servicesRoutes } from './assets/services';
export function setupRoutes({
router,
- assetAccessor,
+ assetClient,
}: SetupRouteOptions) {
- pingRoute({ router, assetAccessor });
- assetsRoutes({ router, assetAccessor });
- sampleAssetsRoutes({ router, assetAccessor });
- hostsRoutes({ router, assetAccessor });
- servicesRoutes({ router, assetAccessor });
+ pingRoute({ router, assetClient });
+ assetsRoutes({ router, assetClient });
+ sampleAssetsRoutes({ router, assetClient });
+ hostsRoutes({ router, assetClient });
+ servicesRoutes({ router, assetClient });
}
diff --git a/x-pack/plugins/asset_manager/server/routes/ping.ts b/x-pack/plugins/asset_manager/server/routes/ping.ts
index 3f7b1bb679b98..3d7a20b5fd476 100644
--- a/x-pack/plugins/asset_manager/server/routes/ping.ts
+++ b/x-pack/plugins/asset_manager/server/routes/ping.ts
@@ -6,7 +6,7 @@
*/
import { RequestHandlerContextBase } from '@kbn/core-http-server';
-import { ASSET_MANAGER_API_BASE } from '../constants';
+import { ASSET_MANAGER_API_BASE } from '../../common/constants_routes';
import { SetupRouteOptions } from './types';
export function pingRoute({ router }: SetupRouteOptions) {
diff --git a/x-pack/plugins/asset_manager/server/routes/sample_assets.ts b/x-pack/plugins/asset_manager/server/routes/sample_assets.ts
index 98f7f32051f3f..447051bbb2730 100644
--- a/x-pack/plugins/asset_manager/server/routes/sample_assets.ts
+++ b/x-pack/plugins/asset_manager/server/routes/sample_assets.ts
@@ -7,11 +7,11 @@
import { schema } from '@kbn/config-schema';
import { RequestHandlerContext } from '@kbn/core/server';
-import { ASSET_MANAGER_API_BASE } from '../constants';
+import { ASSET_MANAGER_API_BASE } from '../../common/constants_routes';
import { getSampleAssetDocs, sampleAssets } from '../lib/sample_assets';
import { writeAssets } from '../lib/write_assets';
import { SetupRouteOptions } from './types';
-import { getEsClientFromContext } from './utils';
+import { getClientsFromContext } from './utils';
export type WriteSamplesPostBody = {
baseDateTime?: string | number;
@@ -62,12 +62,12 @@ export function sampleAssetsRoutes({
},
});
}
- const esClient = await getEsClientFromContext(context);
+ const { elasticsearchClient } = await getClientsFromContext(context);
const assetDocs = getSampleAssetDocs({ baseDateTime: parsed, excludeEans });
try {
const response = await writeAssets({
- esClient,
+ elasticsearchClient,
assetDocs,
namespace: 'sample_data',
refresh,
@@ -101,9 +101,9 @@ export function sampleAssetsRoutes({
validate: {},
},
async (context, req, res) => {
- const esClient = await getEsClientFromContext(context);
+ const { elasticsearchClient } = await getClientsFromContext(context);
- const sampleDataStreams = await esClient.indices.getDataStream({
+ const sampleDataStreams = await elasticsearchClient.indices.getDataStream({
name: 'assets-*-sample_data',
expand_wildcards: 'all',
});
@@ -115,7 +115,7 @@ export function sampleAssetsRoutes({
for (let i = 0; i < dataStreamsToDelete.length; i++) {
const dsName = dataStreamsToDelete[i];
try {
- await esClient.indices.deleteDataStream({ name: dsName });
+ await elasticsearchClient.indices.deleteDataStream({ name: dsName });
deletedDataStreams.push(dsName);
} catch (error: any) {
errorWhileDeleting =
diff --git a/x-pack/plugins/asset_manager/server/routes/types.ts b/x-pack/plugins/asset_manager/server/routes/types.ts
index 2a0cf91f47df7..ae1b967a5b596 100644
--- a/x-pack/plugins/asset_manager/server/routes/types.ts
+++ b/x-pack/plugins/asset_manager/server/routes/types.ts
@@ -6,9 +6,9 @@
*/
import { IRouter, RequestHandlerContextBase } from '@kbn/core-http-server';
-import { AssetAccessor } from '../lib/asset_accessor';
+import { AssetClient } from '../lib/asset_client';
export interface SetupRouteOptions {
router: IRouter;
- assetAccessor: AssetAccessor;
+ assetClient: AssetClient;
}
diff --git a/x-pack/plugins/asset_manager/server/routes/utils.ts b/x-pack/plugins/asset_manager/server/routes/utils.ts
index 378ed0b48fc87..665adc0917fa0 100644
--- a/x-pack/plugins/asset_manager/server/routes/utils.ts
+++ b/x-pack/plugins/asset_manager/server/routes/utils.ts
@@ -7,6 +7,12 @@
import { RequestHandlerContext } from '@kbn/core/server';
-export async function getEsClientFromContext(context: T) {
- return (await context.core).elasticsearch.client.asCurrentUser;
+export async function getClientsFromContext(context: T) {
+ const coreContext = await context.core;
+
+ return {
+ coreContext,
+ elasticsearchClient: coreContext.elasticsearch.client.asCurrentUser,
+ savedObjectsClient: coreContext.savedObjects.client,
+ };
}
diff --git a/x-pack/plugins/asset_manager/server/types.ts b/x-pack/plugins/asset_manager/server/types.ts
index 380d48aa0c7fe..431378c7c9a9f 100644
--- a/x-pack/plugins/asset_manager/server/types.ts
+++ b/x-pack/plugins/asset_manager/server/types.ts
@@ -5,8 +5,7 @@
* 2.0.
*/
-import { schema, TypeOf } from '@kbn/config-schema';
-import { ElasticsearchClient } from '@kbn/core/server';
+import { ElasticsearchClient, SavedObjectsClientContract } from '@kbn/core/server';
import {
ApmDataAccessPluginSetup,
ApmDataAccessPluginStart,
@@ -14,37 +13,9 @@ import {
import { MetricsDataPluginSetup } from '@kbn/metrics-data-access-plugin/server';
export interface ElasticsearchAccessorOptions {
- esClient: ElasticsearchClient;
+ elasticsearchClient: ElasticsearchClient;
}
-export const INDEX_DEFAULTS = {
- logs: 'filebeat-*,logs-*',
-};
-
-export const configSchema = schema.object({
- alphaEnabled: schema.maybe(schema.boolean()),
- // Designate where various types of data live.
- // NOTE: this should be handled in a centralized way for observability, so
- // that when a user configures these differently from the known defaults,
- // that value is propagated everywhere. For now, we duplicate the value here.
- sourceIndices: schema.object(
- {
- logs: schema.string({ defaultValue: INDEX_DEFAULTS.logs }),
- },
- { defaultValue: INDEX_DEFAULTS }
- ),
- // Choose an explicit source for asset queries.
- // NOTE: This will eventually need to be able to cleverly switch
- // between these values based on the availability of data in the
- // indices, and possibly for each asset kind/type value.
- // For now, we set this explicitly.
- lockedSource: schema.oneOf([schema.literal('assets'), schema.literal('signals')], {
- defaultValue: 'signals',
- }),
-});
-
-export type AssetManagerConfig = TypeOf;
-
export interface AssetManagerPluginSetupDependencies {
apmDataAccess: ApmDataAccessPluginSetup;
metricsDataAccess: MetricsDataPluginSetup;
@@ -52,3 +23,8 @@ export interface AssetManagerPluginSetupDependencies {
export interface AssetManagerPluginStartDependencies {
apmDataAccess: ApmDataAccessPluginStart;
}
+
+export interface AssetClientDependencies {
+ elasticsearchClient: ElasticsearchClient;
+ savedObjectsClient: SavedObjectsClientContract;
+}
diff --git a/x-pack/plugins/asset_manager/tsconfig.json b/x-pack/plugins/asset_manager/tsconfig.json
index d7663856f0513..35972189e5287 100644
--- a/x-pack/plugins/asset_manager/tsconfig.json
+++ b/x-pack/plugins/asset_manager/tsconfig.json
@@ -7,6 +7,7 @@
"../../../typings/**/*",
"common/**/*",
"server/**/*",
+ "public/**/*",
"types/**/*"
],
"exclude": ["target/**/*"],
@@ -17,10 +18,11 @@
"@kbn/core-http-server",
"@kbn/core-elasticsearch-client-server-mocks",
"@kbn/io-ts-utils",
- "@kbn/core-elasticsearch-server",
"@kbn/core-http-request-handler-context-server",
"@kbn/datemath",
"@kbn/apm-data-access-plugin",
+ "@kbn/core-http-browser-mocks",
+ "@kbn/logging",
"@kbn/metrics-data-access-plugin"
]
}
diff --git a/x-pack/plugins/cloud_security_posture/public/common/constants.ts b/x-pack/plugins/cloud_security_posture/public/common/constants.ts
index eb6318e7c6727..bec25a70dbd1e 100644
--- a/x-pack/plugins/cloud_security_posture/public/common/constants.ts
+++ b/x-pack/plugins/cloud_security_posture/public/common/constants.ts
@@ -93,7 +93,6 @@ export const cloudPostureIntegrations: CloudPostureIntegrations = {
defaultMessage: 'CIS GCP',
}),
icon: googleCloudLogo,
- isBeta: true,
},
// needs to be a function that disables/enabled based on integration version
{
diff --git a/x-pack/plugins/cloud_security_posture/public/components/csp_counter_card.tsx b/x-pack/plugins/cloud_security_posture/public/components/csp_counter_card.tsx
index 9b07c0f3edded..e41ead46f52af 100644
--- a/x-pack/plugins/cloud_security_posture/public/components/csp_counter_card.tsx
+++ b/x-pack/plugins/cloud_security_posture/public/components/csp_counter_card.tsx
@@ -17,11 +17,17 @@ export interface CspCounterCardProps {
description: EuiStatProps['description'];
}
-export const CspCounterCard = (counter: CspCounterCardProps) => {
+export const CspCounterCard = ({
+ id,
+ button,
+ title,
+ titleColor,
+ description,
+}: CspCounterCardProps) => {
const { euiTheme } = useEuiTheme();
return (
-
+
{
},
}}
titleSize="s"
- title={counter.title}
- titleColor={counter.titleColor}
+ title={title}
+ titleColor={titleColor}
descriptionElement="h6"
- description={counter.description}
+ description={description}
/>
- {counter.button}
+ {button}
);
};
diff --git a/x-pack/plugins/cloud_security_posture/public/components/fleet_extensions/gcp_credential_form.tsx b/x-pack/plugins/cloud_security_posture/public/components/fleet_extensions/gcp_credential_form.tsx
index 18ac1247d4b1a..411d5298580a5 100644
--- a/x-pack/plugins/cloud_security_posture/public/components/fleet_extensions/gcp_credential_form.tsx
+++ b/x-pack/plugins/cloud_security_posture/public/components/fleet_extensions/gcp_credential_form.tsx
@@ -25,6 +25,7 @@ import type { NewPackagePolicy } from '@kbn/fleet-plugin/public';
import { NewPackagePolicyInput, PackageInfo } from '@kbn/fleet-plugin/common';
import { FormattedMessage } from '@kbn/i18n-react';
import { i18n } from '@kbn/i18n';
+import { GcpCredentialsType } from '../../../common/types';
import {
CLOUDBEAT_GCP,
SETUP_ACCESS_CLOUD_SHELL,
@@ -39,10 +40,12 @@ import {
import { MIN_VERSION_GCP_CIS } from '../../common/constants';
import { cspIntegrationDocsNavigation } from '../../common/navigation/constants';
import { ReadDocumentation } from './aws_credentials_form/aws_credentials_form';
+import { GCP_ORGANIZATION_ACCOUNT } from './policy_template_form';
export const CIS_GCP_INPUT_FIELDS_TEST_SUBJECTS = {
GOOGLE_CLOUD_SHELL_SETUP: 'google_cloud_shell_setup_test_id',
PROJECT_ID: 'project_id_test_id',
+ ORGANIZATION_ID: 'organization_id_test_id',
CREDENTIALS_TYPE: 'credentials_type_test_id',
CREDENTIALS_FILE: 'credentials_file_test_id',
CREDENTIALS_JSON: 'credentials_json_test_id',
@@ -71,7 +74,21 @@ const GCPSetupInfoContent = () => (
>
);
-const GoogleCloudShellSetup = () => {
+const GoogleCloudShellSetup = ({
+ fields,
+ onChange,
+ input,
+}: {
+ fields: Array;
+ onChange: (key: string, value: string) => void;
+ input: NewPackagePolicyInput;
+}) => {
+ const accountType = input.streams?.[0]?.vars?.['gcp.account_type']?.value;
+ const getFieldById = (id: keyof GcpInputFields['fields']) => {
+ return fields.find((element) => element.id === id);
+ };
+ const projectIdFields = getFieldById('gcp.project_id');
+ const organizationIdFields = getFieldById('gcp.organization_id');
return (
<>
{
defaultMessage="Log into your Google Cloud Console"
/>
-
-
-
+ {accountType === GCP_ORGANIZATION_ACCOUNT ? (
+
+
+
+ ) : (
+
+
+
+ )}
+
{
+
+ {organizationIdFields && accountType === GCP_ORGANIZATION_ACCOUNT && (
+
+ onChange(organizationIdFields.id, event.target.value)}
+ />
+
+ )}
+ {projectIdFields && (
+
+ onChange(projectIdFields.id, event.target.value)}
+ />
+
+ )}
+
+
>
);
};
@@ -137,6 +189,12 @@ interface GcpInputFields {
export const gcpField: GcpInputFields = {
fields: {
+ 'gcp.organization_id': {
+ label: i18n.translate('xpack.csp.gcpIntegration.organizationIdFieldLabel', {
+ defaultMessage: 'Organization ID',
+ }),
+ type: 'text',
+ },
'gcp.project_id': {
label: i18n.translate('xpack.csp.gcpIntegration.projectidFieldLabel', {
defaultMessage: 'Project ID',
@@ -190,17 +248,14 @@ const getSetupFormatOptions = (): Array<{
interface GcpFormProps {
newPolicy: NewPackagePolicy;
- input: Extract<
- NewPackagePolicyPostureInput,
- { type: 'cloudbeat/cis_aws' | 'cloudbeat/cis_eks' | 'cloudbeat/cis_gcp' }
- >;
+ input: Extract;
updatePolicy(updatedPolicy: NewPackagePolicy): void;
packageInfo: PackageInfo;
setIsValid: (isValid: boolean) => void;
onChange: any;
}
-const getInputVarsFields = (input: NewPackagePolicyInput, fields: GcpFields) =>
+export const getInputVarsFields = (input: NewPackagePolicyInput, fields: GcpFields) =>
Object.entries(input.streams[0].vars || {})
.filter(([id]) => id in fields)
.map(([id, inputVar]) => {
@@ -290,6 +345,10 @@ const useCloudShellUrl = ({
}, [newPolicy?.vars?.cloud_shell_url, newPolicy, packageInfo, setupFormat]);
};
+export const getGcpCredentialsType = (
+ input: Extract
+): GcpCredentialsType | undefined => input.streams[0].vars?.setup_access.value;
+
export const GcpCredentialsForm = ({
input,
newPolicy,
@@ -298,6 +357,12 @@ export const GcpCredentialsForm = ({
setIsValid,
onChange,
}: GcpFormProps) => {
+ /* Create a subset of properties from GcpField to use for hiding value of credentials json and credentials file when user switch from Manual to Cloud Shell, we wanna keep Project and Organization ID */
+ const subsetOfGcpField = (({ ['gcp.credentials.file']: a, ['gcp.credentials.json']: b }) => ({
+ 'gcp.credentials.file': a,
+ ['gcp.credentials.json']: b,
+ }))(gcpField.fields);
+ const fieldsToHide = getInputVarsFields(input, subsetOfGcpField);
const fields = getInputVarsFields(input, gcpField.fields);
const validSemantic = semverValid(packageInfo.version);
const integrationVersionNumberOnly = semverCoerce(validSemantic) || '';
@@ -305,9 +370,20 @@ export const GcpCredentialsForm = ({
const fieldsSnapshot = useRef({});
const lastSetupAccessType = useRef(undefined);
const setupFormat = getSetupFormatFromInput(input);
- const getFieldById = (id: keyof GcpInputFields['fields']) => {
- return fields.find((element) => element.id === id);
- };
+ const accountType = input.streams?.[0]?.vars?.['gcp.account_type']?.value;
+ const isOrganization = accountType === 'organization-account';
+ // Integration is Invalid IF Version is not at least 1.5.0 OR Setup Access is manual but Project ID is empty
+ useEffect(() => {
+ const isInvalidPolicy = isInvalid;
+
+ setIsValid(!isInvalidPolicy);
+
+ onChange({
+ isValid: !isInvalidPolicy,
+ updatedPolicy: newPolicy,
+ });
+ // eslint-disable-next-line react-hooks/exhaustive-deps
+ }, [setupFormat, input.type]);
useCloudShellUrl({
packageInfo,
@@ -316,23 +392,23 @@ export const GcpCredentialsForm = ({
setupFormat,
});
const onSetupFormatChange = (newSetupFormat: SetupFormatGCP) => {
- if (newSetupFormat === SETUP_ACCESS_CLOUD_SHELL) {
+ if (newSetupFormat === 'google_cloud_shell') {
// We need to store the current manual fields to restore them later
fieldsSnapshot.current = Object.fromEntries(
- fields.map((field) => [field.id, { value: field.value }])
+ fieldsToHide.map((field) => [field.id, { value: field.value }])
);
// We need to store the last manual credentials type to restore it later
- lastSetupAccessType.current = input.streams[0].vars?.setup_access?.value;
+ lastSetupAccessType.current = getGcpCredentialsType(input);
updatePolicy(
getPosturePolicy(newPolicy, input.type, {
setup_access: {
- value: SETUP_ACCESS_CLOUD_SHELL,
+ value: 'google_cloud_shell',
type: 'text',
},
// Clearing fields from previous setup format to prevent exposing credentials
// when switching from manual to cloud formation
- ...Object.fromEntries(fields.map((field) => [field.id, { value: undefined }])),
+ ...Object.fromEntries(fieldsToHide.map((field) => [field.id, { value: undefined }])),
})
);
} else {
@@ -340,7 +416,7 @@ export const GcpCredentialsForm = ({
getPosturePolicy(newPolicy, input.type, {
setup_access: {
// Restoring last manual credentials type
- value: SETUP_ACCESS_MANUAL,
+ value: lastSetupAccessType.current || SETUP_ACCESS_MANUAL,
type: 'text',
},
// Restoring fields from manual setup format if any
@@ -349,20 +425,6 @@ export const GcpCredentialsForm = ({
);
}
};
- // Integration is Invalid IF Version is not at least 1.5.0 OR Setup Access is manual but Project ID is empty
- useEffect(() => {
- const isProjectIdEmpty =
- setupFormat === SETUP_ACCESS_MANUAL && !getFieldById('gcp.project_id')?.value;
- const isInvalidPolicy = isInvalid || isProjectIdEmpty;
-
- setIsValid(!isInvalidPolicy);
-
- onChange({
- isValid: !isInvalidPolicy,
- updatedPolicy: newPolicy,
- });
- // eslint-disable-next-line react-hooks/exhaustive-deps
- }, [input, packageInfo, setupFormat]);
if (isInvalid) {
return (
@@ -385,19 +447,29 @@ export const GcpCredentialsForm = ({
size="s"
options={getSetupFormatOptions()}
idSelected={setupFormat}
- onChange={onSetupFormatChange}
+ onChange={(idSelected: SetupFormatGCP) =>
+ idSelected !== setupFormat && onSetupFormatChange(idSelected)
+ }
/>
- {setupFormat === SETUP_ACCESS_MANUAL ? (
-
updatePolicy(getPosturePolicy(newPolicy, input.type, { [key]: { value } }))
}
+ input={input}
/>
) : (
-
+
+ updatePolicy(getPosturePolicy(newPolicy, input.type, { [key]: { value } }))
+ }
+ isOrganization={isOrganization}
+ />
)}
+
@@ -408,13 +480,18 @@ export const GcpCredentialsForm = ({
const GcpInputVarFields = ({
fields,
onChange,
+ isOrganization,
}: {
fields: Array;
onChange: (key: string, value: string) => void;
+ isOrganization: boolean;
}) => {
const getFieldById = (id: keyof GcpInputFields['fields']) => {
return fields.find((element) => element.id === id);
};
+
+ const organizationIdFields = getFieldById('gcp.organization_id');
+
const projectIdFields = getFieldById('gcp.project_id');
const credentialsTypeFields = getFieldById('gcp.credentials.type');
const credentialFilesFields = getFieldById('gcp.credentials.file');
@@ -428,6 +505,17 @@ const GcpInputVarFields = ({
return (