diff --git a/.buildkite/ftr_configs.yml b/.buildkite/ftr_configs.yml
index ca2dcd500029f..bbf13a06a6421 100644
--- a/.buildkite/ftr_configs.yml
+++ b/.buildkite/ftr_configs.yml
@@ -79,6 +79,21 @@ disabled:
# Asset Manager configs, in tech preview, will move to enabled after more stability introduced
- x-pack/test/api_integration/apis/asset_manager/config.ts
+ # Serverless base config files
+ - x-pack/test_serverless/api_integration/config.base.ts
+ - x-pack/test_serverless/functional/config.base.ts
+ - x-pack/test_serverless/shared/config.base.ts
+
+ # Serverless configs, currently only for manual tests runs, CI integration planned
+ - x-pack/test_serverless/api_integration/test_suites/common/config.ts
+ - x-pack/test_serverless/api_integration/test_suites/observability/config.ts
+ - x-pack/test_serverless/api_integration/test_suites/search/config.ts
+ - x-pack/test_serverless/api_integration/test_suites/security/config.ts
+ - x-pack/test_serverless/functional/test_suites/common/config.ts
+ - x-pack/test_serverless/functional/test_suites/observability/config.ts
+ - x-pack/test_serverless/functional/test_suites/search/config.ts
+ - x-pack/test_serverless/functional/test_suites/security/config.ts
+
defaultQueue: 'n2-4-spot'
enabled:
- test/accessibility/config.ts
@@ -212,7 +227,6 @@ enabled:
- x-pack/test/detection_engine_api_integration/security_and_spaces/group10/config.ts
- x-pack/test/detection_engine_api_integration/security_and_spaces/rule_execution_logic/config.ts
- x-pack/test/encrypted_saved_objects_api_integration/config.ts
- - x-pack/test/endpoint_api_integration_no_ingest/config.ts
- x-pack/test/examples/config.ts
- x-pack/test/fleet_api_integration/config.agent.ts
- x-pack/test/fleet_api_integration/config.agent_policy.ts
@@ -226,7 +240,7 @@ enabled:
- x-pack/test/functional_basic/apps/ml/data_visualizer/group2/config.ts
- x-pack/test/functional_basic/apps/ml/data_visualizer/group3/config.ts
- x-pack/test/functional_basic/apps/transform/creation/index_pattern/config.ts
- - x-pack/test/functional_basic/apps/transform/start_reset_delete/config.ts
+ - x-pack/test/functional_basic/apps/transform/actions/config.ts
- x-pack/test/functional_basic/apps/transform/edit_clone/config.ts
- x-pack/test/functional_basic/apps/transform/creation/runtime_mappings_saved_search/config.ts
- x-pack/test/functional_basic/apps/transform/permissions/config.ts
@@ -292,7 +306,7 @@ enabled:
- x-pack/test/functional/apps/status_page/config.ts
- x-pack/test/functional/apps/transform/creation/index_pattern/config.ts
- x-pack/test/functional/apps/transform/creation/runtime_mappings_saved_search/config.ts
- - x-pack/test/functional/apps/transform/start_reset_delete/config.ts
+ - x-pack/test/functional/apps/transform/actions/config.ts
- x-pack/test/functional/apps/transform/edit_clone/config.ts
- x-pack/test/functional/apps/transform/permissions/config.ts
- x-pack/test/functional/apps/transform/feature_controls/config.ts
diff --git a/.buildkite/scripts/steps/checks.sh b/.buildkite/scripts/steps/checks.sh
index bf30578bfebc5..12077902c1c13 100755
--- a/.buildkite/scripts/steps/checks.sh
+++ b/.buildkite/scripts/steps/checks.sh
@@ -6,7 +6,6 @@ export DISABLE_BOOTSTRAP_VALIDATION=false
.buildkite/scripts/bootstrap.sh
.buildkite/scripts/steps/checks/precommit_hook.sh
-.buildkite/scripts/steps/checks/packages.sh
.buildkite/scripts/steps/checks/ts_projects.sh
.buildkite/scripts/steps/checks/packages.sh
.buildkite/scripts/steps/checks/bazel_packages.sh
@@ -22,4 +21,4 @@ export DISABLE_BOOTSTRAP_VALIDATION=false
.buildkite/scripts/steps/checks/test_projects.sh
.buildkite/scripts/steps/checks/test_hardening.sh
.buildkite/scripts/steps/checks/ftr_configs.sh
-.buildkite/scripts/steps/checks/saved_objects_compat_changes.sh
\ No newline at end of file
+.buildkite/scripts/steps/checks/saved_objects_compat_changes.sh
diff --git a/.buildkite/scripts/steps/storybooks/build_and_upload.ts b/.buildkite/scripts/steps/storybooks/build_and_upload.ts
index 75be5696dbca6..3c47c3d99255b 100644
--- a/.buildkite/scripts/steps/storybooks/build_and_upload.ts
+++ b/.buildkite/scripts/steps/storybooks/build_and_upload.ts
@@ -50,6 +50,7 @@ const STORYBOOKS = [
'language_documentation_popover',
'unified_search',
'random_sampling',
+ 'text_based_editor',
];
const GITHUB_CONTEXT = 'Build and Publish Storybooks';
diff --git a/.eslintrc.js b/.eslintrc.js
index 8cf08f2819248..0dfe1901290fe 100644
--- a/.eslintrc.js
+++ b/.eslintrc.js
@@ -173,7 +173,7 @@ const DEV_PATTERNS = [
...DEV_FILE_PATTERNS.map((file) => `{packages,src,x-pack}/**/${file}`),
'packages/kbn-interpreter/tasks/**/*',
'src/dev/**/*',
- 'x-pack/{dev-tools,tasks,test,build_chromium}/**/*',
+ 'x-pack/{dev-tools,tasks,test,test_serverless,build_chromium}/**/*',
'x-pack/performance/**/*',
'src/setup_node_env/index.js',
'src/cli/dev.js',
@@ -602,6 +602,8 @@ module.exports = {
'x-pack/test/ui_capabilities/*/tests/**/*',
'x-pack/test/performance/**/*.ts',
'**/cypress.config.{js,ts}',
+ 'x-pack/test_serverless/**/config*.ts',
+ 'x-pack/test_serverless/*/test_suites/**/*',
],
rules: {
'import/no-default-export': 'off',
diff --git a/.github/CODEOWNERS b/.github/CODEOWNERS
index 27f63cec6ecaa..5754631986698 100644
--- a/.github/CODEOWNERS
+++ b/.github/CODEOWNERS
@@ -19,7 +19,6 @@ x-pack/examples/alerting_example @elastic/response-ops
x-pack/test/functional_with_es_ssl/plugins/alerts @elastic/response-ops
x-pack/plugins/alerting @elastic/response-ops
x-pack/packages/kbn-alerting-state-types @elastic/response-ops
-packages/kbn-alerts @elastic/security-solution
packages/kbn-alerts-as-data-utils @elastic/response-ops
x-pack/test/alerting_api_integration/common/plugins/alerts_restricted @elastic/response-ops
packages/kbn-alerts-ui-shared @elastic/response-ops
@@ -414,6 +413,7 @@ packages/kbn-import-resolver @elastic/kibana-operations
x-pack/plugins/index_lifecycle_management @elastic/platform-deployment-management
x-pack/plugins/index_management @elastic/platform-deployment-management
test/plugin_functional/plugins/index_patterns @elastic/kibana-app-services
+x-pack/packages/kbn-infra-forge @elastic/actionable-observability
x-pack/plugins/infra @elastic/infra-monitoring-ui
x-pack/plugins/ingest_pipelines @elastic/platform-deployment-management
src/plugins/input_control_vis @elastic/kibana-presentation
@@ -458,6 +458,7 @@ packages/kbn-mapbox-gl @elastic/kibana-gis
x-pack/examples/third_party_maps_source_example @elastic/kibana-gis
src/plugins/maps_ems @elastic/kibana-gis
x-pack/plugins/maps @elastic/kibana-gis
+x-pack/packages/maps/vector_tile_utils @elastic/kibana-gis
x-pack/packages/ml/agg_utils @elastic/ml-ui
x-pack/packages/ml/anomaly_utils @elastic/ml-ui
x-pack/packages/ml/date_picker @elastic/ml-ui
@@ -486,7 +487,7 @@ x-pack/packages/observability/alert_details @elastic/actionable-observability
x-pack/test/cases_api_integration/common/plugins/observability @elastic/response-ops
x-pack/plugins/observability_onboarding @elastic/apm-ui
x-pack/plugins/observability @elastic/actionable-observability
-x-pack/plugins/observability_shared @elastic/actionable-observability
+x-pack/plugins/observability_shared @elastic/observability-ui
x-pack/test/security_api_integration/plugins/oidc_provider @elastic/kibana-security
test/common/plugins/otel_metrics @elastic/infra-monitoring-ui
packages/kbn-optimizer @elastic/kibana-operations
@@ -578,7 +579,7 @@ packages/kbn-server-route-repository @elastic/apm-ui
x-pack/plugins/serverless @elastic/appex-sharedux
x-pack/plugins/serverless_observability @elastic/appex-sharedux
packages/serverless/project_switcher @elastic/appex-sharedux
-x-pack/plugins/serverless_search @elastic/appex-sharedux
+x-pack/plugins/serverless_search @elastic/enterprise-search-frontend
x-pack/plugins/serverless_security @elastic/security-solution
packages/serverless/storybook/config @elastic/appex-sharedux
packages/serverless/types @elastic/appex-sharedux
@@ -669,6 +670,8 @@ x-pack/test/licensing_plugin/plugins/test_feature_usage @elastic/kibana-security
packages/kbn-test-jest-helpers @elastic/kibana-operations
packages/kbn-test-subj-selector @elastic/kibana-operations
x-pack/examples/testing_embedded_lens @elastic/kibana-visualizations
+packages/kbn-text-based-editor @elastic/kibana-visualizations
+src/plugins/text_based_languages @elastic/kibana-visualizations
x-pack/examples/third_party_lens_navigation_prompt @elastic/kibana-visualizations
x-pack/examples/third_party_vis_lens_example @elastic/kibana-visualizations
x-pack/plugins/threat_intelligence @elastic/protections-experience
@@ -791,16 +794,7 @@ packages/kbn-yarn-lock-validator @elastic/kibana-operations
#CC# /x-pack/plugins/reporting/ @elastic/appex-sharedux
#CC# /x-pack/plugins/serverless_security/ @elastic/appex-sharedux
-### Observability Plugins
-
-# Observability Shared App
-x-pack/plugins/observability_shared @elastic/observability-ui
-
-# Observability App
-x-pack/plugins/observability @elastic/actionable-observability
-
-# Observability App > Overview page
-x-pack/plugins/observability/public/pages/overview @elastic/observability-ui
+### Observability packages
# Observability App > Alert Details
x-pack/packages/observability/alert_details @elastic/actionable-observability
@@ -845,13 +839,6 @@ x-pack/test/observability_functional @elastic/actionable-observability
/x-pack/test/functional/services/uptime @elastic/uptime
/x-pack/test/api_integration/apis/uptime @elastic/uptime
/x-pack/test/api_integration/apis/synthetics @elastic/uptime
-/x-pack/plugins/observability/public/components/shared/exploratory_view @elastic/uptime
-/x-pack/plugins/observability/public/components/shared/field_value_suggestions @elastic/uptime
-/x-pack/plugins/observability/public/components/shared/core_web_vitals @elastic/uptime
-/x-pack/plugins/observability/public/components/shared/load_when_in_view @elastic/uptime
-/x-pack/plugins/observability/public/components/shared/filter_value_label @elastic/uptime
-/x-pack/plugins/observability/public/utils/observability_data_views @elastic/uptime
-/x-pack/plugins/observability/e2e @elastic/uptime
# Client Side Monitoring / Uptime (lives in APM directories but owned by Uptime)
/x-pack/plugins/apm/public/application/uxApp.tsx @elastic/uptime
@@ -859,7 +846,7 @@ x-pack/test/observability_functional @elastic/actionable-observability
/x-pack/test/apm_api_integration/tests/csm/ @elastic/uptime
# Observability onboarding tour
-/x-pack/plugins/observability/public/components/shared/tour @elastic/platform-onboarding
+/x-pack/plugins/observability_shared/public/components/tour @elastic/platform-onboarding
/x-pack/test/functional/apps/infra/tour.ts @elastic/platform-onboarding
### END Observability Plugins
@@ -953,6 +940,7 @@ x-pack/test/observability_functional @elastic/actionable-observability
/x-pack/.telemetryrc.json @elastic/kibana-core
/src/plugins/telemetry/schema/ @elastic/kibana-core @elastic/kibana-telemetry
/x-pack/plugins/telemetry_collection_xpack/schema/ @elastic/kibana-core @elastic/kibana-telemetry
+x-pack/plugins/cloud_integrations/cloud_full_story/server/config.ts @elastic/kibana-core @elastic/kibana-telemetry @shahinakmal
# Kibana Localization
/src/dev/i18n/ @elastic/kibana-localization @elastic/kibana-core
@@ -1002,8 +990,6 @@ x-pack/test/observability_functional @elastic/actionable-observability
#CC# /x-pack/plugins/cross_cluster_replication/ @elastic/platform-deployment-management
# Security Solution
-/x-pack/test/endpoint_api_integration_no_ingest/ @elastic/security-solution
-/x-pack/test/security_solution_endpoint/ @elastic/security-solution
/x-pack/test/functional/es_archives/endpoint/ @elastic/security-solution
/x-pack/test/plugin_functional/test_suites/resolver/ @elastic/security-solution
/x-pack/test/detection_engine_api_integration @elastic/security-solution
@@ -1085,25 +1071,12 @@ x-pack/test/observability_functional @elastic/actionable-observability
/x-pack/plugins/security_solution/server/search_strategy/security_solution/factory/network @elastic/security-threat-hunting-explore
/x-pack/plugins/security_solution/server/search_strategy/security_solution/factory/users @elastic/security-threat-hunting-explore
-## Security Solution sub teams - Detections and Response Alerts
-/x-pack/plugins/security_solution/common/detection_engine/schemas/alerts @elastic/security-detections-response-alerts
-/x-pack/plugins/security_solution/common/field_maps @elastic/security-detections-response-alerts
-
-/x-pack/plugins/security_solution/public/detection_engine/rule_creation_ui @elastic/security-detections-response-alerts
-/x-pack/plugins/security_solution/public/detections/pages/alerts @elastic/security-detections-response-alerts
-
-/x-pack/plugins/security_solution/server/lib/detection_engine/migrations @elastic/security-detections-response-alerts
-/x-pack/plugins/security_solution/server/lib/detection_engine/rule_preview @elastic/security-detections-response-alerts
-/x-pack/plugins/security_solution/server/lib/detection_engine/rule_types @elastic/security-detections-response-alerts
-/x-pack/plugins/security_solution/server/lib/detection_engine/routes/index @elastic/security-detections-response-alerts
-/x-pack/plugins/security_solution/server/lib/detection_engine/routes/signals @elastic/security-detections-response-alerts
-
## Security Solution sub teams - Detection Rule Management
/x-pack/plugins/security_solution/common/detection_engine/fleet_integrations @elastic/security-detection-rule-management
/x-pack/plugins/security_solution/common/detection_engine/prebuilt_rules @elastic/security-detection-rule-management
/x-pack/plugins/security_solution/common/detection_engine/rule_management @elastic/security-detection-rule-management
/x-pack/plugins/security_solution/common/detection_engine/rule_monitoring @elastic/security-detection-rule-management
-/x-pack/plugins/security_solution/common/detection_engine/rule_schema @elastic/security-detection-rule-management @elastic/security-detections-response-alerts
+/x-pack/plugins/security_solution/common/detection_engine/rule_schema @elastic/security-detection-rule-management @elastic/security-detection-engine
/x-pack/plugins/security_solution/public/common/components/health_truncate_text @elastic/security-detection-rule-management
/x-pack/plugins/security_solution/public/common/components/links_to_docs @elastic/security-detection-rule-management
@@ -1117,7 +1090,7 @@ x-pack/test/observability_functional @elastic/actionable-observability
/x-pack/plugins/security_solution/public/detections/components/callouts @elastic/security-detection-rule-management
/x-pack/plugins/security_solution/public/detections/components/modals/ml_job_upgrade_modal @elastic/security-detection-rule-management
/x-pack/plugins/security_solution/public/detections/components/rules @elastic/security-detection-rule-management
-/x-pack/plugins/security_solution/public/detections/components/rules/rule_preview @elastic/security-detections-response-alerts
+/x-pack/plugins/security_solution/public/detections/components/rules/rule_preview @elastic/security-detection-engine
/x-pack/plugins/security_solution/public/detections/containers/detection_engine/rules @elastic/security-detection-rule-management
/x-pack/plugins/security_solution/public/detections/mitre @elastic/security-detection-rule-management
/x-pack/plugins/security_solution/public/detections/pages/detection_engine/rules @elastic/security-detection-rule-management
@@ -1127,49 +1100,61 @@ x-pack/test/observability_functional @elastic/actionable-observability
/x-pack/plugins/security_solution/server/lib/detection_engine/prebuilt_rules @elastic/security-detection-rule-management
/x-pack/plugins/security_solution/server/lib/detection_engine/rule_management @elastic/security-detection-rule-management
/x-pack/plugins/security_solution/server/lib/detection_engine/rule_monitoring @elastic/security-detection-rule-management
-/x-pack/plugins/security_solution/server/lib/detection_engine/rule_schema @elastic/security-detection-rule-management @elastic/security-detections-response-alerts
+/x-pack/plugins/security_solution/server/lib/detection_engine/rule_schema @elastic/security-detection-rule-management @elastic/security-detection-engine
/x-pack/plugins/security_solution/server/utils @elastic/security-detection-rule-management
-## Security Solution sub teams - Security Platform
+## Security Solution sub teams - Detection Engine
+
+/x-pack/plugins/security_solution/common/detection_engine/schemas/alerts @elastic/security-detection-engine
+/x-pack/plugins/security_solution/common/field_maps @elastic/security-detection-engine
+
+/x-pack/plugins/security_solution/public/detection_engine/rule_creation_ui @elastic/security-detection-engine
+/x-pack/plugins/security_solution/public/detections/pages/alerts @elastic/security-detection-engine
+
+/x-pack/plugins/security_solution/server/lib/detection_engine/migrations @elastic/security-detection-engine
+/x-pack/plugins/security_solution/server/lib/detection_engine/rule_preview @elastic/security-detection-engine
+/x-pack/plugins/security_solution/server/lib/detection_engine/rule_types @elastic/security-detection-engine
+/x-pack/plugins/security_solution/server/lib/detection_engine/routes/index @elastic/security-detection-engine
+/x-pack/plugins/security_solution/server/lib/detection_engine/routes/signals @elastic/security-detection-engine
-/x-pack/plugins/security_solution/cypress/e2e/data_sources @elastic/security-solution-platform
-/x-pack/plugins/security_solution/cypress/e2e/exceptions @elastic/security-solution-platform
-/x-pack/plugins/security_solution/cypress/e2e/value_lists @elastic/security-solution-platform
+/x-pack/plugins/security_solution/cypress/e2e/data_sources @elastic/security-detection-engine
+/x-pack/plugins/security_solution/cypress/e2e/exceptions @elastic/security-detection-engine
+/x-pack/plugins/security_solution/cypress/e2e/value_lists @elastic/security-detection-engine
-/x-pack/plugins/security_solution/common/detection_engine/rule_exceptions @elastic/security-solution-platform
+/x-pack/plugins/security_solution/common/detection_engine/rule_exceptions @elastic/security-detection-engine
-/x-pack/plugins/security_solution/public/detection_engine/rule_exceptions @elastic/security-solution-platform
-/x-pack/plugins/security_solution/public/detection_engine/rule_exceptions_ui @elastic/security-solution-platform
-/x-pack/plugins/security_solution/public/common/components/exceptions @elastic/security-solution-platform
-/x-pack/plugins/security_solution/public/exceptions @elastic/security-solution-platform
-/x-pack/plugins/security_solution/public/detections/containers/detection_engine/lists @elastic/security-solution-platform
-/x-pack/plugins/security_solution/public/common/components/sourcerer @elastic/security-solution-platform
+/x-pack/plugins/security_solution/public/detection_engine/rule_exceptions @elastic/security-detection-engine
+/x-pack/plugins/security_solution/public/detection_engine/rule_exceptions_ui @elastic/security-detection-engine
+/x-pack/plugins/security_solution/public/common/components/exceptions @elastic/security-detection-engine
+/x-pack/plugins/security_solution/public/exceptions @elastic/security-detection-engine
+/x-pack/plugins/security_solution/public/detections/containers/detection_engine/lists @elastic/security-detection-engine
+/x-pack/plugins/security_solution/public/common/components/sourcerer @elastic/security-detection-engine
-/x-pack/plugins/security_solution/server/lib/detection_engine/rule_actions_legacy @elastic/security-solution-platform
-/x-pack/plugins/security_solution/server/lib/detection_engine/rule_exceptions @elastic/security-solution-platform
-/x-pack/plugins/security_solution/server/lib/sourcerer @elastic/security-solution-platform
+/x-pack/plugins/security_solution/server/lib/detection_engine/rule_actions_legacy @elastic/security-detection-engine
+/x-pack/plugins/security_solution/server/lib/detection_engine/rule_exceptions @elastic/security-detection-engine
+/x-pack/plugins/security_solution/server/lib/sourcerer @elastic/security-detection-engine
## Security Threat Intelligence - Under Security Platform
-/x-pack/plugins/security_solution/public/common/components/threat_match @elastic/security-solution-platform
+/x-pack/plugins/security_solution/public/common/components/threat_match @elastic/security-detection-engine
## Security Solution cross teams ownership
/x-pack/plugins/security_solution/cypress/fixtures @elastic/security-detections-response @elastic/security-threat-hunting
/x-pack/plugins/security_solution/cypress/helpers @elastic/security-detections-response @elastic/security-threat-hunting
-/x-pack/plugins/security_solution/cypress/e2e/detection_rules @elastic/security-detection-rule-management @elastic/security-detections-response-alerts
+/x-pack/plugins/security_solution/cypress/e2e/detection_rules @elastic/security-detection-rule-management @elastic/security-detection-engine
/x-pack/plugins/security_solution/cypress/objects @elastic/security-detections-response @elastic/security-threat-hunting
/x-pack/plugins/security_solution/cypress/plugins @elastic/security-detections-response @elastic/security-threat-hunting
/x-pack/plugins/security_solution/cypress/screens/common @elastic/security-detections-response @elastic/security-threat-hunting
/x-pack/plugins/security_solution/cypress/support @elastic/security-detections-response @elastic/security-threat-hunting
-/x-pack/plugins/security_solution/cypress/urls @elastic/security-threat-hunting-investigations @elastic/security-solution-platform
+/x-pack/plugins/security_solution/cypress/urls @elastic/security-threat-hunting-investigations @elastic/security-detection-engine
/x-pack/plugins/security_solution/common/ecs @elastic/security-threat-hunting-investigations
-/x-pack/plugins/security_solution/common/test @elastic/security-detection-rule-management @elastic/security-detections-response-alerts
+/x-pack/plugins/security_solution/common/test @elastic/security-detection-rule-management @elastic/security-detection-engine
/x-pack/plugins/security_solution/public/common/components/callouts @elastic/security-detections-response
/x-pack/plugins/security_solution/public/common/components/hover_actions @elastic/security-threat-hunting-explore @elastic/security-threat-hunting-investigations
-/x-pack/plugins/security_solution/server/lib/detection_engine/rule_actions @elastic/security-solution-platform @elastic/security-detection-rule-management
+/x-pack/plugins/security_solution/server/lib/detection_engine/rule_actions @elastic/security-detection-engine @elastic/security-detection-rule-management
/x-pack/plugins/security_solution/server/routes @elastic/security-detections-response @elastic/security-threat-hunting
## Security Solution sub teams - security-defend-workflows
@@ -1183,7 +1168,7 @@ x-pack/test/observability_functional @elastic/actionable-observability
/x-pack/plugins/security_solution/server/fleet_integration/ @elastic/security-defend-workflows
/x-pack/plugins/security_solution/scripts/endpoint/event_filters/ @elastic/security-defend-workflows
/x-pack/plugins/security_solution/scripts/endpoint/trusted_apps/ @elastic/security-defend-workflows
-/x-pack/test/security_solution_endpoint/apps/endpoint/ @elastic/security-defend-workflows
+/x-pack/test/security_solution_endpoint/ @elastic/security-defend-workflows
/x-pack/test/security_solution_endpoint_api_int/ @elastic/security-defend-workflows
## Security Solution sub teams - security-telemetry (Data Engineering)
@@ -1230,7 +1215,6 @@ x-pack/test/threat_intelligence_cypress @elastic/protections-experience
/x-pack/plugins/apm/**/*.scss @elastic/observability-design
/x-pack/plugins/infra/**/*.scss @elastic/observability-design
/x-pack/plugins/fleet/**/*.scss @elastic/observability-design
-/x-pack/plugins/observability/**/*.scss @elastic/observability-design
/x-pack/plugins/monitoring/**/*.scss @elastic/observability-design
# Ent. Search design
diff --git a/.github/workflows/deploy-my-kibana.yml b/.github/workflows/deploy-my-kibana.yml
index e756b648a1802..1dafc21d55328 100644
--- a/.github/workflows/deploy-my-kibana.yml
+++ b/.github/workflows/deploy-my-kibana.yml
@@ -2,7 +2,7 @@
##
## This the automation to let Observability team members to deploy a Kibana instance
## using the Observability test environments.
-## It will deploy a new instance for those who add a comment /oblt-deploy
+## It will deploy a new instance for those who add a comment /oblt-deploy or /oblt-deploy-serverless
## only supported for Elasticians.
##
## Owner: @elastic/observablt-robots
@@ -28,3 +28,15 @@ jobs:
vaultUrl: ${{ secrets.OBLT_VAULT_ADDR }}
vaultRoleId: ${{ secrets.OBLT_VAULT_ROLE_ID }}
vaultSecretId: ${{ secrets.OBLT_VAULT_SECRET_ID }}
+ serverless: false
+
+ deploy-my-kibana-serverless:
+ if: ${{ github.event.issue.pull_request && github.event.comment.body == '/oblt-deploy-serverless'}}
+ runs-on: ubuntu-latest
+ steps:
+ - uses: elastic/apm-pipeline-library/.github/actions/deploy-my-kibana@current
+ with:
+ vaultUrl: ${{ secrets.OBLT_VAULT_ADDR }}
+ vaultRoleId: ${{ secrets.OBLT_VAULT_ROLE_ID }}
+ vaultSecretId: ${{ secrets.OBLT_VAULT_SECRET_ID }}
+ serverless: true
diff --git a/.github/workflows/oblt-github-commands.yml b/.github/workflows/oblt-github-commands.yml
index 4388901e2fa0e..7820905f6a302 100644
--- a/.github/workflows/oblt-github-commands.yml
+++ b/.github/workflows/oblt-github-commands.yml
@@ -50,6 +50,7 @@ jobs:
Just comment with:
- \`/oblt-deploy\` : Deploy a Kibana instance using the Observability test environments.
+ - \`/oblt-deploy-serverless\` : Deploy a Kibana instance using the Observability `serverless` test environment [only for main].
- \`run\` \`elasticsearch-ci/docs\` : Re-trigger the docs validation. (use unformatted text in the comment!)
diff --git a/.gitignore b/.gitignore
index 4d3db591bd758..6696ab8bcadb9 100644
--- a/.gitignore
+++ b/.gitignore
@@ -42,6 +42,14 @@ __tmp__
/x-pack/test/*/screenshots/visual_regression_gallery.html
/x-pack/test/functional/apps/*/*/reporting/reports/failure
+# Ignore the same artifacts in x-pack/test_serverless
+/x-pack/test_serverless/*/failure_debug
+/x-pack/test_serverless/*/screenshots/diff
+/x-pack/test_serverless/*/screenshots/failure
+/x-pack/test_serverless/*/screenshots/session
+/x-pack/test_serverless/*/screenshots/visual_regression_gallery.html
+/x-pack/test_serverless/functional/apps/*/*/reporting/reports/failure
+
/html_docs
.eslintcache
/plugins/
diff --git a/.i18nrc.json b/.i18nrc.json
index d3afda75dce51..a2f4444c54d3a 100644
--- a/.i18nrc.json
+++ b/.i18nrc.json
@@ -76,6 +76,7 @@
"newsfeed": "src/plugins/newsfeed",
"presentationUtil": "src/plugins/presentation_util",
"randomSampling": "x-pack/packages/kbn-random-sampling",
+ "textBasedEditor": "packages/kbn-text-based-editor",
"reporting": "packages/kbn-reporting/common",
"savedObjects": "src/plugins/saved_objects",
"savedObjectsFinder": "src/plugins/saved_objects_finder",
@@ -87,6 +88,7 @@
"serverlessPackages": "packages/serverless",
"coloring": "packages/kbn-coloring/src",
"languageDocumentationPopover": "packages/kbn-language-documentation-popover/src",
+ "textBasedLanguages": "src/plugins/text_based_languages",
"statusPage": "src/legacy/core_plugins/status_page",
"telemetry": ["src/plugins/telemetry", "src/plugins/telemetry_management_section"],
"timelion": ["src/plugins/vis_types/timelion"],
diff --git a/api_docs/actions.mdx b/api_docs/actions.mdx
index cb76abbdb8ce7..c6bff6d45eddd 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-05-15
+date: 2023-05-23
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 0fcbc7c69c49d..bf8454fd5c201 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-05-15
+date: 2023-05-23
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 7250973c2f62b..319744df1e2c4 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-05-15
+date: 2023-05-23
tags: ['contributor', 'dev', 'apidocs', 'kibana', 'aiops']
---
import aiopsObj from './aiops.devdocs.json';
diff --git a/api_docs/alerting.mdx b/api_docs/alerting.mdx
index 2c2e9f485f1ee..5433b884769d2 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-05-15
+date: 2023-05-23
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 c3cc8baa5010f..a64fef5ad5e13 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-05-15
+date: 2023-05-23
tags: ['contributor', 'dev', 'apidocs', 'kibana', 'apm']
---
import apmObj from './apm.devdocs.json';
diff --git a/api_docs/asset_manager.mdx b/api_docs/asset_manager.mdx
index 06550b0905cab..eaf794c865d42 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-05-15
+date: 2023-05-23
tags: ['contributor', 'dev', 'apidocs', 'kibana', 'assetManager']
---
import assetManagerObj from './asset_manager.devdocs.json';
diff --git a/api_docs/banners.mdx b/api_docs/banners.mdx
index 8d6026a3e9f5c..0d92c7e517746 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-05-15
+date: 2023-05-23
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 be970870ac5d8..58e180f2658be 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-05-15
+date: 2023-05-23
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 8df21db9c1e12..0300c76433dd8 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-05-15
+date: 2023-05-23
tags: ['contributor', 'dev', 'apidocs', 'kibana', 'canvas']
---
import canvasObj from './canvas.devdocs.json';
diff --git a/api_docs/cases.devdocs.json b/api_docs/cases.devdocs.json
index 4b3cd8fd8e35d..9e96296b9afb5 100644
--- a/api_docs/cases.devdocs.json
+++ b/api_docs/cases.devdocs.json
@@ -970,7 +970,7 @@
"section": "def-common.CasesFindResponseUI",
"text": "CasesFindResponseUI"
},
- ">; getCasesStatus: (query: { from?: string | undefined; to?: string | undefined; owner?: string | string[] | undefined; }, signal?: AbortSignal | undefined) => Promise<{ countOpenCases: number; countInProgressCases: number; countClosedCases: number; }>; getCasesMetrics: (query: { features: string[]; } & { from?: string | undefined; to?: string | undefined; owner?: string | string[] | undefined; }, signal?: AbortSignal | undefined) => Promise<{ mttr?: number | null | undefined; }>; bulkGet: (params: { ids: string[]; }, signal?: AbortSignal | undefined) => Promise<{ cases: { id: string; description: string; title: string; owner: string; version: string; totalComments: number; status: ",
+ ">; getCasesStatus: (query: { from?: string | undefined; to?: string | undefined; owner?: string | string[] | undefined; }, signal?: AbortSignal | undefined) => Promise<{ countOpenCases: number; countInProgressCases: number; countClosedCases: number; }>; getCasesMetrics: (query: { features: string[]; } & { from?: string | undefined; to?: string | undefined; owner?: string | string[] | undefined; }, signal?: AbortSignal | undefined) => Promise<{ mttr?: number | null | undefined; }>; bulkGet: (params: { ids: string[]; }, signal?: AbortSignal | undefined) => Promise<{ cases: ({ description: string; status: ",
{
"pluginId": "@kbn/cases-components",
"scope": "common",
@@ -978,7 +978,159 @@
"section": "def-common.CaseStatuses",
"text": "CaseStatuses"
},
- "; created_at: string; created_by: { email: string | null | undefined; full_name: string | null | undefined; username: string | null | undefined; } & { profile_uid?: string | undefined; }; }[]; errors: { error: string; message: string; status: number | undefined; caseId: string; }[]; }>; }; }"
+ "; tags: string[]; title: string; connector: { id: string; } & (({ type: ",
+ {
+ "pluginId": "cases",
+ "scope": "common",
+ "docId": "kibCasesPluginApi",
+ "section": "def-common.ConnectorTypes",
+ "text": "ConnectorTypes"
+ },
+ ".casesWebhook; fields: null; } & { name: string; }) | ({ type: ",
+ {
+ "pluginId": "cases",
+ "scope": "common",
+ "docId": "kibCasesPluginApi",
+ "section": "def-common.ConnectorTypes",
+ "text": "ConnectorTypes"
+ },
+ ".jira; fields: { issueType: string | null; priority: string | null; parent: string | null; } | null; } & { name: string; }) | ({ type: ",
+ {
+ "pluginId": "cases",
+ "scope": "common",
+ "docId": "kibCasesPluginApi",
+ "section": "def-common.ConnectorTypes",
+ "text": "ConnectorTypes"
+ },
+ ".none; fields: null; } & { name: string; }) | ({ type: ",
+ {
+ "pluginId": "cases",
+ "scope": "common",
+ "docId": "kibCasesPluginApi",
+ "section": "def-common.ConnectorTypes",
+ "text": "ConnectorTypes"
+ },
+ ".resilient; fields: { incidentTypes: string[] | null; severityCode: string | null; } | null; } & { name: string; }) | ({ type: ",
+ {
+ "pluginId": "cases",
+ "scope": "common",
+ "docId": "kibCasesPluginApi",
+ "section": "def-common.ConnectorTypes",
+ "text": "ConnectorTypes"
+ },
+ ".serviceNowITSM; fields: { impact: string | null; severity: string | null; urgency: string | null; category: string | null; subcategory: string | null; } | null; } & { name: string; }) | ({ type: ",
+ {
+ "pluginId": "cases",
+ "scope": "common",
+ "docId": "kibCasesPluginApi",
+ "section": "def-common.ConnectorTypes",
+ "text": "ConnectorTypes"
+ },
+ ".serviceNowSIR; fields: { category: string | null; destIp: boolean | null; malwareHash: boolean | null; malwareUrl: boolean | null; priority: string | null; sourceIp: boolean | null; subcategory: string | null; } | null; } & { name: string; }) | ({ type: ",
+ {
+ "pluginId": "cases",
+ "scope": "common",
+ "docId": "kibCasesPluginApi",
+ "section": "def-common.ConnectorTypes",
+ "text": "ConnectorTypes"
+ },
+ ".swimlane; fields: { caseId: string | null; } | null; } & { name: string; })); settings: { syncAlerts: boolean; }; owner: string; severity: ",
+ {
+ "pluginId": "cases",
+ "scope": "common",
+ "docId": "kibCasesPluginApi",
+ "section": "def-common.CaseSeverity",
+ "text": "CaseSeverity"
+ },
+ "; assignees: { uid: string; }[]; } & { duration: number | null; closed_at: string | null; closed_by: ({ email: string | null | undefined; full_name: string | null | undefined; username: string | null | undefined; } & { profile_uid?: string | undefined; }) | null; created_at: string; created_by: { email: string | null | undefined; full_name: string | null | undefined; username: string | null | undefined; } & { profile_uid?: string | undefined; }; external_service: ({ connector_id: string; } & { connector_name: string; external_id: string; external_title: string; external_url: string; pushed_at: string; pushed_by: { email: string | null | undefined; full_name: string | null | undefined; username: string | null | undefined; } & { profile_uid?: string | undefined; }; }) | null; updated_at: string | null; updated_by: ({ email: string | null | undefined; full_name: string | null | undefined; username: string | null | undefined; } & { profile_uid?: string | undefined; }) | null; } & { id: string; totalComment: number; totalAlerts: number; version: string; } & { comments?: ((({ comment: string; type: ",
+ {
+ "pluginId": "cases",
+ "scope": "common",
+ "docId": "kibCasesPluginApi",
+ "section": "def-common.CommentType",
+ "text": "CommentType"
+ },
+ ".user; owner: string; } & { created_at: string; created_by: { email: string | null | undefined; full_name: string | null | undefined; username: string | null | undefined; } & { profile_uid?: string | undefined; }; owner: string; pushed_at: string | null; pushed_by: ({ email: string | null | undefined; full_name: string | null | undefined; username: string | null | undefined; } & { profile_uid?: string | undefined; }) | null; updated_at: string | null; updated_by: ({ email: string | null | undefined; full_name: string | null | undefined; username: string | null | undefined; } & { profile_uid?: string | undefined; }) | null; }) | ({ type: ",
+ {
+ "pluginId": "cases",
+ "scope": "common",
+ "docId": "kibCasesPluginApi",
+ "section": "def-common.CommentType",
+ "text": "CommentType"
+ },
+ ".alert; alertId: string | string[]; index: string | string[]; rule: { id: string | null; name: string | null; }; owner: string; } & { created_at: string; created_by: { email: string | null | undefined; full_name: string | null | undefined; username: string | null | undefined; } & { profile_uid?: string | undefined; }; owner: string; pushed_at: string | null; pushed_by: ({ email: string | null | undefined; full_name: string | null | undefined; username: string | null | undefined; } & { profile_uid?: string | undefined; }) | null; updated_at: string | null; updated_by: ({ email: string | null | undefined; full_name: string | null | undefined; username: string | null | undefined; } & { profile_uid?: string | undefined; }) | null; }) | ({ type: ",
+ {
+ "pluginId": "cases",
+ "scope": "common",
+ "docId": "kibCasesPluginApi",
+ "section": "def-common.CommentType",
+ "text": "CommentType"
+ },
+ ".actions; comment: string; actions: { targets: { hostname: string; endpointId: string; }[]; type: string; }; owner: string; } & { created_at: string; created_by: { email: string | null | undefined; full_name: string | null | undefined; username: string | null | undefined; } & { profile_uid?: string | undefined; }; owner: string; pushed_at: string | null; pushed_by: ({ email: string | null | undefined; full_name: string | null | undefined; username: string | null | undefined; } & { profile_uid?: string | undefined; }) | null; updated_at: string | null; updated_by: ({ email: string | null | undefined; full_name: string | null | undefined; username: string | null | undefined; } & { profile_uid?: string | undefined; }) | null; }) | (({ externalReferenceId: string; externalReferenceStorage: { type: ",
+ {
+ "pluginId": "cases",
+ "scope": "common",
+ "docId": "kibCasesPluginApi",
+ "section": "def-common.ExternalReferenceStorageType",
+ "text": "ExternalReferenceStorageType"
+ },
+ ".elasticSearchDoc; }; externalReferenceAttachmentTypeId: string; externalReferenceMetadata: { [x: string]: ",
+ {
+ "pluginId": "@kbn/utility-types",
+ "scope": "common",
+ "docId": "kibKbnUtilityTypesPluginApi",
+ "section": "def-common.JsonValue",
+ "text": "JsonValue"
+ },
+ "; } | null; type: ",
+ {
+ "pluginId": "cases",
+ "scope": "common",
+ "docId": "kibCasesPluginApi",
+ "section": "def-common.CommentType",
+ "text": "CommentType"
+ },
+ ".externalReference; owner: string; } | { externalReferenceId: string; externalReferenceStorage: { type: ",
+ {
+ "pluginId": "cases",
+ "scope": "common",
+ "docId": "kibCasesPluginApi",
+ "section": "def-common.ExternalReferenceStorageType",
+ "text": "ExternalReferenceStorageType"
+ },
+ ".savedObject; soType: string; }; externalReferenceAttachmentTypeId: string; externalReferenceMetadata: { [x: string]: ",
+ {
+ "pluginId": "@kbn/utility-types",
+ "scope": "common",
+ "docId": "kibKbnUtilityTypesPluginApi",
+ "section": "def-common.JsonValue",
+ "text": "JsonValue"
+ },
+ "; } | null; type: ",
+ {
+ "pluginId": "cases",
+ "scope": "common",
+ "docId": "kibCasesPluginApi",
+ "section": "def-common.CommentType",
+ "text": "CommentType"
+ },
+ ".externalReference; owner: string; }) & { created_at: string; created_by: { email: string | null | undefined; full_name: string | null | undefined; username: string | null | undefined; } & { profile_uid?: string | undefined; }; owner: string; pushed_at: string | null; pushed_by: ({ email: string | null | undefined; full_name: string | null | undefined; username: string | null | undefined; } & { profile_uid?: string | undefined; }) | null; updated_at: string | null; updated_by: ({ email: string | null | undefined; full_name: string | null | undefined; username: string | null | undefined; } & { profile_uid?: string | undefined; }) | null; }) | ({ type: ",
+ {
+ "pluginId": "cases",
+ "scope": "common",
+ "docId": "kibCasesPluginApi",
+ "section": "def-common.CommentType",
+ "text": "CommentType"
+ },
+ ".persistableState; owner: string; persistableStateAttachmentTypeId: string; persistableStateAttachmentState: { [x: string]: ",
+ {
+ "pluginId": "@kbn/utility-types",
+ "scope": "common",
+ "docId": "kibKbnUtilityTypesPluginApi",
+ "section": "def-common.JsonValue",
+ "text": "JsonValue"
+ },
+ "; }; } & { created_at: string; created_by: { email: string | null | undefined; full_name: string | null | undefined; username: string | null | undefined; } & { profile_uid?: string | undefined; }; owner: string; pushed_at: string | null; pushed_by: ({ email: string | null | undefined; full_name: string | null | undefined; username: string | null | undefined; } & { profile_uid?: string | undefined; }) | null; updated_at: string | null; updated_by: ({ email: string | null | undefined; full_name: string | null | undefined; username: string | null | undefined; } & { profile_uid?: string | undefined; }) | null; })) & { id: string; version: string; })[] | undefined; })[]; errors: { error: string; message: string; status: number | undefined; caseId: string; }[]; }>; }; }"
],
"path": "x-pack/plugins/cases/public/types.ts",
"deprecated": false,
@@ -2208,7 +2360,7 @@
"label": "CasesBulkGetResponse",
"description": [],
"signature": [
- "{ cases: { id: string; description: string; title: string; owner: string; version: string; totalComments: number; status: ",
+ "{ cases: ({ description: string; status: ",
{
"pluginId": "@kbn/cases-components",
"scope": "common",
@@ -2216,7 +2368,159 @@
"section": "def-common.CaseStatuses",
"text": "CaseStatuses"
},
- "; created_at: string; created_by: { email: string | null | undefined; full_name: string | null | undefined; username: string | null | undefined; } & { profile_uid?: string | undefined; }; }[]; errors: { error: string; message: string; status: number | undefined; caseId: string; }[]; }"
+ "; tags: string[]; title: string; connector: { id: string; } & (({ type: ",
+ {
+ "pluginId": "cases",
+ "scope": "common",
+ "docId": "kibCasesPluginApi",
+ "section": "def-common.ConnectorTypes",
+ "text": "ConnectorTypes"
+ },
+ ".casesWebhook; fields: null; } & { name: string; }) | ({ type: ",
+ {
+ "pluginId": "cases",
+ "scope": "common",
+ "docId": "kibCasesPluginApi",
+ "section": "def-common.ConnectorTypes",
+ "text": "ConnectorTypes"
+ },
+ ".jira; fields: { issueType: string | null; priority: string | null; parent: string | null; } | null; } & { name: string; }) | ({ type: ",
+ {
+ "pluginId": "cases",
+ "scope": "common",
+ "docId": "kibCasesPluginApi",
+ "section": "def-common.ConnectorTypes",
+ "text": "ConnectorTypes"
+ },
+ ".none; fields: null; } & { name: string; }) | ({ type: ",
+ {
+ "pluginId": "cases",
+ "scope": "common",
+ "docId": "kibCasesPluginApi",
+ "section": "def-common.ConnectorTypes",
+ "text": "ConnectorTypes"
+ },
+ ".resilient; fields: { incidentTypes: string[] | null; severityCode: string | null; } | null; } & { name: string; }) | ({ type: ",
+ {
+ "pluginId": "cases",
+ "scope": "common",
+ "docId": "kibCasesPluginApi",
+ "section": "def-common.ConnectorTypes",
+ "text": "ConnectorTypes"
+ },
+ ".serviceNowITSM; fields: { impact: string | null; severity: string | null; urgency: string | null; category: string | null; subcategory: string | null; } | null; } & { name: string; }) | ({ type: ",
+ {
+ "pluginId": "cases",
+ "scope": "common",
+ "docId": "kibCasesPluginApi",
+ "section": "def-common.ConnectorTypes",
+ "text": "ConnectorTypes"
+ },
+ ".serviceNowSIR; fields: { category: string | null; destIp: boolean | null; malwareHash: boolean | null; malwareUrl: boolean | null; priority: string | null; sourceIp: boolean | null; subcategory: string | null; } | null; } & { name: string; }) | ({ type: ",
+ {
+ "pluginId": "cases",
+ "scope": "common",
+ "docId": "kibCasesPluginApi",
+ "section": "def-common.ConnectorTypes",
+ "text": "ConnectorTypes"
+ },
+ ".swimlane; fields: { caseId: string | null; } | null; } & { name: string; })); settings: { syncAlerts: boolean; }; owner: string; severity: ",
+ {
+ "pluginId": "cases",
+ "scope": "common",
+ "docId": "kibCasesPluginApi",
+ "section": "def-common.CaseSeverity",
+ "text": "CaseSeverity"
+ },
+ "; assignees: { uid: string; }[]; } & { duration: number | null; closed_at: string | null; closed_by: ({ email: string | null | undefined; full_name: string | null | undefined; username: string | null | undefined; } & { profile_uid?: string | undefined; }) | null; created_at: string; created_by: { email: string | null | undefined; full_name: string | null | undefined; username: string | null | undefined; } & { profile_uid?: string | undefined; }; external_service: ({ connector_id: string; } & { connector_name: string; external_id: string; external_title: string; external_url: string; pushed_at: string; pushed_by: { email: string | null | undefined; full_name: string | null | undefined; username: string | null | undefined; } & { profile_uid?: string | undefined; }; }) | null; updated_at: string | null; updated_by: ({ email: string | null | undefined; full_name: string | null | undefined; username: string | null | undefined; } & { profile_uid?: string | undefined; }) | null; } & { id: string; totalComment: number; totalAlerts: number; version: string; } & { comments?: ((({ comment: string; type: ",
+ {
+ "pluginId": "cases",
+ "scope": "common",
+ "docId": "kibCasesPluginApi",
+ "section": "def-common.CommentType",
+ "text": "CommentType"
+ },
+ ".user; owner: string; } & { created_at: string; created_by: { email: string | null | undefined; full_name: string | null | undefined; username: string | null | undefined; } & { profile_uid?: string | undefined; }; owner: string; pushed_at: string | null; pushed_by: ({ email: string | null | undefined; full_name: string | null | undefined; username: string | null | undefined; } & { profile_uid?: string | undefined; }) | null; updated_at: string | null; updated_by: ({ email: string | null | undefined; full_name: string | null | undefined; username: string | null | undefined; } & { profile_uid?: string | undefined; }) | null; }) | ({ type: ",
+ {
+ "pluginId": "cases",
+ "scope": "common",
+ "docId": "kibCasesPluginApi",
+ "section": "def-common.CommentType",
+ "text": "CommentType"
+ },
+ ".alert; alertId: string | string[]; index: string | string[]; rule: { id: string | null; name: string | null; }; owner: string; } & { created_at: string; created_by: { email: string | null | undefined; full_name: string | null | undefined; username: string | null | undefined; } & { profile_uid?: string | undefined; }; owner: string; pushed_at: string | null; pushed_by: ({ email: string | null | undefined; full_name: string | null | undefined; username: string | null | undefined; } & { profile_uid?: string | undefined; }) | null; updated_at: string | null; updated_by: ({ email: string | null | undefined; full_name: string | null | undefined; username: string | null | undefined; } & { profile_uid?: string | undefined; }) | null; }) | ({ type: ",
+ {
+ "pluginId": "cases",
+ "scope": "common",
+ "docId": "kibCasesPluginApi",
+ "section": "def-common.CommentType",
+ "text": "CommentType"
+ },
+ ".actions; comment: string; actions: { targets: { hostname: string; endpointId: string; }[]; type: string; }; owner: string; } & { created_at: string; created_by: { email: string | null | undefined; full_name: string | null | undefined; username: string | null | undefined; } & { profile_uid?: string | undefined; }; owner: string; pushed_at: string | null; pushed_by: ({ email: string | null | undefined; full_name: string | null | undefined; username: string | null | undefined; } & { profile_uid?: string | undefined; }) | null; updated_at: string | null; updated_by: ({ email: string | null | undefined; full_name: string | null | undefined; username: string | null | undefined; } & { profile_uid?: string | undefined; }) | null; }) | (({ externalReferenceId: string; externalReferenceStorage: { type: ",
+ {
+ "pluginId": "cases",
+ "scope": "common",
+ "docId": "kibCasesPluginApi",
+ "section": "def-common.ExternalReferenceStorageType",
+ "text": "ExternalReferenceStorageType"
+ },
+ ".elasticSearchDoc; }; externalReferenceAttachmentTypeId: string; externalReferenceMetadata: { [x: string]: ",
+ {
+ "pluginId": "@kbn/utility-types",
+ "scope": "common",
+ "docId": "kibKbnUtilityTypesPluginApi",
+ "section": "def-common.JsonValue",
+ "text": "JsonValue"
+ },
+ "; } | null; type: ",
+ {
+ "pluginId": "cases",
+ "scope": "common",
+ "docId": "kibCasesPluginApi",
+ "section": "def-common.CommentType",
+ "text": "CommentType"
+ },
+ ".externalReference; owner: string; } | { externalReferenceId: string; externalReferenceStorage: { type: ",
+ {
+ "pluginId": "cases",
+ "scope": "common",
+ "docId": "kibCasesPluginApi",
+ "section": "def-common.ExternalReferenceStorageType",
+ "text": "ExternalReferenceStorageType"
+ },
+ ".savedObject; soType: string; }; externalReferenceAttachmentTypeId: string; externalReferenceMetadata: { [x: string]: ",
+ {
+ "pluginId": "@kbn/utility-types",
+ "scope": "common",
+ "docId": "kibKbnUtilityTypesPluginApi",
+ "section": "def-common.JsonValue",
+ "text": "JsonValue"
+ },
+ "; } | null; type: ",
+ {
+ "pluginId": "cases",
+ "scope": "common",
+ "docId": "kibCasesPluginApi",
+ "section": "def-common.CommentType",
+ "text": "CommentType"
+ },
+ ".externalReference; owner: string; }) & { created_at: string; created_by: { email: string | null | undefined; full_name: string | null | undefined; username: string | null | undefined; } & { profile_uid?: string | undefined; }; owner: string; pushed_at: string | null; pushed_by: ({ email: string | null | undefined; full_name: string | null | undefined; username: string | null | undefined; } & { profile_uid?: string | undefined; }) | null; updated_at: string | null; updated_by: ({ email: string | null | undefined; full_name: string | null | undefined; username: string | null | undefined; } & { profile_uid?: string | undefined; }) | null; }) | ({ type: ",
+ {
+ "pluginId": "cases",
+ "scope": "common",
+ "docId": "kibCasesPluginApi",
+ "section": "def-common.CommentType",
+ "text": "CommentType"
+ },
+ ".persistableState; owner: string; persistableStateAttachmentTypeId: string; persistableStateAttachmentState: { [x: string]: ",
+ {
+ "pluginId": "@kbn/utility-types",
+ "scope": "common",
+ "docId": "kibKbnUtilityTypesPluginApi",
+ "section": "def-common.JsonValue",
+ "text": "JsonValue"
+ },
+ "; }; } & { created_at: string; created_by: { email: string | null | undefined; full_name: string | null | undefined; username: string | null | undefined; } & { profile_uid?: string | undefined; }; owner: string; pushed_at: string | null; pushed_by: ({ email: string | null | undefined; full_name: string | null | undefined; username: string | null | undefined; } & { profile_uid?: string | undefined; }) | null; updated_at: string | null; updated_by: ({ email: string | null | undefined; full_name: string | null | undefined; username: string | null | undefined; } & { profile_uid?: string | undefined; }) | null; })) & { id: string; version: string; })[] | undefined; })[]; errors: { error: string; message: string; status: number | undefined; caseId: string; }[]; }"
],
"path": "x-pack/plugins/cases/common/api/cases/case.ts",
"deprecated": false,
diff --git a/api_docs/cases.mdx b/api_docs/cases.mdx
index 0f3d1104c1919..d9363a10f5c4a 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-05-15
+date: 2023-05-23
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 ed7b1b9ebce8f..6c7a47663b0d3 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-05-15
+date: 2023-05-23
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 c225a77b07ad0..ec54eca1519f8 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-05-15
+date: 2023-05-23
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 7532c0a7e292a..dc75fe43cbefe 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-05-15
+date: 2023-05-23
tags: ['contributor', 'dev', 'apidocs', 'kibana', 'cloudChat']
---
import cloudChatObj from './cloud_chat.devdocs.json';
diff --git a/api_docs/cloud_data_migration.mdx b/api_docs/cloud_data_migration.mdx
index 08b4f2db02e4d..2853b8bd06ad7 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-05-15
+date: 2023-05-23
tags: ['contributor', 'dev', 'apidocs', 'kibana', 'cloudDataMigration']
---
import cloudDataMigrationObj from './cloud_data_migration.devdocs.json';
diff --git a/api_docs/cloud_defend.devdocs.json b/api_docs/cloud_defend.devdocs.json
index 40015d4edbbb1..96fff9bfacc8f 100644
--- a/api_docs/cloud_defend.devdocs.json
+++ b/api_docs/cloud_defend.devdocs.json
@@ -13,7 +13,17 @@
"\nGets the cloud_defend link properties of a Cloud Defend page for navigation in the security solution."
],
"signature": [
- "(cloudDefendPage: \"policies\") => CloudDefendLinkItem"
+ "(cloudDefendPage: ",
+ "CloudDefendPage",
+ ") => CloudDefendLinkItem"
],
"path": "x-pack/plugins/cloud_defend/public/common/navigation/security_solution_links.ts",
"deprecated": false,
@@ -22,14 +32,14 @@
{
"parentPluginId": "cloudDefend",
"id": "def-public.getSecuritySolutionLink.$1",
- "type": "string",
+ "type": "CompoundType",
"tags": [],
"label": "cloudDefendPage",
"description": [
"the name of the cloud defend page."
],
"signature": [
- "\"policies\""
+ "CloudDefendPage"
],
"path": "x-pack/plugins/cloud_defend/public/common/navigation/security_solution_links.ts",
"deprecated": false,
@@ -50,7 +60,17 @@
"\nGets the link properties of a Cloud Defend page for navigation in the old security solution navigation."
],
"signature": [
- "(cloudDefendPage: \"policies\", basePath: string) => CloudDefendNavTab"
+ "(cloudDefendPage: ",
+ "CloudDefendPage",
+ ", basePath: string) => CloudDefendNavTab"
],
"path": "x-pack/plugins/cloud_defend/public/common/navigation/security_solution_links.ts",
"deprecated": false,
@@ -59,14 +79,14 @@
{
"parentPluginId": "cloudDefend",
"id": "def-public.getSecuritySolutionNavTab.$1",
- "type": "string",
+ "type": "CompoundType",
"tags": [],
"label": "cloudDefendPage",
"description": [
"the name of the cloud defend page."
],
"signature": [
- "\"policies\""
+ "CloudDefendPage"
],
"path": "x-pack/plugins/cloud_defend/public/common/navigation/security_solution_links.ts",
"deprecated": false,
@@ -135,7 +155,15 @@
"Gets the `SpyRoute` component for navigation highlighting and breadcrumbs."
],
"signature": [
- "() => React.ComponentType<{ pageName: \"cloud_defend-policies\"; state?: Record | undefined; }>"
+ "() => React.ComponentType<{ pageName: ",
+ {
+ "pluginId": "cloudDefend",
+ "scope": "public",
+ "docId": "kibCloudDefendPluginApi",
+ "section": "def-public.CloudDefendPageId",
+ "text": "CloudDefendPageId"
+ },
+ "; state?: Record | undefined; }>"
],
"path": "x-pack/plugins/cloud_defend/public/types.ts",
"deprecated": false,
@@ -176,7 +204,7 @@
"\nAll the IDs for the cloud defend pages.\nThis needs to match the cloud defend page entries in `SecurityPageName` in `x-pack/plugins/security_solution/common/constants.ts`."
],
"signature": [
- "\"cloud_defend-policies\""
+ "\"cloud_defend-policies\" | \"kubernetes_security-dashboard\""
],
"path": "x-pack/plugins/cloud_defend/public/common/navigation/types.ts",
"deprecated": false,
diff --git a/api_docs/cloud_defend.mdx b/api_docs/cloud_defend.mdx
index 388950d0f9a89..63627adfeb031 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-05-15
+date: 2023-05-23
tags: ['contributor', 'dev', 'apidocs', 'kibana', 'cloudDefend']
---
import cloudDefendObj from './cloud_defend.devdocs.json';
@@ -21,7 +21,7 @@ Contact [@elastic/sec-cloudnative-integrations](https://github.com/orgs/elastic/
| Public API count | Any count | Items lacking comments | Missing exports |
|-------------------|-----------|------------------------|-----------------|
-| 15 | 0 | 4 | 1 |
+| 15 | 0 | 4 | 2 |
## Client
diff --git a/api_docs/cloud_experiments.mdx b/api_docs/cloud_experiments.mdx
index 178c7c60ef012..66efe337ec09e 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-05-15
+date: 2023-05-23
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 fd772f0bc8a2b..762fd4e2919fa 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-05-15
+date: 2023-05-23
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 79e74df5d5baa..43ea274a567d9 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-05-15
+date: 2023-05-23
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 287d1af469305..fc438ab106847 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-05-15
+date: 2023-05-23
tags: ['contributor', 'dev', 'apidocs', 'kibana', 'contentManagement']
---
import contentManagementObj from './content_management.devdocs.json';
diff --git a/api_docs/controls.devdocs.json b/api_docs/controls.devdocs.json
index ce95034b22ea9..b83dd602dbb28 100644
--- a/api_docs/controls.devdocs.json
+++ b/api_docs/controls.devdocs.json
@@ -265,6 +265,21 @@
"deprecated": false,
"trackAdoption": false
},
+ {
+ "parentPluginId": "controls",
+ "id": "def-public.ControlGroupContainer.fieldFilterPredicate",
+ "type": "Function",
+ "tags": [],
+ "label": "fieldFilterPredicate",
+ "description": [],
+ "signature": [
+ "FieldFilterPredicate",
+ " | undefined"
+ ],
+ "path": "src/plugins/controls/public/control_group/embeddable/control_group_container.tsx",
+ "deprecated": false,
+ "trackAdoption": false
+ },
{
"parentPluginId": "controls",
"id": "def-public.ControlGroupContainer.Unnamed",
@@ -374,6 +389,22 @@
"deprecated": false,
"trackAdoption": false,
"isRequired": false
+ },
+ {
+ "parentPluginId": "controls",
+ "id": "def-public.ControlGroupContainer.Unnamed.$5",
+ "type": "Function",
+ "tags": [],
+ "label": "fieldFilterPredicate",
+ "description": [],
+ "signature": [
+ "FieldFilterPredicate",
+ " | undefined"
+ ],
+ "path": "src/plugins/controls/public/control_group/embeddable/control_group_container.tsx",
+ "deprecated": false,
+ "trackAdoption": false,
+ "isRequired": false
}
],
"returnComment": []
@@ -1546,6 +1577,8 @@
},
"> | undefined, settings?: ",
"ControlGroupSettings",
+ " | undefined, fieldFilterPredicate?: ",
+ "FieldFilterPredicate",
" | undefined) => Promise<",
{
"pluginId": "controls",
@@ -1634,6 +1667,22 @@
"deprecated": false,
"trackAdoption": false,
"isRequired": false
+ },
+ {
+ "parentPluginId": "controls",
+ "id": "def-public.ControlGroupContainerFactory.create.$4",
+ "type": "Function",
+ "tags": [],
+ "label": "fieldFilterPredicate",
+ "description": [],
+ "signature": [
+ "FieldFilterPredicate",
+ " | undefined"
+ ],
+ "path": "src/plugins/controls/public/control_group/embeddable/control_group_container_factory.ts",
+ "deprecated": false,
+ "trackAdoption": false,
+ "isRequired": false
}
],
"returnComment": []
diff --git a/api_docs/controls.mdx b/api_docs/controls.mdx
index 1ac2fba2c43dd..080f4bcf9788f 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-05-15
+date: 2023-05-23
tags: ['contributor', 'dev', 'apidocs', 'kibana', 'controls']
---
import controlsObj from './controls.devdocs.json';
@@ -21,7 +21,7 @@ Contact [@elastic/kibana-presentation](https://github.com/orgs/elastic/teams/kib
| Public API count | Any count | Items lacking comments | Missing exports |
|-------------------|-----------|------------------------|-----------------|
-| 301 | 0 | 294 | 13 |
+| 304 | 0 | 297 | 14 |
## Client
diff --git a/api_docs/custom_integrations.mdx b/api_docs/custom_integrations.mdx
index fbd466494600b..8cc34e3ac8ec3 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-05-15
+date: 2023-05-23
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 832f06b594a66..96a5f76ac156e 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-05-15
+date: 2023-05-23
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 a084784b5976d..a6b81f34e7acc 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-05-15
+date: 2023-05-23
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 fcf6eb705fbb5..403043a354a1e 100644
--- a/api_docs/data.devdocs.json
+++ b/api_docs/data.devdocs.json
@@ -13603,7 +13603,11 @@
},
{
"plugin": "threatIntelligence",
- "path": "x-pack/plugins/threat_intelligence/public/common/mocks/mock_security_context.tsx"
+ "path": "x-pack/plugins/threat_intelligence/public/mocks/mock_security_context.tsx"
+ },
+ {
+ "plugin": "securitySolution",
+ "path": "x-pack/plugins/security_solution/public/flyout/left/components/hooks/use_threat_intelligence_details.test.ts"
},
{
"plugin": "securitySolution",
@@ -21209,7 +21213,11 @@
},
{
"plugin": "threatIntelligence",
- "path": "x-pack/plugins/threat_intelligence/public/common/mocks/mock_security_context.tsx"
+ "path": "x-pack/plugins/threat_intelligence/public/mocks/mock_security_context.tsx"
+ },
+ {
+ "plugin": "securitySolution",
+ "path": "x-pack/plugins/security_solution/public/flyout/left/components/hooks/use_threat_intelligence_details.test.ts"
},
{
"plugin": "securitySolution",
diff --git a/api_docs/data.mdx b/api_docs/data.mdx
index 11cf21329ce1f..c349b9c839748 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-05-15
+date: 2023-05-23
tags: ['contributor', 'dev', 'apidocs', 'kibana', 'data']
---
import dataObj from './data.devdocs.json';
diff --git a/api_docs/data_query.mdx b/api_docs/data_query.mdx
index c876ce7490a9a..caf7c848ceca6 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-05-15
+date: 2023-05-23
tags: ['contributor', 'dev', 'apidocs', 'kibana', 'data.query']
---
import dataQueryObj from './data_query.devdocs.json';
diff --git a/api_docs/data_search.mdx b/api_docs/data_search.mdx
index 192862aecf226..d409b3c259425 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-05-15
+date: 2023-05-23
tags: ['contributor', 'dev', 'apidocs', 'kibana', 'data.search']
---
import dataSearchObj from './data_search.devdocs.json';
diff --git a/api_docs/data_view_editor.mdx b/api_docs/data_view_editor.mdx
index 5c866a47f468c..aee3e95cf0bdc 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-05-15
+date: 2023-05-23
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 f077f4e956d0c..1c5110716e3e2 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-05-15
+date: 2023-05-23
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 b4477bb304c30..c707b71e159dc 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-05-15
+date: 2023-05-23
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 727a9dc84eb5a..c8b870b857b70 100644
--- a/api_docs/data_views.devdocs.json
+++ b/api_docs/data_views.devdocs.json
@@ -153,7 +153,11 @@
},
{
"plugin": "threatIntelligence",
- "path": "x-pack/plugins/threat_intelligence/public/common/mocks/mock_security_context.tsx"
+ "path": "x-pack/plugins/threat_intelligence/public/mocks/mock_security_context.tsx"
+ },
+ {
+ "plugin": "securitySolution",
+ "path": "x-pack/plugins/security_solution/public/flyout/left/components/hooks/use_threat_intelligence_details.test.ts"
},
{
"plugin": "securitySolution",
@@ -8387,7 +8391,11 @@
},
{
"plugin": "threatIntelligence",
- "path": "x-pack/plugins/threat_intelligence/public/common/mocks/mock_security_context.tsx"
+ "path": "x-pack/plugins/threat_intelligence/public/mocks/mock_security_context.tsx"
+ },
+ {
+ "plugin": "securitySolution",
+ "path": "x-pack/plugins/security_solution/public/flyout/left/components/hooks/use_threat_intelligence_details.test.ts"
},
{
"plugin": "securitySolution",
@@ -15678,7 +15686,11 @@
},
{
"plugin": "threatIntelligence",
- "path": "x-pack/plugins/threat_intelligence/public/common/mocks/mock_security_context.tsx"
+ "path": "x-pack/plugins/threat_intelligence/public/mocks/mock_security_context.tsx"
+ },
+ {
+ "plugin": "securitySolution",
+ "path": "x-pack/plugins/security_solution/public/flyout/left/components/hooks/use_threat_intelligence_details.test.ts"
},
{
"plugin": "securitySolution",
diff --git a/api_docs/data_views.mdx b/api_docs/data_views.mdx
index 7c5ca8047eccd..17ad8ba6ebd21 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-05-15
+date: 2023-05-23
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 13a8e007083a7..87f05aceb94f1 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-05-15
+date: 2023-05-23
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 7acd209caa3a7..be40f3b4ec47b 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-05-15
+date: 2023-05-23
tags: ['contributor', 'dev', 'apidocs', 'kibana']
---
@@ -23,9 +23,9 @@ tags: ['contributor', 'dev', 'apidocs', 'kibana']
| | home, data, esUiShared, spaces, savedObjectsManagement, exploratoryView, fleet, observability, ml, apm, indexLifecycleManagement, observabilityOnboarding, synthetics, upgradeAssistant, ux, kibanaOverview | - |
| | encryptedSavedObjects, actions, data, ml, logstash, securitySolution, cloudChat | - |
| | actions, ml, savedObjectsTagging, enterpriseSearch | - |
-| | @kbn/core-plugins-browser-internal, @kbn/core-root-browser-internal, dataViews, home, data, savedObjects, unifiedSearch, presentationUtil, visualizations, dashboard, lens, discover, fileUpload, ml, fleet, canvas, dashboardEnhanced, graph, monitoring, synthetics, transform, dataVisualizer, cloudSecurityPosture, securitySolution | - |
+| | @kbn/core-plugins-browser-internal, @kbn/core-root-browser-internal, dataViews, home, data, savedObjects, unifiedSearch, presentationUtil, visualizations, dashboard, lens, discover, fileUpload, ml, fleet, canvas, dashboardEnhanced, graph, monitoring, synthetics, transform, dataVisualizer, cloudSecurityPosture | - |
| | @kbn/core-saved-objects-browser, @kbn/core-saved-objects-browser-internal, @kbn/core, dataViews, home, savedObjects, savedSearch, visualizations, dashboard, lens, ml, canvas, graph, visTypeTimeseries, @kbn/core-saved-objects-browser-mocks | - |
-| | @kbn/core-saved-objects-browser-mocks, dataViews, savedObjects, presentationUtil, savedSearch, dashboard, ml, cloudSecurityPosture, dashboardEnhanced, graph, securitySolution, synthetics, @kbn/core-saved-objects-browser-internal | - |
+| | @kbn/core-saved-objects-browser-mocks, dataViews, savedObjects, presentationUtil, savedSearch, dashboard, ml, cloudSecurityPosture, dashboardEnhanced, graph, synthetics, @kbn/core-saved-objects-browser-internal | - |
| | @kbn/core-saved-objects-browser-mocks, dataViews, savedObjects, dashboard, ml, cloudSecurityPosture, dashboardEnhanced, monitoring, @kbn/core-saved-objects-browser-internal | - |
| | @kbn/core-saved-objects-browser-internal, @kbn/core, dataViews, savedObjects, embeddable, presentationUtil, visualizations, dashboard, aiops, ml, dataVisualizer, fleet, cloudSecurityPosture, dashboardEnhanced, graph, synthetics, lens, securitySolution, @kbn/core-saved-objects-browser-mocks | - |
| | @kbn/core-lifecycle-browser-mocks, @kbn/core, ml, dashboard, dataViews, savedSearch, @kbn/core-plugins-browser-internal | - |
@@ -68,7 +68,7 @@ tags: ['contributor', 'dev', 'apidocs', 'kibana']
| | @kbn/core-saved-objects-browser-internal, @kbn/core-saved-objects-browser-mocks, dataViews, savedObjects, savedSearch, dashboard, graph | - |
| | @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, dataViews, savedObjects, visualizations, dashboard, graph | - |
-| | @kbn/core-saved-objects-browser-mocks, synthetics, @kbn/core-saved-objects-browser-internal | - |
+| | @kbn/core-saved-objects-browser-mocks, @kbn/core-saved-objects-browser-internal | - |
| | @kbn/core-saved-objects-browser-mocks, dashboard, savedObjects, @kbn/core-saved-objects-browser-internal | - |
| | @kbn/core-saved-objects-browser-mocks, fleet, synthetics, @kbn/core-saved-objects-browser-internal | - |
| | @kbn/core-saved-objects-browser-internal, @kbn/core-saved-objects-browser-mocks, dataViews, savedSearch, savedObjects | - |
diff --git a/api_docs/deprecations_by_plugin.mdx b/api_docs/deprecations_by_plugin.mdx
index 8da7ab18a711d..0375ac210105a 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-05-15
+date: 2023-05-23
tags: ['contributor', 'dev', 'apidocs', 'kibana']
---
@@ -242,7 +242,7 @@ tags: ['contributor', 'dev', 'apidocs', 'kibana']
| Deprecated API | Reference location(s) | Remove By |
| ---------------|-----------|-----------|
-| | [internal_transforms.ts](https://github.com/elastic/kibana/tree/main/packages/core/saved-objects/core-saved-objects-migration-server-internal/src/document_migrator/internal_transforms.ts#:~:text=convertToMultiNamespaceTypeVersion), [internal_transforms.ts](https://github.com/elastic/kibana/tree/main/packages/core/saved-objects/core-saved-objects-migration-server-internal/src/document_migrator/internal_transforms.ts#:~:text=convertToMultiNamespaceTypeVersion), [internal_transforms.ts](https://github.com/elastic/kibana/tree/main/packages/core/saved-objects/core-saved-objects-migration-server-internal/src/document_migrator/internal_transforms.ts#:~:text=convertToMultiNamespaceTypeVersion), [validate_migrations.ts](https://github.com/elastic/kibana/tree/main/packages/core/saved-objects/core-saved-objects-migration-server-internal/src/document_migrator/validate_migrations.ts#:~:text=convertToMultiNamespaceTypeVersion), [validate_migrations.ts](https://github.com/elastic/kibana/tree/main/packages/core/saved-objects/core-saved-objects-migration-server-internal/src/document_migrator/validate_migrations.ts#:~:text=convertToMultiNamespaceTypeVersion), [utils.ts](https://github.com/elastic/kibana/tree/main/packages/core/saved-objects/core-saved-objects-migration-server-internal/src/document_migrator/utils.ts#:~:text=convertToMultiNamespaceTypeVersion), [document_migrator.test.ts](https://github.com/elastic/kibana/tree/main/packages/core/saved-objects/core-saved-objects-migration-server-internal/src/document_migrator/document_migrator.test.ts#:~:text=convertToMultiNamespaceTypeVersion), [document_migrator.test.ts](https://github.com/elastic/kibana/tree/main/packages/core/saved-objects/core-saved-objects-migration-server-internal/src/document_migrator/document_migrator.test.ts#:~:text=convertToMultiNamespaceTypeVersion), [document_migrator.test.ts](https://github.com/elastic/kibana/tree/main/packages/core/saved-objects/core-saved-objects-migration-server-internal/src/document_migrator/document_migrator.test.ts#:~:text=convertToMultiNamespaceTypeVersion), [document_migrator.test.ts](https://github.com/elastic/kibana/tree/main/packages/core/saved-objects/core-saved-objects-migration-server-internal/src/document_migrator/document_migrator.test.ts#:~:text=convertToMultiNamespaceTypeVersion)+ 18 more | - |
+| | [utils.ts](https://github.com/elastic/kibana/tree/main/packages/core/saved-objects/core-saved-objects-migration-server-internal/src/document_migrator/utils.ts#:~:text=convertToMultiNamespaceTypeVersion), [internal_transforms.ts](https://github.com/elastic/kibana/tree/main/packages/core/saved-objects/core-saved-objects-migration-server-internal/src/document_migrator/internal_transforms.ts#:~:text=convertToMultiNamespaceTypeVersion), [internal_transforms.ts](https://github.com/elastic/kibana/tree/main/packages/core/saved-objects/core-saved-objects-migration-server-internal/src/document_migrator/internal_transforms.ts#:~:text=convertToMultiNamespaceTypeVersion), [internal_transforms.ts](https://github.com/elastic/kibana/tree/main/packages/core/saved-objects/core-saved-objects-migration-server-internal/src/document_migrator/internal_transforms.ts#:~:text=convertToMultiNamespaceTypeVersion), [validate_migrations.ts](https://github.com/elastic/kibana/tree/main/packages/core/saved-objects/core-saved-objects-migration-server-internal/src/document_migrator/validate_migrations.ts#:~:text=convertToMultiNamespaceTypeVersion), [validate_migrations.ts](https://github.com/elastic/kibana/tree/main/packages/core/saved-objects/core-saved-objects-migration-server-internal/src/document_migrator/validate_migrations.ts#:~:text=convertToMultiNamespaceTypeVersion), [document_migrator.test.ts](https://github.com/elastic/kibana/tree/main/packages/core/saved-objects/core-saved-objects-migration-server-internal/src/document_migrator/document_migrator.test.ts#:~:text=convertToMultiNamespaceTypeVersion), [document_migrator.test.ts](https://github.com/elastic/kibana/tree/main/packages/core/saved-objects/core-saved-objects-migration-server-internal/src/document_migrator/document_migrator.test.ts#:~:text=convertToMultiNamespaceTypeVersion), [document_migrator.test.ts](https://github.com/elastic/kibana/tree/main/packages/core/saved-objects/core-saved-objects-migration-server-internal/src/document_migrator/document_migrator.test.ts#:~:text=convertToMultiNamespaceTypeVersion), [document_migrator.test.ts](https://github.com/elastic/kibana/tree/main/packages/core/saved-objects/core-saved-objects-migration-server-internal/src/document_migrator/document_migrator.test.ts#:~:text=convertToMultiNamespaceTypeVersion)+ 17 more | - |
@@ -720,7 +720,7 @@ tags: ['contributor', 'dev', 'apidocs', 'kibana']
| | [assets.tsx](https://github.com/elastic/kibana/tree/main/x-pack/plugins/fleet/public/applications/integrations/sections/epm/screens/detail/assets/assets.tsx#:~:text=ResolvedSimpleSavedObject), [assets.tsx](https://github.com/elastic/kibana/tree/main/x-pack/plugins/fleet/public/applications/integrations/sections/epm/screens/detail/assets/assets.tsx#:~:text=ResolvedSimpleSavedObject) | - |
| | [install.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/fleet/server/services/epm/kibana/assets/install.ts#:~:text=migrationVersion) | - |
| | [install.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/fleet/server/services/epm/kibana/assets/install.ts#:~:text=migrationVersion), [get.test.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/fleet/server/services/epm/packages/get.test.ts#:~:text=migrationVersion), [get.test.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/fleet/server/services/epm/packages/get.test.ts#:~:text=migrationVersion), [get.test.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/fleet/server/services/epm/packages/get.test.ts#:~:text=migrationVersion), [get.test.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/fleet/server/services/epm/packages/get.test.ts#:~:text=migrationVersion), [install.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/fleet/server/services/epm/kibana/assets/install.ts#:~:text=migrationVersion), [get.test.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/fleet/server/services/epm/packages/get.test.ts#:~:text=migrationVersion), [get.test.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/fleet/server/services/epm/packages/get.test.ts#:~:text=migrationVersion), [get.test.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/fleet/server/services/epm/packages/get.test.ts#:~:text=migrationVersion), [get.test.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/fleet/server/services/epm/packages/get.test.ts#:~:text=migrationVersion) | - |
-| | [epm.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/fleet/common/types/models/epm.ts#:~:text=SavedObjectAttributes), [epm.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/fleet/common/types/models/epm.ts#:~:text=SavedObjectAttributes), [settings.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/fleet/common/types/models/settings.ts#:~:text=SavedObjectAttributes), [settings.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/fleet/common/types/models/settings.ts#:~:text=SavedObjectAttributes) | - |
+| | [epm.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/fleet/common/types/models/epm.ts#:~:text=SavedObjectAttributes), [epm.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/fleet/common/types/models/epm.ts#:~:text=SavedObjectAttributes) | - |
| | [epm.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/fleet/common/types/models/epm.ts#:~:text=SavedObjectReference), [epm.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/fleet/common/types/models/epm.ts#:~:text=SavedObjectReference), [epm.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/fleet/common/types/models/epm.ts#:~:text=SavedObjectReference), [epm.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/fleet/common/types/models/epm.ts#:~:text=SavedObjectReference) | - |
@@ -1161,12 +1161,12 @@ migrates to using the Kibana Privilege model: https://github.com/elastic/kibana/
| | [host_risk_score_dashboards.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/security_solution/server/lib/risk_score/prebuilt_saved_objects/saved_object/host_risk_score_dashboards.ts#:~:text=SavedObject), [host_risk_score_dashboards.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/security_solution/server/lib/risk_score/prebuilt_saved_objects/saved_object/host_risk_score_dashboards.ts#:~:text=SavedObject), [user_risk_score_dashboards.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/security_solution/server/lib/risk_score/prebuilt_saved_objects/saved_object/user_risk_score_dashboards.ts#:~:text=SavedObject), [user_risk_score_dashboards.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/security_solution/server/lib/risk_score/prebuilt_saved_objects/saved_object/user_risk_score_dashboards.ts#:~:text=SavedObject) | - |
| | [dependencies_start_mock.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/security_solution/public/common/mock/endpoint/dependencies_start_mock.ts#:~:text=indexPatterns) | - |
| | [host_risk_score_dashboards.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/security_solution/server/lib/risk_score/prebuilt_saved_objects/saved_object/host_risk_score_dashboards.ts#:~:text=SavedObject), [host_risk_score_dashboards.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/security_solution/server/lib/risk_score/prebuilt_saved_objects/saved_object/host_risk_score_dashboards.ts#:~:text=SavedObject), [user_risk_score_dashboards.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/security_solution/server/lib/risk_score/prebuilt_saved_objects/saved_object/user_risk_score_dashboards.ts#:~:text=SavedObject), [user_risk_score_dashboards.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/security_solution/server/lib/risk_score/prebuilt_saved_objects/saved_object/user_risk_score_dashboards.ts#:~:text=SavedObject), [host_risk_score_dashboards.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/security_solution/server/lib/risk_score/prebuilt_saved_objects/saved_object/host_risk_score_dashboards.ts#:~:text=SavedObject), [host_risk_score_dashboards.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/security_solution/server/lib/risk_score/prebuilt_saved_objects/saved_object/host_risk_score_dashboards.ts#:~:text=SavedObject), [user_risk_score_dashboards.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/security_solution/server/lib/risk_score/prebuilt_saved_objects/saved_object/user_risk_score_dashboards.ts#:~:text=SavedObject), [user_risk_score_dashboards.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/security_solution/server/lib/risk_score/prebuilt_saved_objects/saved_object/user_risk_score_dashboards.ts#:~:text=SavedObject), [host_risk_score_dashboards.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/security_solution/server/lib/risk_score/prebuilt_saved_objects/saved_object/host_risk_score_dashboards.ts#:~:text=SavedObject), [host_risk_score_dashboards.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/security_solution/server/lib/risk_score/prebuilt_saved_objects/saved_object/host_risk_score_dashboards.ts#:~:text=SavedObject)+ 2 more | - |
-| | [index.tsx](https://github.com/elastic/kibana/tree/main/x-pack/plugins/security_solution/public/common/containers/source/index.tsx#:~:text=title), [index.tsx](https://github.com/elastic/kibana/tree/main/x-pack/plugins/security_solution/public/common/containers/source/index.tsx#:~:text=title), [use_rule_from_timeline.tsx](https://github.com/elastic/kibana/tree/main/x-pack/plugins/security_solution/public/detections/containers/detection_engine/rules/use_rule_from_timeline.tsx#:~:text=title), [get_es_query_filter.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/security_solution/public/detections/containers/detection_engine/exceptions/get_es_query_filter.ts#:~:text=title), [alerts_sub_grouping.tsx](https://github.com/elastic/kibana/tree/main/x-pack/plugins/security_solution/public/detections/components/alerts_table/alerts_sub_grouping.tsx#:~:text=title), [utils.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/security_solution/public/detections/pages/detection_engine/rules/utils.ts#:~:text=title), [middleware.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/security_solution/public/management/pages/endpoint_hosts/store/middleware.ts#:~:text=title), [index.tsx](https://github.com/elastic/kibana/tree/main/x-pack/plugins/security_solution/public/common/components/filter_group/index.tsx#:~:text=title), [get_query_filter.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/security_solution/server/lib/detection_engine/rule_types/utils/get_query_filter.ts#:~:text=title), [index_pattern.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/security_solution/public/common/mock/index_pattern.ts#:~:text=title)+ 22 more | - |
+| | [index.tsx](https://github.com/elastic/kibana/tree/main/x-pack/plugins/security_solution/public/common/containers/source/index.tsx#:~:text=title), [index.tsx](https://github.com/elastic/kibana/tree/main/x-pack/plugins/security_solution/public/common/containers/source/index.tsx#:~:text=title), [use_rule_from_timeline.tsx](https://github.com/elastic/kibana/tree/main/x-pack/plugins/security_solution/public/detections/containers/detection_engine/rules/use_rule_from_timeline.tsx#:~:text=title), [get_es_query_filter.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/security_solution/public/detections/containers/detection_engine/exceptions/get_es_query_filter.ts#:~:text=title), [alerts_sub_grouping.tsx](https://github.com/elastic/kibana/tree/main/x-pack/plugins/security_solution/public/detections/components/alerts_table/alerts_sub_grouping.tsx#:~:text=title), [utils.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/security_solution/public/detections/pages/detection_engine/rules/utils.ts#:~:text=title), [middleware.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/security_solution/public/management/pages/endpoint_hosts/store/middleware.ts#:~:text=title), [index.tsx](https://github.com/elastic/kibana/tree/main/x-pack/plugins/security_solution/public/common/components/filter_group/index.tsx#:~:text=title), [get_query_filter.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/security_solution/server/lib/detection_engine/rule_types/utils/get_query_filter.ts#:~:text=title), [index_pattern.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/security_solution/public/common/mock/index_pattern.ts#:~:text=title)+ 24 more | - |
| | [wrap_search_source_client.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/security_solution/server/lib/detection_engine/rule_preview/api/preview_rules/wrap_search_source_client.ts#:~:text=create) | - |
| | [wrap_search_source_client.test.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/security_solution/server/lib/detection_engine/rule_preview/api/preview_rules/wrap_search_source_client.test.ts#:~:text=fetch), [wrap_search_source_client.test.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/security_solution/server/lib/detection_engine/rule_preview/api/preview_rules/wrap_search_source_client.test.ts#:~:text=fetch), [wrap_search_source_client.test.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/security_solution/server/lib/detection_engine/rule_preview/api/preview_rules/wrap_search_source_client.test.ts#:~:text=fetch), [wrap_search_source_client.test.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/security_solution/server/lib/detection_engine/rule_preview/api/preview_rules/wrap_search_source_client.test.ts#:~:text=fetch) | - |
| | [api.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/security_solution/public/common/hooks/eql/api.ts#:~:text=options) | - |
-| | [index.tsx](https://github.com/elastic/kibana/tree/main/x-pack/plugins/security_solution/public/common/containers/source/index.tsx#:~:text=title), [index.tsx](https://github.com/elastic/kibana/tree/main/x-pack/plugins/security_solution/public/common/containers/source/index.tsx#:~:text=title), [use_rule_from_timeline.tsx](https://github.com/elastic/kibana/tree/main/x-pack/plugins/security_solution/public/detections/containers/detection_engine/rules/use_rule_from_timeline.tsx#:~:text=title), [get_es_query_filter.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/security_solution/public/detections/containers/detection_engine/exceptions/get_es_query_filter.ts#:~:text=title), [alerts_sub_grouping.tsx](https://github.com/elastic/kibana/tree/main/x-pack/plugins/security_solution/public/detections/components/alerts_table/alerts_sub_grouping.tsx#:~:text=title), [utils.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/security_solution/public/detections/pages/detection_engine/rules/utils.ts#:~:text=title), [middleware.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/security_solution/public/management/pages/endpoint_hosts/store/middleware.ts#:~:text=title), [index.tsx](https://github.com/elastic/kibana/tree/main/x-pack/plugins/security_solution/public/common/components/filter_group/index.tsx#:~:text=title), [get_query_filter.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/security_solution/server/lib/detection_engine/rule_types/utils/get_query_filter.ts#:~:text=title), [index_pattern.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/security_solution/public/common/mock/index_pattern.ts#:~:text=title)+ 22 more | - |
-| | [index.tsx](https://github.com/elastic/kibana/tree/main/x-pack/plugins/security_solution/public/common/containers/source/index.tsx#:~:text=title), [index.tsx](https://github.com/elastic/kibana/tree/main/x-pack/plugins/security_solution/public/common/containers/source/index.tsx#:~:text=title), [use_rule_from_timeline.tsx](https://github.com/elastic/kibana/tree/main/x-pack/plugins/security_solution/public/detections/containers/detection_engine/rules/use_rule_from_timeline.tsx#:~:text=title), [get_es_query_filter.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/security_solution/public/detections/containers/detection_engine/exceptions/get_es_query_filter.ts#:~:text=title), [alerts_sub_grouping.tsx](https://github.com/elastic/kibana/tree/main/x-pack/plugins/security_solution/public/detections/components/alerts_table/alerts_sub_grouping.tsx#:~:text=title), [utils.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/security_solution/public/detections/pages/detection_engine/rules/utils.ts#:~:text=title), [middleware.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/security_solution/public/management/pages/endpoint_hosts/store/middleware.ts#:~:text=title), [index.tsx](https://github.com/elastic/kibana/tree/main/x-pack/plugins/security_solution/public/common/components/filter_group/index.tsx#:~:text=title), [get_query_filter.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/security_solution/server/lib/detection_engine/rule_types/utils/get_query_filter.ts#:~:text=title), [index_pattern.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/security_solution/public/common/mock/index_pattern.ts#:~:text=title)+ 6 more | - |
+| | [index.tsx](https://github.com/elastic/kibana/tree/main/x-pack/plugins/security_solution/public/common/containers/source/index.tsx#:~:text=title), [index.tsx](https://github.com/elastic/kibana/tree/main/x-pack/plugins/security_solution/public/common/containers/source/index.tsx#:~:text=title), [use_rule_from_timeline.tsx](https://github.com/elastic/kibana/tree/main/x-pack/plugins/security_solution/public/detections/containers/detection_engine/rules/use_rule_from_timeline.tsx#:~:text=title), [get_es_query_filter.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/security_solution/public/detections/containers/detection_engine/exceptions/get_es_query_filter.ts#:~:text=title), [alerts_sub_grouping.tsx](https://github.com/elastic/kibana/tree/main/x-pack/plugins/security_solution/public/detections/components/alerts_table/alerts_sub_grouping.tsx#:~:text=title), [utils.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/security_solution/public/detections/pages/detection_engine/rules/utils.ts#:~:text=title), [middleware.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/security_solution/public/management/pages/endpoint_hosts/store/middleware.ts#:~:text=title), [index.tsx](https://github.com/elastic/kibana/tree/main/x-pack/plugins/security_solution/public/common/components/filter_group/index.tsx#:~:text=title), [get_query_filter.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/security_solution/server/lib/detection_engine/rule_types/utils/get_query_filter.ts#:~:text=title), [index_pattern.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/security_solution/public/common/mock/index_pattern.ts#:~:text=title)+ 24 more | - |
+| | [index.tsx](https://github.com/elastic/kibana/tree/main/x-pack/plugins/security_solution/public/common/containers/source/index.tsx#:~:text=title), [index.tsx](https://github.com/elastic/kibana/tree/main/x-pack/plugins/security_solution/public/common/containers/source/index.tsx#:~:text=title), [use_rule_from_timeline.tsx](https://github.com/elastic/kibana/tree/main/x-pack/plugins/security_solution/public/detections/containers/detection_engine/rules/use_rule_from_timeline.tsx#:~:text=title), [get_es_query_filter.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/security_solution/public/detections/containers/detection_engine/exceptions/get_es_query_filter.ts#:~:text=title), [alerts_sub_grouping.tsx](https://github.com/elastic/kibana/tree/main/x-pack/plugins/security_solution/public/detections/components/alerts_table/alerts_sub_grouping.tsx#:~:text=title), [utils.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/security_solution/public/detections/pages/detection_engine/rules/utils.ts#:~:text=title), [middleware.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/security_solution/public/management/pages/endpoint_hosts/store/middleware.ts#:~:text=title), [index.tsx](https://github.com/elastic/kibana/tree/main/x-pack/plugins/security_solution/public/common/components/filter_group/index.tsx#:~:text=title), [get_query_filter.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/security_solution/server/lib/detection_engine/rule_types/utils/get_query_filter.ts#:~:text=title), [index_pattern.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/security_solution/public/common/mock/index_pattern.ts#:~:text=title)+ 7 more | - |
| | [policy_config.test.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/security_solution/common/license/policy_config.test.ts#:~:text=mode), [policy_config.test.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/security_solution/common/license/policy_config.test.ts#:~:text=mode), [policy_config.test.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/security_solution/common/license/policy_config.test.ts#:~:text=mode), [fleet_integration.test.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/security_solution/server/fleet_integration/fleet_integration.test.ts#:~:text=mode), [fleet_integration.test.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/security_solution/server/fleet_integration/fleet_integration.test.ts#:~:text=mode), [create_default_policy.test.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/security_solution/server/fleet_integration/handlers/create_default_policy.test.ts#:~:text=mode), [create_default_policy.test.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/security_solution/server/fleet_integration/handlers/create_default_policy.test.ts#:~:text=mode), [license_watch.test.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/security_solution/server/endpoint/lib/policy/license_watch.test.ts#:~:text=mode), [license_watch.test.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/security_solution/server/endpoint/lib/policy/license_watch.test.ts#:~:text=mode), [license_watch.test.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/security_solution/server/endpoint/lib/policy/license_watch.test.ts#:~:text=mode)+ 7 more | 8.8.0 |
| | [policy_config.test.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/security_solution/common/license/policy_config.test.ts#:~:text=mode), [policy_config.test.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/security_solution/common/license/policy_config.test.ts#:~:text=mode), [policy_config.test.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/security_solution/common/license/policy_config.test.ts#:~:text=mode), [fleet_integration.test.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/security_solution/server/fleet_integration/fleet_integration.test.ts#:~:text=mode), [fleet_integration.test.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/security_solution/server/fleet_integration/fleet_integration.test.ts#:~:text=mode), [create_default_policy.test.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/security_solution/server/fleet_integration/handlers/create_default_policy.test.ts#:~:text=mode), [create_default_policy.test.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/security_solution/server/fleet_integration/handlers/create_default_policy.test.ts#:~:text=mode), [license_watch.test.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/security_solution/server/endpoint/lib/policy/license_watch.test.ts#:~:text=mode), [license_watch.test.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/security_solution/server/endpoint/lib/policy/license_watch.test.ts#:~:text=mode), [license_watch.test.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/security_solution/server/endpoint/lib/policy/license_watch.test.ts#:~:text=mode)+ 7 more | 8.8.0 |
| | [query.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/security_solution/server/lib/detection_engine/rule_types/query/query.ts#:~:text=license%24) | 8.8.0 |
@@ -1176,8 +1176,6 @@ migrates to using the Kibana Privilege model: https://github.com/elastic/kibana/
| | [index.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/security_solution/common/search_strategy/index_fields/index.ts#:~:text=BrowserFields), [index.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/security_solution/common/types/header_actions/index.ts#:~:text=BrowserFields), [index.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/security_solution/common/types/header_actions/index.ts#:~:text=BrowserFields), [index.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/security_solution/common/types/header_actions/index.ts#:~:text=BrowserFields), [index.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/security_solution/common/types/timeline/cells/index.ts#:~:text=BrowserFields), [index.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/security_solution/common/types/timeline/cells/index.ts#:~:text=BrowserFields), [index.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/security_solution/public/common/lib/kuery/index.ts#:~:text=BrowserFields), [index.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/security_solution/public/common/lib/kuery/index.ts#:~:text=BrowserFields), [index.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/security_solution/public/common/lib/kuery/index.ts#:~:text=BrowserFields), [index.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/security_solution/public/common/lib/kuery/index.ts#:~:text=BrowserFields)+ 97 more | - |
| | [index.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/security_solution/common/search_strategy/index_fields/index.ts#:~:text=IndexFieldsStrategyRequest), [index.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/security_solution/server/search_strategy/endpoint_fields/index.ts#:~:text=IndexFieldsStrategyRequest), [index.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/security_solution/server/search_strategy/endpoint_fields/index.ts#:~:text=IndexFieldsStrategyRequest), [index.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/security_solution/server/search_strategy/endpoint_fields/index.ts#:~:text=IndexFieldsStrategyRequest), [middleware.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/security_solution/public/management/pages/endpoint_hosts/store/middleware.ts#:~:text=IndexFieldsStrategyRequest), [middleware.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/security_solution/public/management/pages/endpoint_hosts/store/middleware.ts#:~:text=IndexFieldsStrategyRequest) | - |
| | [index.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/security_solution/common/search_strategy/index_fields/index.ts#:~:text=IndexFieldsStrategyResponse), [index.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/security_solution/server/search_strategy/endpoint_fields/index.ts#:~:text=IndexFieldsStrategyResponse), [index.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/security_solution/server/search_strategy/endpoint_fields/index.ts#:~:text=IndexFieldsStrategyResponse), [index.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/security_solution/server/search_strategy/endpoint_fields/index.ts#:~:text=IndexFieldsStrategyResponse), [middleware.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/security_solution/public/management/pages/endpoint_hosts/store/middleware.ts#:~:text=IndexFieldsStrategyResponse), [middleware.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/security_solution/public/management/pages/endpoint_hosts/store/middleware.ts#:~:text=IndexFieldsStrategyResponse) | - |
-| | [index.tsx](https://github.com/elastic/kibana/tree/main/x-pack/plugins/security_solution/public/overview/containers/overview_cti_links/index.tsx#:~:text=savedObjects) | - |
-| | [index.tsx](https://github.com/elastic/kibana/tree/main/x-pack/plugins/security_solution/public/overview/containers/overview_cti_links/index.tsx#:~:text=find), [index.tsx](https://github.com/elastic/kibana/tree/main/x-pack/plugins/security_solution/public/overview/containers/overview_cti_links/index.tsx#:~:text=find) | - |
| | [types.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/security_solution/public/common/hooks/types.ts#:~:text=SimpleSavedObject), [types.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/security_solution/public/common/hooks/types.ts#:~:text=SimpleSavedObject) | - |
| | [host_risk_score_dashboards.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/security_solution/server/lib/risk_score/prebuilt_saved_objects/saved_object/host_risk_score_dashboards.ts#:~:text=migrationVersion), [host_risk_score_dashboards.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/security_solution/server/lib/risk_score/prebuilt_saved_objects/saved_object/host_risk_score_dashboards.ts#:~:text=migrationVersion), [host_risk_score_dashboards.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/security_solution/server/lib/risk_score/prebuilt_saved_objects/saved_object/host_risk_score_dashboards.ts#:~:text=migrationVersion), [host_risk_score_dashboards.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/security_solution/server/lib/risk_score/prebuilt_saved_objects/saved_object/host_risk_score_dashboards.ts#:~:text=migrationVersion), [host_risk_score_dashboards.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/security_solution/server/lib/risk_score/prebuilt_saved_objects/saved_object/host_risk_score_dashboards.ts#:~:text=migrationVersion), [host_risk_score_dashboards.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/security_solution/server/lib/risk_score/prebuilt_saved_objects/saved_object/host_risk_score_dashboards.ts#:~:text=migrationVersion), [host_risk_score_dashboards.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/security_solution/server/lib/risk_score/prebuilt_saved_objects/saved_object/host_risk_score_dashboards.ts#:~:text=migrationVersion), [host_risk_score_dashboards.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/security_solution/server/lib/risk_score/prebuilt_saved_objects/saved_object/host_risk_score_dashboards.ts#:~:text=migrationVersion), [host_risk_score_dashboards.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/security_solution/server/lib/risk_score/prebuilt_saved_objects/saved_object/host_risk_score_dashboards.ts#:~:text=migrationVersion), [host_risk_score_dashboards.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/security_solution/server/lib/risk_score/prebuilt_saved_objects/saved_object/host_risk_score_dashboards.ts#:~:text=migrationVersion)+ 34 more | - |
| | [legacy_types.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/security_solution/server/lib/detection_engine/rule_actions_legacy/logic/rule_actions/legacy_types.ts#:~:text=SavedObjectAttributes), [legacy_types.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/security_solution/server/lib/detection_engine/rule_actions_legacy/logic/rule_actions/legacy_types.ts#:~:text=SavedObjectAttributes), [legacy_migrations.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/security_solution/server/lib/detection_engine/rule_actions_legacy/logic/rule_actions/legacy_migrations.ts#:~:text=SavedObjectAttributes), [legacy_migrations.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/security_solution/server/lib/detection_engine/rule_actions_legacy/logic/rule_actions/legacy_migrations.ts#:~:text=SavedObjectAttributes), [legacy_types.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/security_solution/server/lib/detection_engine/rule_actions_legacy/logic/rule_actions/legacy_types.ts#:~:text=SavedObjectAttributes), [legacy_types.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/security_solution/server/lib/detection_engine/rule_actions_legacy/logic/rule_actions/legacy_types.ts#:~:text=SavedObjectAttributes), [legacy_migrations.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/security_solution/server/lib/detection_engine/rule_actions_legacy/logic/rule_actions/legacy_migrations.ts#:~:text=SavedObjectAttributes), [legacy_migrations.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/security_solution/server/lib/detection_engine/rule_actions_legacy/logic/rule_actions/legacy_migrations.ts#:~:text=SavedObjectAttributes) | - |
@@ -1244,7 +1242,6 @@ migrates to using the Kibana Privilege model: https://github.com/elastic/kibana/
| | [stderr_logs.tsx](https://github.com/elastic/kibana/tree/main/x-pack/plugins/synthetics/public/apps/synthetics/components/common/components/stderr_logs.tsx#:~:text=indexPatternId) | - |
| | [alert_messages.tsx](https://github.com/elastic/kibana/tree/main/x-pack/plugins/synthetics/public/legacy_uptime/lib/alert_types/alert_messages.tsx#:~:text=RedirectAppLinks), [alert_messages.tsx](https://github.com/elastic/kibana/tree/main/x-pack/plugins/synthetics/public/legacy_uptime/lib/alert_types/alert_messages.tsx#:~:text=RedirectAppLinks), [alert_messages.tsx](https://github.com/elastic/kibana/tree/main/x-pack/plugins/synthetics/public/legacy_uptime/lib/alert_types/alert_messages.tsx#:~:text=RedirectAppLinks), [uptime_app.tsx](https://github.com/elastic/kibana/tree/main/x-pack/plugins/synthetics/public/legacy_uptime/app/uptime_app.tsx#:~:text=RedirectAppLinks), [uptime_app.tsx](https://github.com/elastic/kibana/tree/main/x-pack/plugins/synthetics/public/legacy_uptime/app/uptime_app.tsx#:~:text=RedirectAppLinks), [uptime_app.tsx](https://github.com/elastic/kibana/tree/main/x-pack/plugins/synthetics/public/legacy_uptime/app/uptime_app.tsx#:~:text=RedirectAppLinks), [synthetics_app.tsx](https://github.com/elastic/kibana/tree/main/x-pack/plugins/synthetics/public/apps/synthetics/synthetics_app.tsx#:~:text=RedirectAppLinks), [synthetics_app.tsx](https://github.com/elastic/kibana/tree/main/x-pack/plugins/synthetics/public/apps/synthetics/synthetics_app.tsx#:~:text=RedirectAppLinks), [synthetics_app.tsx](https://github.com/elastic/kibana/tree/main/x-pack/plugins/synthetics/public/apps/synthetics/synthetics_app.tsx#:~:text=RedirectAppLinks) | - |
| | [use_filters.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/synthetics/public/apps/synthetics/components/monitors_page/common/monitor_filters/use_filters.ts#:~:text=savedObjects), [use_recently_viewed_monitors.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/synthetics/public/apps/synthetics/components/monitor_details/monitor_selector/use_recently_viewed_monitors.ts#:~:text=savedObjects), [delete_param.tsx](https://github.com/elastic/kibana/tree/main/x-pack/plugins/synthetics/public/apps/synthetics/components/settings/global_params/delete_param.tsx#:~:text=savedObjects), [use_location_monitors.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/synthetics/public/apps/synthetics/components/settings/private_locations/hooks/use_location_monitors.ts#:~:text=savedObjects), [use_monitor_name.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/synthetics/public/apps/synthetics/components/monitor_add_edit/hooks/use_monitor_name.ts#:~:text=savedObjects), [plugin.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/synthetics/public/plugin.ts#:~:text=savedObjects) | - |
-| | [delete_param.tsx](https://github.com/elastic/kibana/tree/main/x-pack/plugins/synthetics/public/apps/synthetics/components/settings/global_params/delete_param.tsx#:~:text=bulkDelete) | - |
| | [use_filters.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/synthetics/public/apps/synthetics/components/monitors_page/common/monitor_filters/use_filters.ts#:~:text=find), [use_location_monitors.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/synthetics/public/apps/synthetics/components/settings/private_locations/hooks/use_location_monitors.ts#:~:text=find), [use_monitor_name.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/synthetics/public/apps/synthetics/components/monitor_add_edit/hooks/use_monitor_name.ts#:~:text=find), [use_filters.test.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/synthetics/public/apps/synthetics/components/monitors_page/common/monitor_filters/use_filters.test.ts#:~:text=find), [use_filters.test.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/synthetics/public/apps/synthetics/components/monitors_page/common/monitor_filters/use_filters.test.ts#:~:text=find) | - |
| | [use_recently_viewed_monitors.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/synthetics/public/apps/synthetics/components/monitor_details/monitor_selector/use_recently_viewed_monitors.ts#:~:text=bulkResolve) | - |
| | [synthetics_monitor.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/synthetics/common/types/synthetics_monitor.ts#:~:text=SimpleSavedObject), [synthetics_monitor.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/synthetics/common/types/synthetics_monitor.ts#:~:text=SimpleSavedObject) | - |
@@ -1263,9 +1260,9 @@ migrates to using the Kibana Privilege model: https://github.com/elastic/kibana/
| Deprecated API | Reference location(s) | Remove By |
| ---------------|-----------|-----------|
-| | [mock_security_context.tsx](https://github.com/elastic/kibana/tree/main/x-pack/plugins/threat_intelligence/public/common/mocks/mock_security_context.tsx#:~:text=title), [mock_security_context.tsx](https://github.com/elastic/kibana/tree/main/x-pack/plugins/threat_intelligence/public/common/mocks/mock_security_context.tsx#:~:text=title) | - |
-| | [mock_security_context.tsx](https://github.com/elastic/kibana/tree/main/x-pack/plugins/threat_intelligence/public/common/mocks/mock_security_context.tsx#:~:text=title), [mock_security_context.tsx](https://github.com/elastic/kibana/tree/main/x-pack/plugins/threat_intelligence/public/common/mocks/mock_security_context.tsx#:~:text=title) | - |
-| | [mock_security_context.tsx](https://github.com/elastic/kibana/tree/main/x-pack/plugins/threat_intelligence/public/common/mocks/mock_security_context.tsx#:~:text=title) | - |
+| | [mock_security_context.tsx](https://github.com/elastic/kibana/tree/main/x-pack/plugins/threat_intelligence/public/mocks/mock_security_context.tsx#:~:text=title), [mock_security_context.tsx](https://github.com/elastic/kibana/tree/main/x-pack/plugins/threat_intelligence/public/mocks/mock_security_context.tsx#:~:text=title) | - |
+| | [mock_security_context.tsx](https://github.com/elastic/kibana/tree/main/x-pack/plugins/threat_intelligence/public/mocks/mock_security_context.tsx#:~:text=title), [mock_security_context.tsx](https://github.com/elastic/kibana/tree/main/x-pack/plugins/threat_intelligence/public/mocks/mock_security_context.tsx#:~:text=title) | - |
+| | [mock_security_context.tsx](https://github.com/elastic/kibana/tree/main/x-pack/plugins/threat_intelligence/public/mocks/mock_security_context.tsx#:~:text=title) | - |
@@ -1442,7 +1439,7 @@ migrates to using the Kibana Privilege model: https://github.com/elastic/kibana/
| | [types.ts](https://github.com/elastic/kibana/tree/main/src/plugins/visualizations/public/types.ts#:~:text=ResolvedSimpleSavedObject), [types.ts](https://github.com/elastic/kibana/tree/main/src/plugins/visualizations/public/types.ts#:~:text=ResolvedSimpleSavedObject), [types.ts](https://github.com/elastic/kibana/tree/main/src/plugins/visualizations/public/types.ts#:~:text=ResolvedSimpleSavedObject), [types.ts](https://github.com/elastic/kibana/tree/main/src/plugins/visualizations/public/types.ts#:~:text=ResolvedSimpleSavedObject) | - |
| | [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_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), [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) | - |
+| | [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) | - |
| | [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 6302fd7aad3b4..77c7d4b7c489e 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-05-15
+date: 2023-05-23
tags: ['contributor', 'dev', 'apidocs', 'kibana']
---
diff --git a/api_docs/dev_tools.mdx b/api_docs/dev_tools.mdx
index 51439e0894031..b6dd928ac1665 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-05-15
+date: 2023-05-23
tags: ['contributor', 'dev', 'apidocs', 'kibana', 'devTools']
---
import devToolsObj from './dev_tools.devdocs.json';
diff --git a/api_docs/discover.mdx b/api_docs/discover.mdx
index 7a2193ad24015..46c89d2cb84e9 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-05-15
+date: 2023-05-23
tags: ['contributor', 'dev', 'apidocs', 'kibana', 'discover']
---
import discoverObj from './discover.devdocs.json';
diff --git a/api_docs/discover_enhanced.mdx b/api_docs/discover_enhanced.mdx
index e9e1c66a314eb..dd45ac488b1a1 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-05-15
+date: 2023-05-23
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 572438ed9dc4b..7e4d422b6cc3b 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-05-15
+date: 2023-05-23
tags: ['contributor', 'dev', 'apidocs', 'kibana', 'ecsDataQualityDashboard']
---
import ecsDataQualityDashboardObj from './ecs_data_quality_dashboard.devdocs.json';
diff --git a/api_docs/embeddable.mdx b/api_docs/embeddable.mdx
index 374d92aba0881..88b414705800b 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-05-15
+date: 2023-05-23
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 e07716558c627..4eb2377d30884 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-05-15
+date: 2023-05-23
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 ff16c53bc71d9..8341462f15d75 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-05-15
+date: 2023-05-23
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 1136c95e75fdc..3adf5268a06a0 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-05-15
+date: 2023-05-23
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 efff146a95951..a8482472d915f 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-05-15
+date: 2023-05-23
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 a101aab203272..d53c5ce36b091 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-05-15
+date: 2023-05-23
tags: ['contributor', 'dev', 'apidocs', 'kibana', 'eventAnnotation']
---
import eventAnnotationObj from './event_annotation.devdocs.json';
diff --git a/api_docs/event_log.mdx b/api_docs/event_log.mdx
index 641f0bb9a0d96..e6c16110bd943 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-05-15
+date: 2023-05-23
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 605ed8b1d5e58..481e709a4e1d5 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-05-15
+date: 2023-05-23
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 8ac8a720e56ad..3f96de1bffcd2 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-05-15
+date: 2023-05-23
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 ccc50e6991388..4a513ee6af107 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-05-15
+date: 2023-05-23
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 4e4bb1c8c85a1..fda2c29e05d68 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-05-15
+date: 2023-05-23
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 a49da704348d9..b3b34f5927656 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-05-15
+date: 2023-05-23
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 88828dd73e5d4..75d8ef32be2bd 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-05-15
+date: 2023-05-23
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 d439b1658d8c2..b46d615d80d2d 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-05-15
+date: 2023-05-23
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 27f2b5b383026..eceae1f219a36 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-05-15
+date: 2023-05-23
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 2958bcbe08c1b..330c349dcf9ee 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-05-15
+date: 2023-05-23
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 6428fa0dee637..a4cbbbca3ea04 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-05-15
+date: 2023-05-23
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 4a800198c4f78..40eff282b1ad5 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-05-15
+date: 2023-05-23
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 5f9e84a22a4e5..f9e368e445b3d 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-05-15
+date: 2023-05-23
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 be64a62dd624a..1bdad881d54e6 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-05-15
+date: 2023-05-23
tags: ['contributor', 'dev', 'apidocs', 'kibana', 'expressionTagcloud']
---
import expressionTagcloudObj from './expression_tagcloud.devdocs.json';
diff --git a/api_docs/expression_x_y.mdx b/api_docs/expression_x_y.mdx
index 29aa105b28af9..0fd5cef7505f0 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-05-15
+date: 2023-05-23
tags: ['contributor', 'dev', 'apidocs', 'kibana', 'expressionXY']
---
import expressionXYObj from './expression_x_y.devdocs.json';
diff --git a/api_docs/expressions.mdx b/api_docs/expressions.mdx
index b75f270f3ada5..ecaf18bdc3b8a 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-05-15
+date: 2023-05-23
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 47d96c90f10e8..607b263282778 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-05-15
+date: 2023-05-23
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 f1c691ea69528..abe27c3eb40b0 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-05-15
+date: 2023-05-23
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 456f8ea1a3939..675559ac020d2 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-05-15
+date: 2023-05-23
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 267dc7cc14674..9704038bd01eb 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-05-15
+date: 2023-05-23
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 6ffa5407c5033..c8865c4680010 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-05-15
+date: 2023-05-23
tags: ['contributor', 'dev', 'apidocs', 'kibana', 'filesManagement']
---
import filesManagementObj from './files_management.devdocs.json';
diff --git a/api_docs/fleet.devdocs.json b/api_docs/fleet.devdocs.json
index 31acd1b1fffc2..fafbec165440f 100644
--- a/api_docs/fleet.devdocs.json
+++ b/api_docs/fleet.devdocs.json
@@ -11,7 +11,7 @@
"label": "CustomAssetsAccordion",
"description": [],
"signature": [
- "({ views, initialIsOpen, }: React.PropsWithChildren<",
+ "({ views, initialIsOpen, title, }: React.PropsWithChildren<",
{
"pluginId": "fleet",
"scope": "public",
@@ -30,7 +30,7 @@
"id": "def-public.CustomAssetsAccordion.$1",
"type": "CompoundType",
"tags": [],
- "label": "{\n views,\n initialIsOpen = false,\n}",
+ "label": "{\n views,\n initialIsOpen = false,\n title,\n}",
"description": [],
"signature": [
"React.PropsWithChildren<",
@@ -479,6 +479,20 @@
"path": "x-pack/plugins/fleet/public/components/custom_assets_accordion.tsx",
"deprecated": false,
"trackAdoption": false
+ },
+ {
+ "parentPluginId": "fleet",
+ "id": "def-public.CustomAssetsAccordionProps.title",
+ "type": "string",
+ "tags": [],
+ "label": "title",
+ "description": [],
+ "signature": [
+ "string | undefined"
+ ],
+ "path": "x-pack/plugins/fleet/public/components/custom_assets_accordion.tsx",
+ "deprecated": false,
+ "trackAdoption": false
}
],
"initialIsOpen": false
@@ -5454,67 +5468,490 @@
"label": "getESIndexPattern",
"description": [],
"signature": [
- "(savedObjectsClient: ",
- {
- "pluginId": "@kbn/core-saved-objects-api-server",
- "scope": "common",
- "docId": "kibKbnCoreSavedObjectsApiServerPluginApi",
- "section": "def-common.SavedObjectsClientContract",
- "text": "SavedObjectsClientContract"
- },
- ", pkgName: string, datasetPath: string) => Promise"
+ "(savedObjectsClient: ",
+ {
+ "pluginId": "@kbn/core-saved-objects-api-server",
+ "scope": "common",
+ "docId": "kibKbnCoreSavedObjectsApiServerPluginApi",
+ "section": "def-common.SavedObjectsClientContract",
+ "text": "SavedObjectsClientContract"
+ },
+ ", pkgName: string, datasetPath: string) => Promise"
+ ],
+ "path": "x-pack/plugins/fleet/server/services/index.ts",
+ "deprecated": false,
+ "trackAdoption": false,
+ "children": [
+ {
+ "parentPluginId": "fleet",
+ "id": "def-server.ESIndexPatternService.getESIndexPattern.$1",
+ "type": "Object",
+ "tags": [],
+ "label": "savedObjectsClient",
+ "description": [],
+ "signature": [
+ {
+ "pluginId": "@kbn/core-saved-objects-api-server",
+ "scope": "common",
+ "docId": "kibKbnCoreSavedObjectsApiServerPluginApi",
+ "section": "def-common.SavedObjectsClientContract",
+ "text": "SavedObjectsClientContract"
+ }
+ ],
+ "path": "x-pack/plugins/fleet/server/services/index.ts",
+ "deprecated": false,
+ "trackAdoption": false,
+ "isRequired": true
+ },
+ {
+ "parentPluginId": "fleet",
+ "id": "def-server.ESIndexPatternService.getESIndexPattern.$2",
+ "type": "string",
+ "tags": [],
+ "label": "pkgName",
+ "description": [],
+ "signature": [
+ "string"
+ ],
+ "path": "x-pack/plugins/fleet/server/services/index.ts",
+ "deprecated": false,
+ "trackAdoption": false,
+ "isRequired": true
+ },
+ {
+ "parentPluginId": "fleet",
+ "id": "def-server.ESIndexPatternService.getESIndexPattern.$3",
+ "type": "string",
+ "tags": [],
+ "label": "datasetPath",
+ "description": [],
+ "signature": [
+ "string"
+ ],
+ "path": "x-pack/plugins/fleet/server/services/index.ts",
+ "deprecated": false,
+ "trackAdoption": false,
+ "isRequired": true
+ }
+ ],
+ "returnComment": []
+ }
+ ],
+ "initialIsOpen": false
+ },
+ {
+ "parentPluginId": "fleet",
+ "id": "def-server.FleetFile",
+ "type": "Interface",
+ "tags": [],
+ "label": "FleetFile",
+ "description": [],
+ "path": "x-pack/plugins/fleet/server/services/files/types.ts",
+ "deprecated": false,
+ "trackAdoption": false,
+ "children": [
+ {
+ "parentPluginId": "fleet",
+ "id": "def-server.FleetFile.id",
+ "type": "string",
+ "tags": [],
+ "label": "id",
+ "description": [],
+ "path": "x-pack/plugins/fleet/server/services/files/types.ts",
+ "deprecated": false,
+ "trackAdoption": false
+ },
+ {
+ "parentPluginId": "fleet",
+ "id": "def-server.FleetFile.actionId",
+ "type": "string",
+ "tags": [],
+ "label": "actionId",
+ "description": [],
+ "path": "x-pack/plugins/fleet/server/services/files/types.ts",
+ "deprecated": false,
+ "trackAdoption": false
+ },
+ {
+ "parentPluginId": "fleet",
+ "id": "def-server.FleetFile.agents",
+ "type": "Array",
+ "tags": [],
+ "label": "agents",
+ "description": [],
+ "signature": [
+ "string[]"
+ ],
+ "path": "x-pack/plugins/fleet/server/services/files/types.ts",
+ "deprecated": false,
+ "trackAdoption": false
+ },
+ {
+ "parentPluginId": "fleet",
+ "id": "def-server.FleetFile.name",
+ "type": "string",
+ "tags": [],
+ "label": "name",
+ "description": [],
+ "path": "x-pack/plugins/fleet/server/services/files/types.ts",
+ "deprecated": false,
+ "trackAdoption": false
+ },
+ {
+ "parentPluginId": "fleet",
+ "id": "def-server.FleetFile.status",
+ "type": "CompoundType",
+ "tags": [],
+ "label": "status",
+ "description": [],
+ "signature": [
+ "\"AWAITING_UPLOAD\" | \"UPLOADING\" | \"READY\" | \"UPLOAD_ERROR\" | \"DELETED\""
+ ],
+ "path": "x-pack/plugins/fleet/server/services/files/types.ts",
+ "deprecated": false,
+ "trackAdoption": false
+ },
+ {
+ "parentPluginId": "fleet",
+ "id": "def-server.FleetFile.mimeType",
+ "type": "string",
+ "tags": [],
+ "label": "mimeType",
+ "description": [],
+ "path": "x-pack/plugins/fleet/server/services/files/types.ts",
+ "deprecated": false,
+ "trackAdoption": false
+ },
+ {
+ "parentPluginId": "fleet",
+ "id": "def-server.FleetFile.size",
+ "type": "number",
+ "tags": [],
+ "label": "size",
+ "description": [],
+ "path": "x-pack/plugins/fleet/server/services/files/types.ts",
+ "deprecated": false,
+ "trackAdoption": false
+ },
+ {
+ "parentPluginId": "fleet",
+ "id": "def-server.FleetFile.sha256",
+ "type": "string",
+ "tags": [],
+ "label": "sha256",
+ "description": [],
+ "path": "x-pack/plugins/fleet/server/services/files/types.ts",
+ "deprecated": false,
+ "trackAdoption": false
+ },
+ {
+ "parentPluginId": "fleet",
+ "id": "def-server.FleetFile.created",
+ "type": "string",
+ "tags": [],
+ "label": "created",
+ "description": [],
+ "path": "x-pack/plugins/fleet/server/services/files/types.ts",
+ "deprecated": false,
+ "trackAdoption": false
+ }
+ ],
+ "initialIsOpen": false
+ },
+ {
+ "parentPluginId": "fleet",
+ "id": "def-server.FleetFileClientInterface",
+ "type": "Interface",
+ "tags": [],
+ "label": "FleetFileClientInterface",
+ "description": [],
+ "path": "x-pack/plugins/fleet/server/services/files/types.ts",
+ "deprecated": false,
+ "trackAdoption": false,
+ "children": [
+ {
+ "parentPluginId": "fleet",
+ "id": "def-server.FleetFileClientInterface.create",
+ "type": "Function",
+ "tags": [],
+ "label": "create",
+ "description": [
+ "Creates a new file. Only applicable when type of file is `to-host`."
+ ],
+ "signature": [
+ "(fileStream: ",
+ {
+ "pluginId": "fleet",
+ "scope": "server",
+ "docId": "kibFleetPluginApi",
+ "section": "def-server.HapiReadableStream",
+ "text": "HapiReadableStream"
+ },
+ ", agentIds: string[]) => Promise<",
+ {
+ "pluginId": "fleet",
+ "scope": "server",
+ "docId": "kibFleetPluginApi",
+ "section": "def-server.FleetFile",
+ "text": "FleetFile"
+ },
+ ">"
+ ],
+ "path": "x-pack/plugins/fleet/server/services/files/types.ts",
+ "deprecated": false,
+ "trackAdoption": false,
+ "children": [
+ {
+ "parentPluginId": "fleet",
+ "id": "def-server.FleetFileClientInterface.create.$1",
+ "type": "Object",
+ "tags": [],
+ "label": "fileStream",
+ "description": [],
+ "signature": [
+ {
+ "pluginId": "fleet",
+ "scope": "server",
+ "docId": "kibFleetPluginApi",
+ "section": "def-server.HapiReadableStream",
+ "text": "HapiReadableStream"
+ }
+ ],
+ "path": "x-pack/plugins/fleet/server/services/files/types.ts",
+ "deprecated": false,
+ "trackAdoption": false,
+ "isRequired": true
+ },
+ {
+ "parentPluginId": "fleet",
+ "id": "def-server.FleetFileClientInterface.create.$2",
+ "type": "Array",
+ "tags": [],
+ "label": "agentIds",
+ "description": [],
+ "signature": [
+ "string[]"
+ ],
+ "path": "x-pack/plugins/fleet/server/services/files/types.ts",
+ "deprecated": false,
+ "trackAdoption": false,
+ "isRequired": true
+ }
+ ],
+ "returnComment": []
+ },
+ {
+ "parentPluginId": "fleet",
+ "id": "def-server.FleetFileClientInterface.delete",
+ "type": "Function",
+ "tags": [],
+ "label": "delete",
+ "description": [
+ "Deletes a file. Only applicable when type of file is `to-host`."
+ ],
+ "signature": [
+ "(fileId: string) => Promise"
+ ],
+ "path": "x-pack/plugins/fleet/server/services/files/types.ts",
+ "deprecated": false,
+ "trackAdoption": false,
+ "children": [
+ {
+ "parentPluginId": "fleet",
+ "id": "def-server.FleetFileClientInterface.delete.$1",
+ "type": "string",
+ "tags": [],
+ "label": "fileId",
+ "description": [],
+ "signature": [
+ "string"
+ ],
+ "path": "x-pack/plugins/fleet/server/services/files/types.ts",
+ "deprecated": false,
+ "trackAdoption": false,
+ "isRequired": true
+ }
+ ],
+ "returnComment": []
+ },
+ {
+ "parentPluginId": "fleet",
+ "id": "def-server.FleetFileClientInterface.update",
+ "type": "Function",
+ "tags": [],
+ "label": "update",
+ "description": [
+ "Updates metadata for the file. Only applicable when type of file is `to-host`."
+ ],
+ "signature": [
+ "(fileId: string, updates: Partial<",
+ {
+ "pluginId": "fleet",
+ "scope": "server",
+ "docId": "kibFleetPluginApi",
+ "section": "def-server.FleetFileUpdatableFields",
+ "text": "FleetFileUpdatableFields"
+ },
+ ">) => Promise<",
+ {
+ "pluginId": "fleet",
+ "scope": "server",
+ "docId": "kibFleetPluginApi",
+ "section": "def-server.FleetFile",
+ "text": "FleetFile"
+ },
+ ">"
+ ],
+ "path": "x-pack/plugins/fleet/server/services/files/types.ts",
+ "deprecated": false,
+ "trackAdoption": false,
+ "children": [
+ {
+ "parentPluginId": "fleet",
+ "id": "def-server.FleetFileClientInterface.update.$1",
+ "type": "string",
+ "tags": [],
+ "label": "fileId",
+ "description": [],
+ "signature": [
+ "string"
+ ],
+ "path": "x-pack/plugins/fleet/server/services/files/types.ts",
+ "deprecated": false,
+ "trackAdoption": false,
+ "isRequired": true
+ },
+ {
+ "parentPluginId": "fleet",
+ "id": "def-server.FleetFileClientInterface.update.$2",
+ "type": "Object",
+ "tags": [],
+ "label": "updates",
+ "description": [],
+ "signature": [
+ "Partial<",
+ {
+ "pluginId": "fleet",
+ "scope": "server",
+ "docId": "kibFleetPluginApi",
+ "section": "def-server.FleetFileUpdatableFields",
+ "text": "FleetFileUpdatableFields"
+ },
+ ">"
+ ],
+ "path": "x-pack/plugins/fleet/server/services/files/types.ts",
+ "deprecated": false,
+ "trackAdoption": false,
+ "isRequired": true
+ }
+ ],
+ "returnComment": []
+ },
+ {
+ "parentPluginId": "fleet",
+ "id": "def-server.FleetFileClientInterface.doesFileHaveData",
+ "type": "Function",
+ "tags": [],
+ "label": "doesFileHaveData",
+ "description": [
+ "Checks if a file has chunks"
+ ],
+ "signature": [
+ "(fileId: string) => Promise"
],
- "path": "x-pack/plugins/fleet/server/services/index.ts",
+ "path": "x-pack/plugins/fleet/server/services/files/types.ts",
"deprecated": false,
"trackAdoption": false,
"children": [
{
"parentPluginId": "fleet",
- "id": "def-server.ESIndexPatternService.getESIndexPattern.$1",
- "type": "Object",
+ "id": "def-server.FleetFileClientInterface.doesFileHaveData.$1",
+ "type": "string",
"tags": [],
- "label": "savedObjectsClient",
+ "label": "fileId",
"description": [],
"signature": [
- {
- "pluginId": "@kbn/core-saved-objects-api-server",
- "scope": "common",
- "docId": "kibKbnCoreSavedObjectsApiServerPluginApi",
- "section": "def-common.SavedObjectsClientContract",
- "text": "SavedObjectsClientContract"
- }
+ "string"
],
- "path": "x-pack/plugins/fleet/server/services/index.ts",
+ "path": "x-pack/plugins/fleet/server/services/files/types.ts",
"deprecated": false,
"trackAdoption": false,
"isRequired": true
- },
+ }
+ ],
+ "returnComment": []
+ },
+ {
+ "parentPluginId": "fleet",
+ "id": "def-server.FleetFileClientInterface.download",
+ "type": "Function",
+ "tags": [],
+ "label": "download",
+ "description": [
+ "Returns a Stream for downloading the file"
+ ],
+ "signature": [
+ "(fileId: string) => Promise<{ stream: ",
+ "Readable",
+ "; fileName: string; mimeType?: string | undefined; }>"
+ ],
+ "path": "x-pack/plugins/fleet/server/services/files/types.ts",
+ "deprecated": false,
+ "trackAdoption": false,
+ "children": [
{
"parentPluginId": "fleet",
- "id": "def-server.ESIndexPatternService.getESIndexPattern.$2",
+ "id": "def-server.FleetFileClientInterface.download.$1",
"type": "string",
"tags": [],
- "label": "pkgName",
+ "label": "fileId",
"description": [],
"signature": [
"string"
],
- "path": "x-pack/plugins/fleet/server/services/index.ts",
+ "path": "x-pack/plugins/fleet/server/services/files/types.ts",
"deprecated": false,
"trackAdoption": false,
"isRequired": true
+ }
+ ],
+ "returnComment": []
+ },
+ {
+ "parentPluginId": "fleet",
+ "id": "def-server.FleetFileClientInterface.get",
+ "type": "Function",
+ "tags": [],
+ "label": "get",
+ "description": [
+ "Returns meta info about the file"
+ ],
+ "signature": [
+ "(fileId: string) => Promise<",
+ {
+ "pluginId": "fleet",
+ "scope": "server",
+ "docId": "kibFleetPluginApi",
+ "section": "def-server.FleetFile",
+ "text": "FleetFile"
},
+ ">"
+ ],
+ "path": "x-pack/plugins/fleet/server/services/files/types.ts",
+ "deprecated": false,
+ "trackAdoption": false,
+ "children": [
{
"parentPluginId": "fleet",
- "id": "def-server.ESIndexPatternService.getESIndexPattern.$3",
+ "id": "def-server.FleetFileClientInterface.get.$1",
"type": "string",
"tags": [],
- "label": "datasetPath",
+ "label": "fileId",
"description": [],
"signature": [
"string"
],
- "path": "x-pack/plugins/fleet/server/services/index.ts",
+ "path": "x-pack/plugins/fleet/server/services/files/types.ts",
"deprecated": false,
"trackAdoption": false,
"isRequired": true
@@ -5525,6 +5962,45 @@
],
"initialIsOpen": false
},
+ {
+ "parentPluginId": "fleet",
+ "id": "def-server.FleetFileUpdatableFields",
+ "type": "Interface",
+ "tags": [],
+ "label": "FleetFileUpdatableFields",
+ "description": [],
+ "path": "x-pack/plugins/fleet/server/services/files/types.ts",
+ "deprecated": false,
+ "trackAdoption": false,
+ "children": [
+ {
+ "parentPluginId": "fleet",
+ "id": "def-server.FleetFileUpdatableFields.agents",
+ "type": "Array",
+ "tags": [],
+ "label": "agents",
+ "description": [],
+ "signature": [
+ "string[]"
+ ],
+ "path": "x-pack/plugins/fleet/server/services/files/types.ts",
+ "deprecated": false,
+ "trackAdoption": false
+ },
+ {
+ "parentPluginId": "fleet",
+ "id": "def-server.FleetFileUpdatableFields.actionId",
+ "type": "string",
+ "tags": [],
+ "label": "actionId",
+ "description": [],
+ "path": "x-pack/plugins/fleet/server/services/files/types.ts",
+ "deprecated": false,
+ "trackAdoption": false
+ }
+ ],
+ "initialIsOpen": false
+ },
{
"parentPluginId": "fleet",
"id": "def-server.FleetSetupDeps",
@@ -5704,6 +6180,47 @@
],
"initialIsOpen": false
},
+ {
+ "parentPluginId": "fleet",
+ "id": "def-server.HapiReadableStream",
+ "type": "Interface",
+ "tags": [],
+ "label": "HapiReadableStream",
+ "description": [
+ "\nReadable returned by Hapi when `stream` is used to define a property and/or route payload"
+ ],
+ "signature": [
+ {
+ "pluginId": "fleet",
+ "scope": "server",
+ "docId": "kibFleetPluginApi",
+ "section": "def-server.HapiReadableStream",
+ "text": "HapiReadableStream"
+ },
+ " extends ",
+ "Readable"
+ ],
+ "path": "x-pack/plugins/fleet/server/services/files/types.ts",
+ "deprecated": false,
+ "trackAdoption": false,
+ "children": [
+ {
+ "parentPluginId": "fleet",
+ "id": "def-server.HapiReadableStream.hapi",
+ "type": "Object",
+ "tags": [],
+ "label": "hapi",
+ "description": [],
+ "signature": [
+ "{ filename: string; headers: Record; }"
+ ],
+ "path": "x-pack/plugins/fleet/server/services/files/types.ts",
+ "deprecated": false,
+ "trackAdoption": false
+ }
+ ],
+ "initialIsOpen": false
+ },
{
"parentPluginId": "fleet",
"id": "def-server.MessageSigningServiceInterface",
@@ -9176,6 +9693,23 @@
"trackAdoption": false,
"initialIsOpen": false
},
+ {
+ "parentPluginId": "fleet",
+ "id": "def-server.FleetFileTransferDirection",
+ "type": "Type",
+ "tags": [],
+ "label": "FleetFileTransferDirection",
+ "description": [
+ "\nThe type of file.\nUse `from-host` when interacting with files that were sent to ES from the\nhost (via Fleet-Server)\nUse `to-host` when interacting with files that are being sent to the host\n(via fleet-server)"
+ ],
+ "signature": [
+ "\"from-host\" | \"to-host\""
+ ],
+ "path": "x-pack/plugins/fleet/server/services/files/types.ts",
+ "deprecated": false,
+ "trackAdoption": false,
+ "initialIsOpen": false
+ },
{
"parentPluginId": "fleet",
"id": "def-server.ListArtifactsProps",
@@ -16179,6 +16713,91 @@
],
"returnComment": []
},
+ {
+ "parentPluginId": "fleet",
+ "id": "def-server.FleetStartContract.createFilesClient",
+ "type": "Function",
+ "tags": [],
+ "label": "createFilesClient",
+ "description": [
+ "\nCreate a Fleet Files client instance"
+ ],
+ "signature": [
+ "(packageName: string, type: ",
+ {
+ "pluginId": "fleet",
+ "scope": "server",
+ "docId": "kibFleetPluginApi",
+ "section": "def-server.FleetFileTransferDirection",
+ "text": "FleetFileTransferDirection"
+ },
+ ", maxSizeBytes?: number | undefined) => ",
+ {
+ "pluginId": "fleet",
+ "scope": "server",
+ "docId": "kibFleetPluginApi",
+ "section": "def-server.FleetFileClientInterface",
+ "text": "FleetFileClientInterface"
+ }
+ ],
+ "path": "x-pack/plugins/fleet/server/plugin.ts",
+ "deprecated": false,
+ "trackAdoption": false,
+ "children": [
+ {
+ "parentPluginId": "fleet",
+ "id": "def-server.FleetStartContract.createFilesClient.$1",
+ "type": "string",
+ "tags": [],
+ "label": "packageName",
+ "description": [],
+ "signature": [
+ "string"
+ ],
+ "path": "x-pack/plugins/fleet/server/plugin.ts",
+ "deprecated": false,
+ "trackAdoption": false,
+ "isRequired": true
+ },
+ {
+ "parentPluginId": "fleet",
+ "id": "def-server.FleetStartContract.createFilesClient.$2",
+ "type": "CompoundType",
+ "tags": [],
+ "label": "type",
+ "description": [],
+ "signature": [
+ {
+ "pluginId": "fleet",
+ "scope": "server",
+ "docId": "kibFleetPluginApi",
+ "section": "def-server.FleetFileTransferDirection",
+ "text": "FleetFileTransferDirection"
+ }
+ ],
+ "path": "x-pack/plugins/fleet/server/plugin.ts",
+ "deprecated": false,
+ "trackAdoption": false,
+ "isRequired": true
+ },
+ {
+ "parentPluginId": "fleet",
+ "id": "def-server.FleetStartContract.createFilesClient.$3",
+ "type": "number",
+ "tags": [],
+ "label": "maxSizeBytes",
+ "description": [],
+ "signature": [
+ "number | undefined"
+ ],
+ "path": "x-pack/plugins/fleet/server/plugin.ts",
+ "deprecated": false,
+ "trackAdoption": false,
+ "isRequired": false
+ }
+ ],
+ "returnComment": []
+ },
{
"parentPluginId": "fleet",
"id": "def-server.FleetStartContract.messageSigningService",
@@ -19992,6 +20611,20 @@
"path": "x-pack/plugins/fleet/common/types/models/output.ts",
"deprecated": false,
"trackAdoption": false
+ },
+ {
+ "parentPluginId": "fleet",
+ "id": "def-common.NewOutput.allow_edit",
+ "type": "Array",
+ "tags": [],
+ "label": "allow_edit",
+ "description": [],
+ "signature": [
+ "string[] | undefined"
+ ],
+ "path": "x-pack/plugins/fleet/common/types/models/output.ts",
+ "deprecated": false,
+ "trackAdoption": false
}
],
"initialIsOpen": false
@@ -22907,6 +23540,51 @@
"trackAdoption": false,
"initialIsOpen": false
},
+ {
+ "parentPluginId": "fleet",
+ "id": "def-common.FLEET_CLOUD_DEFEND_PACKAGE",
+ "type": "string",
+ "tags": [],
+ "label": "FLEET_CLOUD_DEFEND_PACKAGE",
+ "description": [],
+ "signature": [
+ "\"cloud_defend\""
+ ],
+ "path": "x-pack/plugins/fleet/common/constants/epm.ts",
+ "deprecated": false,
+ "trackAdoption": false,
+ "initialIsOpen": false
+ },
+ {
+ "parentPluginId": "fleet",
+ "id": "def-common.FLEET_CLOUD_SECURITY_POSTURE_CNVM_POLICY_TEMPLATE",
+ "type": "string",
+ "tags": [],
+ "label": "FLEET_CLOUD_SECURITY_POSTURE_CNVM_POLICY_TEMPLATE",
+ "description": [],
+ "signature": [
+ "\"vuln_mgmt\""
+ ],
+ "path": "x-pack/plugins/fleet/common/constants/epm.ts",
+ "deprecated": false,
+ "trackAdoption": false,
+ "initialIsOpen": false
+ },
+ {
+ "parentPluginId": "fleet",
+ "id": "def-common.FLEET_CLOUD_SECURITY_POSTURE_CSPM_POLICY_TEMPLATE",
+ "type": "string",
+ "tags": [],
+ "label": "FLEET_CLOUD_SECURITY_POSTURE_CSPM_POLICY_TEMPLATE",
+ "description": [],
+ "signature": [
+ "\"cspm\""
+ ],
+ "path": "x-pack/plugins/fleet/common/constants/epm.ts",
+ "deprecated": false,
+ "trackAdoption": false,
+ "initialIsOpen": false
+ },
{
"parentPluginId": "fleet",
"id": "def-common.FLEET_CLOUD_SECURITY_POSTURE_KSPM_POLICY_TEMPLATE",
diff --git a/api_docs/fleet.mdx b/api_docs/fleet.mdx
index cdde305eacfb8..f941f9daa1bbf 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-05-15
+date: 2023-05-23
tags: ['contributor', 'dev', 'apidocs', 'kibana', 'fleet']
---
import fleetObj from './fleet.devdocs.json';
@@ -21,7 +21,7 @@ Contact [@elastic/fleet](https://github.com/orgs/elastic/teams/fleet) for questi
| Public API count | Any count | Items lacking comments | Missing exports |
|-------------------|-----------|------------------------|-----------------|
-| 1117 | 3 | 1012 | 31 |
+| 1157 | 3 | 1043 | 31 |
## Client
diff --git a/api_docs/global_search.mdx b/api_docs/global_search.mdx
index a27c8f8f39485..ad5cdc7b82f8a 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-05-15
+date: 2023-05-23
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 cc728151b9e50..f6702135d397c 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-05-15
+date: 2023-05-23
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 7537e8af89b6e..785e0ee419e3c 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-05-15
+date: 2023-05-23
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 977428e4eb036..277fa9a7063b9 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-05-15
+date: 2023-05-23
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 e24d451a2fe79..c302f65052c1d 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-05-15
+date: 2023-05-23
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 e55e04d6419e1..a33e7c40463b8 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-05-15
+date: 2023-05-23
tags: ['contributor', 'dev', 'apidocs', 'kibana', 'indexManagement']
---
import indexManagementObj from './index_management.devdocs.json';
diff --git a/api_docs/infra.devdocs.json b/api_docs/infra.devdocs.json
index 767658d05117b..28ccc0b48df5d 100644
--- a/api_docs/infra.devdocs.json
+++ b/api_docs/infra.devdocs.json
@@ -379,6 +379,20 @@
"deprecated": false,
"trackAdoption": false
},
+ {
+ "parentPluginId": "infra",
+ "id": "def-public.InfraClientStartExports.locators",
+ "type": "Object",
+ "tags": [],
+ "label": "locators",
+ "description": [],
+ "signature": [
+ "InfraLocators"
+ ],
+ "path": "x-pack/plugins/infra/public/types.ts",
+ "deprecated": false,
+ "trackAdoption": false
+ },
{
"parentPluginId": "infra",
"id": "def-public.InfraClientStartExports.ContainerMetricsTable",
diff --git a/api_docs/infra.mdx b/api_docs/infra.mdx
index b5717107094b4..121c2f06901ab 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-05-15
+date: 2023-05-23
tags: ['contributor', 'dev', 'apidocs', 'kibana', 'infra']
---
import infraObj from './infra.devdocs.json';
@@ -21,7 +21,7 @@ Contact [@elastic/infra-monitoring-ui](https://github.com/orgs/elastic/teams/inf
| Public API count | Any count | Items lacking comments | Missing exports |
|-------------------|-----------|------------------------|-----------------|
-| 48 | 0 | 45 | 13 |
+| 49 | 0 | 46 | 14 |
## Client
diff --git a/api_docs/inspector.mdx b/api_docs/inspector.mdx
index 60fc0751d40d3..fbe20d5ef9888 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-05-15
+date: 2023-05-23
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 6807d0364d38a..8f964cf094713 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-05-15
+date: 2023-05-23
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 5ddddf825ba19..c55aefb62ce85 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-05-15
+date: 2023-05-23
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 9a5ac3e0c41e5..3e1313b3b3f69 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-05-15
+date: 2023-05-23
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 125f17b7744f4..bc388acef5377 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-05-15
+date: 2023-05-23
tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/aiops-utils']
---
import kbnAiopsUtilsObj from './kbn_aiops_utils.devdocs.json';
diff --git a/api_docs/kbn_alerting_state_types.mdx b/api_docs/kbn_alerting_state_types.mdx
index 084705dc128c9..5de8f0988af2b 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-05-15
+date: 2023-05-23
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.devdocs.json b/api_docs/kbn_alerts.devdocs.json
deleted file mode 100644
index d31f88657c06e..0000000000000
--- a/api_docs/kbn_alerts.devdocs.json
+++ /dev/null
@@ -1,164 +0,0 @@
-{
- "id": "@kbn/alerts",
- "client": {
- "classes": [],
- "functions": [],
- "interfaces": [],
- "enums": [],
- "misc": [],
- "objects": []
- },
- "server": {
- "classes": [],
- "functions": [],
- "interfaces": [],
- "enums": [],
- "misc": [],
- "objects": []
- },
- "common": {
- "classes": [],
- "functions": [
- {
- "parentPluginId": "@kbn/alerts",
- "id": "def-common.AlertsFeatureNoPermissions",
- "type": "Function",
- "tags": [],
- "label": "AlertsFeatureNoPermissions",
- "description": [],
- "signature": [
- "{ ({ documentationUrl, iconType, }: React.PropsWithChildren): JSX.Element; displayName: string | undefined; }"
- ],
- "path": "packages/kbn-alerts/src/features_no_permissions/index.tsx",
- "deprecated": false,
- "trackAdoption": false,
- "children": [
- {
- "parentPluginId": "@kbn/alerts",
- "id": "def-common.AlertsFeatureNoPermissions.$1",
- "type": "CompoundType",
- "tags": [],
- "label": "{\n documentationUrl,\n iconType,\n}",
- "description": [],
- "signature": [
- "React.PropsWithChildren"
- ],
- "path": "packages/kbn-alerts/src/features_no_permissions/index.tsx",
- "deprecated": false,
- "trackAdoption": false,
- "isRequired": true
- }
- ],
- "returnComment": [],
- "initialIsOpen": false
- },
- {
- "parentPluginId": "@kbn/alerts",
- "id": "def-common.useGetUserAlertsPermissions",
- "type": "Function",
- "tags": [],
- "label": "useGetUserAlertsPermissions",
- "description": [],
- "signature": [
- "(uiCapabilities: any, featureId: string) => ",
- {
- "pluginId": "@kbn/alerts",
- "scope": "common",
- "docId": "kibKbnAlertsPluginApi",
- "section": "def-common.UseGetUserAlertsPermissionsProps",
- "text": "UseGetUserAlertsPermissionsProps"
- }
- ],
- "path": "packages/kbn-alerts/src/hooks/use_get_alerts_permissions/index.ts",
- "deprecated": false,
- "trackAdoption": false,
- "children": [
- {
- "parentPluginId": "@kbn/alerts",
- "id": "def-common.useGetUserAlertsPermissions.$1",
- "type": "Any",
- "tags": [],
- "label": "uiCapabilities",
- "description": [],
- "signature": [
- "any"
- ],
- "path": "packages/kbn-alerts/src/hooks/use_get_alerts_permissions/index.ts",
- "deprecated": false,
- "trackAdoption": false,
- "isRequired": true
- },
- {
- "parentPluginId": "@kbn/alerts",
- "id": "def-common.useGetUserAlertsPermissions.$2",
- "type": "string",
- "tags": [],
- "label": "featureId",
- "description": [],
- "signature": [
- "string"
- ],
- "path": "packages/kbn-alerts/src/hooks/use_get_alerts_permissions/index.ts",
- "deprecated": false,
- "trackAdoption": false,
- "isRequired": true
- }
- ],
- "returnComment": [],
- "initialIsOpen": false
- }
- ],
- "interfaces": [
- {
- "parentPluginId": "@kbn/alerts",
- "id": "def-common.UseGetUserAlertsPermissionsProps",
- "type": "Interface",
- "tags": [],
- "label": "UseGetUserAlertsPermissionsProps",
- "description": [],
- "path": "packages/kbn-alerts/src/hooks/use_get_alerts_permissions/index.ts",
- "deprecated": false,
- "trackAdoption": false,
- "children": [
- {
- "parentPluginId": "@kbn/alerts",
- "id": "def-common.UseGetUserAlertsPermissionsProps.crud",
- "type": "boolean",
- "tags": [],
- "label": "crud",
- "description": [],
- "path": "packages/kbn-alerts/src/hooks/use_get_alerts_permissions/index.ts",
- "deprecated": false,
- "trackAdoption": false
- },
- {
- "parentPluginId": "@kbn/alerts",
- "id": "def-common.UseGetUserAlertsPermissionsProps.read",
- "type": "boolean",
- "tags": [],
- "label": "read",
- "description": [],
- "path": "packages/kbn-alerts/src/hooks/use_get_alerts_permissions/index.ts",
- "deprecated": false,
- "trackAdoption": false
- },
- {
- "parentPluginId": "@kbn/alerts",
- "id": "def-common.UseGetUserAlertsPermissionsProps.loading",
- "type": "boolean",
- "tags": [],
- "label": "loading",
- "description": [],
- "path": "packages/kbn-alerts/src/hooks/use_get_alerts_permissions/index.ts",
- "deprecated": false,
- "trackAdoption": false
- }
- ],
- "initialIsOpen": false
- }
- ],
- "enums": [],
- "misc": [],
- "objects": []
- }
-}
\ No newline at end of file
diff --git a/api_docs/kbn_alerts.mdx b/api_docs/kbn_alerts.mdx
deleted file mode 100644
index 8d39b83eb1596..0000000000000
--- a/api_docs/kbn_alerts.mdx
+++ /dev/null
@@ -1,33 +0,0 @@
----
-####
-#### 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: kibKbnAlertsPluginApi
-slug: /kibana-dev-docs/api/kbn-alerts
-title: "@kbn/alerts"
-image: https://source.unsplash.com/400x175/?github
-description: API docs for the @kbn/alerts plugin
-date: 2023-05-15
-tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/alerts']
----
-import kbnAlertsObj from './kbn_alerts.devdocs.json';
-
-
-
-Contact [@elastic/security-solution](https://github.com/orgs/elastic/teams/security-solution) for questions regarding this plugin.
-
-**Code health stats**
-
-| Public API count | Any count | Items lacking comments | Missing exports |
-|-------------------|-----------|------------------------|-----------------|
-| 9 | 1 | 9 | 0 |
-
-## Common
-
-### Functions
-
-
-### Interfaces
-
-
diff --git a/api_docs/kbn_alerts_as_data_utils.mdx b/api_docs/kbn_alerts_as_data_utils.mdx
index 4598309b61703..6133d36e1ed9a 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-05-15
+date: 2023-05-23
tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/alerts-as-data-utils']
---
import kbnAlertsAsDataUtilsObj from './kbn_alerts_as_data_utils.devdocs.json';
diff --git a/api_docs/kbn_alerts_ui_shared.mdx b/api_docs/kbn_alerts_ui_shared.mdx
index 3271fb491ea5b..f0335857f8e2b 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-05-15
+date: 2023-05-23
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 a6adec5426d00..fd7d70c3a7467 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-05-15
+date: 2023-05-23
tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/analytics']
---
import kbnAnalyticsObj from './kbn_analytics.devdocs.json';
diff --git a/api_docs/kbn_analytics_client.mdx b/api_docs/kbn_analytics_client.mdx
index 1964ccda6cfe9..f5f1e9a2e4af6 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-05-15
+date: 2023-05-23
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 a0376aad5fe8c..2d5a7ac364c87 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-05-15
+date: 2023-05-23
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 022002c3baf24..cabe87892d748 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-05-15
+date: 2023-05-23
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 f2d3f23c66d70..8742aeb30d754 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-05-15
+date: 2023-05-23
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 cf2412ad0a911..a4a98642cf94e 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-05-15
+date: 2023-05-23
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 9736c3154882f..f10b5e0d7aa8c 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-05-15
+date: 2023-05-23
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 45ca1f28e7e4d..717991ae5281a 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-05-15
+date: 2023-05-23
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 38f5904fd2df9..ceb4d2c114457 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-05-15
+date: 2023-05-23
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 794603de35de4..0f61b21b5eba7 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-05-15
+date: 2023-05-23
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 f2650ad2179ff..184ceb72e0e46 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-05-15
+date: 2023-05-23
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 b8182acf4ea55..4638ae1aba1f0 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-05-15
+date: 2023-05-23
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 79324d47e575c..6ad1d35c3f89c 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-05-15
+date: 2023-05-23
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 800a78f66aabc..924d9f4837ac8 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-05-15
+date: 2023-05-23
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.mdx b/api_docs/kbn_chart_expressions_common.mdx
index 64ac4d13bc862..7a93ffe7f0936 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-05-15
+date: 2023-05-23
tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/chart-expressions-common']
---
import kbnChartExpressionsCommonObj from './kbn_chart_expressions_common.devdocs.json';
diff --git a/api_docs/kbn_chart_icons.mdx b/api_docs/kbn_chart_icons.mdx
index 2a237b2521584..7d2e3f9ba1503 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-05-15
+date: 2023-05-23
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 cf97ccdfb5010..d554e05744d78 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-05-15
+date: 2023-05-23
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 faae743decdad..58166d93b5255 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-05-15
+date: 2023-05-23
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 fd5bcadf18410..a37a901e8a45b 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-05-15
+date: 2023-05-23
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 8f52dd2be3652..4b44d405d2c52 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-05-15
+date: 2023-05-23
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 3b68b689aedce..eb0e976763797 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-05-15
+date: 2023-05-23
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 0b5bb40931ac8..70d3e1a73b825 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-05-15
+date: 2023-05-23
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.mdx b/api_docs/kbn_coloring.mdx
index 480578f30f9aa..d85f97f98090c 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-05-15
+date: 2023-05-23
tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/coloring']
---
import kbnColoringObj from './kbn_coloring.devdocs.json';
diff --git a/api_docs/kbn_config.mdx b/api_docs/kbn_config.mdx
index 76f13e76440cf..ed4d20fec646b 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-05-15
+date: 2023-05-23
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 9f1f0f834d246..c411e3dc96cad 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-05-15
+date: 2023-05-23
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 54f04479ae3d1..830e1bef3207b 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-05-15
+date: 2023-05-23
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 c469ca5b7b00d..9b5c6ff10b1cf 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-05-15
+date: 2023-05-23
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_table_list.mdx b/api_docs/kbn_content_management_table_list.mdx
index b3ab3818818a9..867188ff21c20 100644
--- a/api_docs/kbn_content_management_table_list.mdx
+++ b/api_docs/kbn_content_management_table_list.mdx
@@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-content-management-table-list
title: "@kbn/content-management-table-list"
image: https://source.unsplash.com/400x175/?github
description: API docs for the @kbn/content-management-table-list plugin
-date: 2023-05-15
+date: 2023-05-23
tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/content-management-table-list']
---
import kbnContentManagementTableListObj from './kbn_content_management_table_list.devdocs.json';
diff --git a/api_docs/kbn_content_management_utils.devdocs.json b/api_docs/kbn_content_management_utils.devdocs.json
index 6c6c13efb2b09..8fccb2a9f21a8 100644
--- a/api_docs/kbn_content_management_utils.devdocs.json
+++ b/api_docs/kbn_content_management_utils.devdocs.json
@@ -17,177 +17,576 @@
"objects": []
},
"common": {
- "classes": [],
- "functions": [
+ "classes": [
{
"parentPluginId": "@kbn/content-management-utils",
- "id": "def-common.createResultSchema",
- "type": "Function",
+ "id": "def-common.SOContentStorage",
+ "type": "Class",
"tags": [],
- "label": "createResultSchema",
+ "label": "SOContentStorage",
"description": [],
"signature": [
- "(soSchema: ",
{
- "pluginId": "@kbn/config-schema",
+ "pluginId": "@kbn/content-management-utils",
"scope": "common",
- "docId": "kibKbnConfigSchemaPluginApi",
- "section": "def-common.ObjectType",
- "text": "ObjectType"
+ "docId": "kibKbnContentManagementUtilsPluginApi",
+ "section": "def-common.SOContentStorage",
+ "text": "SOContentStorage"
},
- ") => ",
+ " implements ",
{
- "pluginId": "@kbn/config-schema",
- "scope": "common",
- "docId": "kibKbnConfigSchemaPluginApi",
- "section": "def-common.ObjectType",
- "text": "ObjectType"
+ "pluginId": "contentManagement",
+ "scope": "server",
+ "docId": "kibContentManagementPluginApi",
+ "section": "def-server.ContentStorage",
+ "text": "ContentStorage"
},
- "<{ item: ",
+ "; }>"
+ ">"
],
- "path": "packages/kbn-content-management-utils/src/schema.ts",
+ "path": "packages/kbn-content-management-utils/src/saved_object_content_storage.ts",
"deprecated": false,
"trackAdoption": false,
"children": [
{
"parentPluginId": "@kbn/content-management-utils",
- "id": "def-common.createResultSchema.$1",
+ "id": "def-common.SOContentStorage.Unnamed",
+ "type": "Function",
+ "tags": [],
+ "label": "Constructor",
+ "description": [],
+ "signature": [
+ "any"
+ ],
+ "path": "packages/kbn-content-management-utils/src/saved_object_content_storage.ts",
+ "deprecated": false,
+ "trackAdoption": false,
+ "children": [
+ {
+ "parentPluginId": "@kbn/content-management-utils",
+ "id": "def-common.SOContentStorage.Unnamed.$1",
+ "type": "Object",
+ "tags": [],
+ "label": "{\n savedObjectType,\n cmServicesDefinition,\n createArgsToSoCreateOptions,\n updateArgsToSoUpdateOptions,\n searchArgsToSOFindOptions,\n enableMSearch,\n }",
+ "description": [],
+ "signature": [
+ {
+ "pluginId": "@kbn/content-management-utils",
+ "scope": "common",
+ "docId": "kibKbnContentManagementUtilsPluginApi",
+ "section": "def-common.SOContentStorageConstrutorParams",
+ "text": "SOContentStorageConstrutorParams"
+ },
+ ""
+ ],
+ "path": "packages/kbn-content-management-utils/src/saved_object_content_storage.ts",
+ "deprecated": false,
+ "trackAdoption": false,
+ "isRequired": true
+ }
+ ],
+ "returnComment": []
+ },
+ {
+ "parentPluginId": "@kbn/content-management-utils",
+ "id": "def-common.SOContentStorage.mSearch",
"type": "Object",
"tags": [],
- "label": "soSchema",
+ "label": "mSearch",
"description": [],
"signature": [
+ "{ savedObjectType: string; toItemResult: (ctx: ",
{
- "pluginId": "@kbn/config-schema",
+ "pluginId": "contentManagement",
+ "scope": "server",
+ "docId": "kibContentManagementPluginApi",
+ "section": "def-server.StorageContext",
+ "text": "StorageContext"
+ },
+ ", savedObject: ",
+ {
+ "pluginId": "@kbn/core-saved-objects-api-server",
"scope": "common",
- "docId": "kibKbnConfigSchemaPluginApi",
- "section": "def-common.ObjectType",
- "text": "ObjectType"
+ "docId": "kibKbnCoreSavedObjectsApiServerPluginApi",
+ "section": "def-common.SavedObjectsFindResult",
+ "text": "SavedObjectsFindResult"
},
- ""
+ ") => Types[\"Item\"]; } | undefined"
],
- "path": "packages/kbn-content-management-utils/src/schema.ts",
+ "path": "packages/kbn-content-management-utils/src/saved_object_content_storage.ts",
"deprecated": false,
- "trackAdoption": false,
- "isRequired": true
- }
- ],
- "returnComment": [],
- "initialIsOpen": false
- },
- {
- "parentPluginId": "@kbn/content-management-utils",
- "id": "def-common.objectTypeToGetResultSchema",
- "type": "Function",
- "tags": [],
- "label": "objectTypeToGetResultSchema",
- "description": [],
- "signature": [
- "(soSchema: ",
- {
- "pluginId": "@kbn/config-schema",
- "scope": "common",
- "docId": "kibKbnConfigSchemaPluginApi",
- "section": "def-common.ObjectType",
- "text": "ObjectType"
- },
- ") => ",
- {
- "pluginId": "@kbn/config-schema",
- "scope": "common",
- "docId": "kibKbnConfigSchemaPluginApi",
- "section": "def-common.ObjectType",
- "text": "ObjectType"
- },
- "<{ item: ",
- {
- "pluginId": "@kbn/config-schema",
- "scope": "common",
- "docId": "kibKbnConfigSchemaPluginApi",
- "section": "def-common.ObjectType",
- "text": "ObjectType"
- },
- "; meta: ",
- {
- "pluginId": "@kbn/config-schema",
- "scope": "common",
- "docId": "kibKbnConfigSchemaPluginApi",
- "section": "def-common.ObjectType",
- "text": "ObjectType"
+ "trackAdoption": false
},
- "<{ outcome: ",
{
- "pluginId": "@kbn/config-schema",
- "scope": "common",
- "docId": "kibKbnConfigSchemaPluginApi",
- "section": "def-common.Type",
- "text": "Type"
+ "parentPluginId": "@kbn/content-management-utils",
+ "id": "def-common.SOContentStorage.get",
+ "type": "Function",
+ "tags": [],
+ "label": "get",
+ "description": [],
+ "signature": [
+ "(ctx: ",
+ {
+ "pluginId": "contentManagement",
+ "scope": "server",
+ "docId": "kibContentManagementPluginApi",
+ "section": "def-server.StorageContext",
+ "text": "StorageContext"
+ },
+ ", id: string) => Promise"
+ ],
+ "path": "packages/kbn-content-management-utils/src/saved_object_content_storage.ts",
+ "deprecated": false,
+ "trackAdoption": false,
+ "children": [
+ {
+ "parentPluginId": "@kbn/content-management-utils",
+ "id": "def-common.SOContentStorage.get.$1",
+ "type": "Object",
+ "tags": [],
+ "label": "ctx",
+ "description": [],
+ "signature": [
+ {
+ "pluginId": "contentManagement",
+ "scope": "server",
+ "docId": "kibContentManagementPluginApi",
+ "section": "def-server.StorageContext",
+ "text": "StorageContext"
+ }
+ ],
+ "path": "packages/kbn-content-management-utils/src/saved_object_content_storage.ts",
+ "deprecated": false,
+ "trackAdoption": false,
+ "isRequired": true
+ },
+ {
+ "parentPluginId": "@kbn/content-management-utils",
+ "id": "def-common.SOContentStorage.get.$2",
+ "type": "string",
+ "tags": [],
+ "label": "id",
+ "description": [],
+ "signature": [
+ "string"
+ ],
+ "path": "packages/kbn-content-management-utils/src/saved_object_content_storage.ts",
+ "deprecated": false,
+ "trackAdoption": false,
+ "isRequired": true
+ }
+ ],
+ "returnComment": []
},
- "<\"conflict\" | \"exactMatch\" | \"aliasMatch\">; aliasTargetId: ",
{
- "pluginId": "@kbn/config-schema",
- "scope": "common",
- "docId": "kibKbnConfigSchemaPluginApi",
- "section": "def-common.Type",
- "text": "Type"
+ "parentPluginId": "@kbn/content-management-utils",
+ "id": "def-common.SOContentStorage.bulkGet",
+ "type": "Function",
+ "tags": [],
+ "label": "bulkGet",
+ "description": [],
+ "signature": [
+ "() => Promise"
+ ],
+ "path": "packages/kbn-content-management-utils/src/saved_object_content_storage.ts",
+ "deprecated": false,
+ "trackAdoption": false,
+ "children": [],
+ "returnComment": []
},
- "; aliasPurpose: ",
{
- "pluginId": "@kbn/config-schema",
- "scope": "common",
- "docId": "kibKbnConfigSchemaPluginApi",
- "section": "def-common.Type",
- "text": "Type"
+ "parentPluginId": "@kbn/content-management-utils",
+ "id": "def-common.SOContentStorage.create",
+ "type": "Function",
+ "tags": [],
+ "label": "create",
+ "description": [],
+ "signature": [
+ "(ctx: ",
+ {
+ "pluginId": "contentManagement",
+ "scope": "server",
+ "docId": "kibContentManagementPluginApi",
+ "section": "def-server.StorageContext",
+ "text": "StorageContext"
+ },
+ ", data: Types[\"Attributes\"], options: Types[\"CreateOptions\"]) => Promise"
+ ],
+ "path": "packages/kbn-content-management-utils/src/saved_object_content_storage.ts",
+ "deprecated": false,
+ "trackAdoption": false,
+ "children": [
+ {
+ "parentPluginId": "@kbn/content-management-utils",
+ "id": "def-common.SOContentStorage.create.$1",
+ "type": "Object",
+ "tags": [],
+ "label": "ctx",
+ "description": [],
+ "signature": [
+ {
+ "pluginId": "contentManagement",
+ "scope": "server",
+ "docId": "kibContentManagementPluginApi",
+ "section": "def-server.StorageContext",
+ "text": "StorageContext"
+ }
+ ],
+ "path": "packages/kbn-content-management-utils/src/saved_object_content_storage.ts",
+ "deprecated": false,
+ "trackAdoption": false,
+ "isRequired": true
+ },
+ {
+ "parentPluginId": "@kbn/content-management-utils",
+ "id": "def-common.SOContentStorage.create.$2",
+ "type": "Uncategorized",
+ "tags": [],
+ "label": "data",
+ "description": [],
+ "signature": [
+ "Types[\"Attributes\"]"
+ ],
+ "path": "packages/kbn-content-management-utils/src/saved_object_content_storage.ts",
+ "deprecated": false,
+ "trackAdoption": false,
+ "isRequired": true
+ },
+ {
+ "parentPluginId": "@kbn/content-management-utils",
+ "id": "def-common.SOContentStorage.create.$3",
+ "type": "Uncategorized",
+ "tags": [],
+ "label": "options",
+ "description": [],
+ "signature": [
+ "Types[\"CreateOptions\"]"
+ ],
+ "path": "packages/kbn-content-management-utils/src/saved_object_content_storage.ts",
+ "deprecated": false,
+ "trackAdoption": false,
+ "isRequired": true
+ }
+ ],
+ "returnComment": []
},
- "<\"savedObjectConversion\" | \"savedObjectImport\" | undefined>; }>; }>"
- ],
- "path": "packages/kbn-content-management-utils/src/schema.ts",
- "deprecated": false,
- "trackAdoption": false,
- "children": [
{
"parentPluginId": "@kbn/content-management-utils",
- "id": "def-common.objectTypeToGetResultSchema.$1",
- "type": "Object",
+ "id": "def-common.SOContentStorage.update",
+ "type": "Function",
"tags": [],
- "label": "soSchema",
+ "label": "update",
"description": [],
"signature": [
+ "(ctx: ",
{
- "pluginId": "@kbn/config-schema",
- "scope": "common",
- "docId": "kibKbnConfigSchemaPluginApi",
- "section": "def-common.ObjectType",
- "text": "ObjectType"
+ "pluginId": "contentManagement",
+ "scope": "server",
+ "docId": "kibContentManagementPluginApi",
+ "section": "def-server.StorageContext",
+ "text": "StorageContext"
},
- ""
+ ", id: string, data: Types[\"Attributes\"], options: Types[\"UpdateOptions\"]) => Promise"
],
- "path": "packages/kbn-content-management-utils/src/schema.ts",
+ "path": "packages/kbn-content-management-utils/src/saved_object_content_storage.ts",
"deprecated": false,
"trackAdoption": false,
- "isRequired": true
- }
- ],
- "returnComment": [],
- "initialIsOpen": false
- },
- {
- "parentPluginId": "@kbn/content-management-utils",
- "id": "def-common.savedObjectSchema",
- "type": "Function",
- "tags": [],
- "label": "savedObjectSchema",
+ "children": [
+ {
+ "parentPluginId": "@kbn/content-management-utils",
+ "id": "def-common.SOContentStorage.update.$1",
+ "type": "Object",
+ "tags": [],
+ "label": "ctx",
+ "description": [],
+ "signature": [
+ {
+ "pluginId": "contentManagement",
+ "scope": "server",
+ "docId": "kibContentManagementPluginApi",
+ "section": "def-server.StorageContext",
+ "text": "StorageContext"
+ }
+ ],
+ "path": "packages/kbn-content-management-utils/src/saved_object_content_storage.ts",
+ "deprecated": false,
+ "trackAdoption": false,
+ "isRequired": true
+ },
+ {
+ "parentPluginId": "@kbn/content-management-utils",
+ "id": "def-common.SOContentStorage.update.$2",
+ "type": "string",
+ "tags": [],
+ "label": "id",
+ "description": [],
+ "signature": [
+ "string"
+ ],
+ "path": "packages/kbn-content-management-utils/src/saved_object_content_storage.ts",
+ "deprecated": false,
+ "trackAdoption": false,
+ "isRequired": true
+ },
+ {
+ "parentPluginId": "@kbn/content-management-utils",
+ "id": "def-common.SOContentStorage.update.$3",
+ "type": "Uncategorized",
+ "tags": [],
+ "label": "data",
+ "description": [],
+ "signature": [
+ "Types[\"Attributes\"]"
+ ],
+ "path": "packages/kbn-content-management-utils/src/saved_object_content_storage.ts",
+ "deprecated": false,
+ "trackAdoption": false,
+ "isRequired": true
+ },
+ {
+ "parentPluginId": "@kbn/content-management-utils",
+ "id": "def-common.SOContentStorage.update.$4",
+ "type": "Uncategorized",
+ "tags": [],
+ "label": "options",
+ "description": [],
+ "signature": [
+ "Types[\"UpdateOptions\"]"
+ ],
+ "path": "packages/kbn-content-management-utils/src/saved_object_content_storage.ts",
+ "deprecated": false,
+ "trackAdoption": false,
+ "isRequired": true
+ }
+ ],
+ "returnComment": []
+ },
+ {
+ "parentPluginId": "@kbn/content-management-utils",
+ "id": "def-common.SOContentStorage.delete",
+ "type": "Function",
+ "tags": [],
+ "label": "delete",
+ "description": [],
+ "signature": [
+ "(ctx: ",
+ {
+ "pluginId": "contentManagement",
+ "scope": "server",
+ "docId": "kibContentManagementPluginApi",
+ "section": "def-server.StorageContext",
+ "text": "StorageContext"
+ },
+ ", id: string) => Promise"
+ ],
+ "path": "packages/kbn-content-management-utils/src/saved_object_content_storage.ts",
+ "deprecated": false,
+ "trackAdoption": false,
+ "children": [
+ {
+ "parentPluginId": "@kbn/content-management-utils",
+ "id": "def-common.SOContentStorage.delete.$1",
+ "type": "Object",
+ "tags": [],
+ "label": "ctx",
+ "description": [],
+ "signature": [
+ {
+ "pluginId": "contentManagement",
+ "scope": "server",
+ "docId": "kibContentManagementPluginApi",
+ "section": "def-server.StorageContext",
+ "text": "StorageContext"
+ }
+ ],
+ "path": "packages/kbn-content-management-utils/src/saved_object_content_storage.ts",
+ "deprecated": false,
+ "trackAdoption": false,
+ "isRequired": true
+ },
+ {
+ "parentPluginId": "@kbn/content-management-utils",
+ "id": "def-common.SOContentStorage.delete.$2",
+ "type": "string",
+ "tags": [],
+ "label": "id",
+ "description": [],
+ "signature": [
+ "string"
+ ],
+ "path": "packages/kbn-content-management-utils/src/saved_object_content_storage.ts",
+ "deprecated": false,
+ "trackAdoption": false,
+ "isRequired": true
+ }
+ ],
+ "returnComment": []
+ },
+ {
+ "parentPluginId": "@kbn/content-management-utils",
+ "id": "def-common.SOContentStorage.search",
+ "type": "Function",
+ "tags": [],
+ "label": "search",
+ "description": [],
+ "signature": [
+ "(ctx: ",
+ {
+ "pluginId": "contentManagement",
+ "scope": "server",
+ "docId": "kibContentManagementPluginApi",
+ "section": "def-server.StorageContext",
+ "text": "StorageContext"
+ },
+ ", query: ",
+ {
+ "pluginId": "contentManagement",
+ "scope": "common",
+ "docId": "kibContentManagementPluginApi",
+ "section": "def-common.SearchQuery",
+ "text": "SearchQuery"
+ },
+ ", options?: Types[\"SearchOptions\"]) => Promise"
+ ],
+ "path": "packages/kbn-content-management-utils/src/saved_object_content_storage.ts",
+ "deprecated": false,
+ "trackAdoption": false,
+ "children": [
+ {
+ "parentPluginId": "@kbn/content-management-utils",
+ "id": "def-common.SOContentStorage.search.$1",
+ "type": "Object",
+ "tags": [],
+ "label": "ctx",
+ "description": [],
+ "signature": [
+ {
+ "pluginId": "contentManagement",
+ "scope": "server",
+ "docId": "kibContentManagementPluginApi",
+ "section": "def-server.StorageContext",
+ "text": "StorageContext"
+ }
+ ],
+ "path": "packages/kbn-content-management-utils/src/saved_object_content_storage.ts",
+ "deprecated": false,
+ "trackAdoption": false,
+ "isRequired": true
+ },
+ {
+ "parentPluginId": "@kbn/content-management-utils",
+ "id": "def-common.SOContentStorage.search.$2",
+ "type": "Object",
+ "tags": [],
+ "label": "query",
+ "description": [],
+ "signature": [
+ {
+ "pluginId": "contentManagement",
+ "scope": "common",
+ "docId": "kibContentManagementPluginApi",
+ "section": "def-common.SearchQuery",
+ "text": "SearchQuery"
+ }
+ ],
+ "path": "packages/kbn-content-management-utils/src/saved_object_content_storage.ts",
+ "deprecated": false,
+ "trackAdoption": false,
+ "isRequired": true
+ },
+ {
+ "parentPluginId": "@kbn/content-management-utils",
+ "id": "def-common.SOContentStorage.search.$3",
+ "type": "Uncategorized",
+ "tags": [],
+ "label": "options",
+ "description": [],
+ "signature": [
+ "Types[\"SearchOptions\"]"
+ ],
+ "path": "packages/kbn-content-management-utils/src/saved_object_content_storage.ts",
+ "deprecated": false,
+ "trackAdoption": false,
+ "isRequired": true
+ }
+ ],
+ "returnComment": []
+ }
+ ],
+ "initialIsOpen": false
+ }
+ ],
+ "functions": [
+ {
+ "parentPluginId": "@kbn/content-management-utils",
+ "id": "def-common.createArgsToSoCreateOptionsDefault",
+ "type": "Function",
+ "tags": [],
+ "label": "createArgsToSoCreateOptionsDefault",
"description": [],
"signature": [
- "(attributesSchema: ",
+ "(params: ",
+ {
+ "pluginId": "@kbn/core-saved-objects-api-server",
+ "scope": "common",
+ "docId": "kibKbnCoreSavedObjectsApiServerPluginApi",
+ "section": "def-common.SavedObjectsCreateOptions",
+ "text": "SavedObjectsCreateOptions"
+ },
+ ") => ",
+ {
+ "pluginId": "@kbn/core-saved-objects-api-server",
+ "scope": "common",
+ "docId": "kibKbnCoreSavedObjectsApiServerPluginApi",
+ "section": "def-common.SavedObjectsCreateOptions",
+ "text": "SavedObjectsCreateOptions"
+ }
+ ],
+ "path": "packages/kbn-content-management-utils/src/saved_object_content_storage.ts",
+ "deprecated": false,
+ "trackAdoption": false,
+ "children": [
+ {
+ "parentPluginId": "@kbn/content-management-utils",
+ "id": "def-common.createArgsToSoCreateOptionsDefault.$1",
+ "type": "Object",
+ "tags": [],
+ "label": "params",
+ "description": [],
+ "signature": [
+ {
+ "pluginId": "@kbn/core-saved-objects-api-server",
+ "scope": "common",
+ "docId": "kibKbnCoreSavedObjectsApiServerPluginApi",
+ "section": "def-common.SavedObjectsCreateOptions",
+ "text": "SavedObjectsCreateOptions"
+ }
+ ],
+ "path": "packages/kbn-content-management-utils/src/saved_object_content_storage.ts",
+ "deprecated": false,
+ "trackAdoption": false,
+ "isRequired": true
+ }
+ ],
+ "returnComment": [],
+ "initialIsOpen": false
+ },
+ {
+ "parentPluginId": "@kbn/content-management-utils",
+ "id": "def-common.createResultSchema",
+ "type": "Function",
+ "tags": [],
+ "label": "createResultSchema",
+ "description": [],
+ "signature": [
+ "(soSchema: ",
{
"pluginId": "@kbn/config-schema",
"scope": "common",
@@ -203,38 +602,198 @@
"section": "def-common.ObjectType",
"text": "ObjectType"
},
- "<{ id: ",
+ "<{ item: ",
{
"pluginId": "@kbn/config-schema",
"scope": "common",
"docId": "kibKbnConfigSchemaPluginApi",
- "section": "def-common.Type",
- "text": "Type"
+ "section": "def-common.ObjectType",
+ "text": "ObjectType"
},
- "; type: ",
+ "; }>"
+ ],
+ "path": "packages/kbn-content-management-utils/src/schema.ts",
+ "deprecated": false,
+ "trackAdoption": false,
+ "children": [
+ {
+ "parentPluginId": "@kbn/content-management-utils",
+ "id": "def-common.createResultSchema.$1",
+ "type": "Object",
+ "tags": [],
+ "label": "soSchema",
+ "description": [],
+ "signature": [
+ {
+ "pluginId": "@kbn/config-schema",
+ "scope": "common",
+ "docId": "kibKbnConfigSchemaPluginApi",
+ "section": "def-common.ObjectType",
+ "text": "ObjectType"
+ },
+ ""
+ ],
+ "path": "packages/kbn-content-management-utils/src/schema.ts",
+ "deprecated": false,
+ "trackAdoption": false,
+ "isRequired": true
+ }
+ ],
+ "returnComment": [],
+ "initialIsOpen": false
+ },
+ {
+ "parentPluginId": "@kbn/content-management-utils",
+ "id": "def-common.objectTypeToGetResultSchema",
+ "type": "Function",
+ "tags": [],
+ "label": "objectTypeToGetResultSchema",
+ "description": [],
+ "signature": [
+ "(soSchema: ",
{
"pluginId": "@kbn/config-schema",
"scope": "common",
"docId": "kibKbnConfigSchemaPluginApi",
- "section": "def-common.Type",
- "text": "Type"
+ "section": "def-common.ObjectType",
+ "text": "ObjectType"
},
- "; version: ",
+ ") => ",
{
"pluginId": "@kbn/config-schema",
"scope": "common",
"docId": "kibKbnConfigSchemaPluginApi",
- "section": "def-common.Type",
- "text": "Type"
+ "section": "def-common.ObjectType",
+ "text": "ObjectType"
},
- "; createdAt: ",
+ "<{ item: ",
{
"pluginId": "@kbn/config-schema",
"scope": "common",
"docId": "kibKbnConfigSchemaPluginApi",
- "section": "def-common.Type",
- "text": "Type"
- },
+ "section": "def-common.ObjectType",
+ "text": "ObjectType"
+ },
+ "; meta: ",
+ {
+ "pluginId": "@kbn/config-schema",
+ "scope": "common",
+ "docId": "kibKbnConfigSchemaPluginApi",
+ "section": "def-common.ObjectType",
+ "text": "ObjectType"
+ },
+ "<{ outcome: ",
+ {
+ "pluginId": "@kbn/config-schema",
+ "scope": "common",
+ "docId": "kibKbnConfigSchemaPluginApi",
+ "section": "def-common.Type",
+ "text": "Type"
+ },
+ "<\"conflict\" | \"exactMatch\" | \"aliasMatch\">; aliasTargetId: ",
+ {
+ "pluginId": "@kbn/config-schema",
+ "scope": "common",
+ "docId": "kibKbnConfigSchemaPluginApi",
+ "section": "def-common.Type",
+ "text": "Type"
+ },
+ "; aliasPurpose: ",
+ {
+ "pluginId": "@kbn/config-schema",
+ "scope": "common",
+ "docId": "kibKbnConfigSchemaPluginApi",
+ "section": "def-common.Type",
+ "text": "Type"
+ },
+ "<\"savedObjectConversion\" | \"savedObjectImport\" | undefined>; }>; }>"
+ ],
+ "path": "packages/kbn-content-management-utils/src/schema.ts",
+ "deprecated": false,
+ "trackAdoption": false,
+ "children": [
+ {
+ "parentPluginId": "@kbn/content-management-utils",
+ "id": "def-common.objectTypeToGetResultSchema.$1",
+ "type": "Object",
+ "tags": [],
+ "label": "soSchema",
+ "description": [],
+ "signature": [
+ {
+ "pluginId": "@kbn/config-schema",
+ "scope": "common",
+ "docId": "kibKbnConfigSchemaPluginApi",
+ "section": "def-common.ObjectType",
+ "text": "ObjectType"
+ },
+ ""
+ ],
+ "path": "packages/kbn-content-management-utils/src/schema.ts",
+ "deprecated": false,
+ "trackAdoption": false,
+ "isRequired": true
+ }
+ ],
+ "returnComment": [],
+ "initialIsOpen": false
+ },
+ {
+ "parentPluginId": "@kbn/content-management-utils",
+ "id": "def-common.savedObjectSchema",
+ "type": "Function",
+ "tags": [],
+ "label": "savedObjectSchema",
+ "description": [],
+ "signature": [
+ "(attributesSchema: ",
+ {
+ "pluginId": "@kbn/config-schema",
+ "scope": "common",
+ "docId": "kibKbnConfigSchemaPluginApi",
+ "section": "def-common.ObjectType",
+ "text": "ObjectType"
+ },
+ ") => ",
+ {
+ "pluginId": "@kbn/config-schema",
+ "scope": "common",
+ "docId": "kibKbnConfigSchemaPluginApi",
+ "section": "def-common.ObjectType",
+ "text": "ObjectType"
+ },
+ "<{ id: ",
+ {
+ "pluginId": "@kbn/config-schema",
+ "scope": "common",
+ "docId": "kibKbnConfigSchemaPluginApi",
+ "section": "def-common.Type",
+ "text": "Type"
+ },
+ "; type: ",
+ {
+ "pluginId": "@kbn/config-schema",
+ "scope": "common",
+ "docId": "kibKbnConfigSchemaPluginApi",
+ "section": "def-common.Type",
+ "text": "Type"
+ },
+ "; version: ",
+ {
+ "pluginId": "@kbn/config-schema",
+ "scope": "common",
+ "docId": "kibKbnConfigSchemaPluginApi",
+ "section": "def-common.Type",
+ "text": "Type"
+ },
+ "; createdAt: ",
+ {
+ "pluginId": "@kbn/config-schema",
+ "scope": "common",
+ "docId": "kibKbnConfigSchemaPluginApi",
+ "section": "def-common.Type",
+ "text": "Type"
+ },
"; updatedAt: ",
{
"pluginId": "@kbn/config-schema",
@@ -267,56 +826,632 @@
"section": "def-common.Type",
"text": "Type"
},
- "[]>; namespaces: ",
+ "[]>; namespaces: ",
+ {
+ "pluginId": "@kbn/config-schema",
+ "scope": "common",
+ "docId": "kibKbnConfigSchemaPluginApi",
+ "section": "def-common.Type",
+ "text": "Type"
+ },
+ "; originId: ",
+ {
+ "pluginId": "@kbn/config-schema",
+ "scope": "common",
+ "docId": "kibKbnConfigSchemaPluginApi",
+ "section": "def-common.Type",
+ "text": "Type"
+ },
+ "; }>"
+ ],
+ "path": "packages/kbn-content-management-utils/src/schema.ts",
+ "deprecated": false,
+ "trackAdoption": false,
+ "children": [
+ {
+ "parentPluginId": "@kbn/content-management-utils",
+ "id": "def-common.savedObjectSchema.$1",
+ "type": "Object",
+ "tags": [],
+ "label": "attributesSchema",
+ "description": [],
+ "signature": [
+ {
+ "pluginId": "@kbn/config-schema",
+ "scope": "common",
+ "docId": "kibKbnConfigSchemaPluginApi",
+ "section": "def-common.ObjectType",
+ "text": "ObjectType"
+ },
+ ""
+ ],
+ "path": "packages/kbn-content-management-utils/src/schema.ts",
+ "deprecated": false,
+ "trackAdoption": false,
+ "isRequired": true
+ }
+ ],
+ "returnComment": [],
+ "initialIsOpen": false
+ },
+ {
+ "parentPluginId": "@kbn/content-management-utils",
+ "id": "def-common.searchArgsToSOFindOptionsDefault",
+ "type": "Function",
+ "tags": [],
+ "label": "searchArgsToSOFindOptionsDefault",
+ "description": [],
+ "signature": [
+ "(params: ",
+ {
+ "pluginId": "contentManagement",
+ "scope": "common",
+ "docId": "kibContentManagementPluginApi",
+ "section": "def-common.SearchIn",
+ "text": "SearchIn"
+ },
+ ") => ",
+ {
+ "pluginId": "@kbn/core-saved-objects-api-server",
+ "scope": "common",
+ "docId": "kibKbnCoreSavedObjectsApiServerPluginApi",
+ "section": "def-common.SavedObjectsFindOptions",
+ "text": "SavedObjectsFindOptions"
+ }
+ ],
+ "path": "packages/kbn-content-management-utils/src/saved_object_content_storage.ts",
+ "deprecated": false,
+ "trackAdoption": false,
+ "children": [
+ {
+ "parentPluginId": "@kbn/content-management-utils",
+ "id": "def-common.searchArgsToSOFindOptionsDefault.$1",
+ "type": "Object",
+ "tags": [],
+ "label": "params",
+ "description": [],
+ "signature": [
+ {
+ "pluginId": "contentManagement",
+ "scope": "common",
+ "docId": "kibContentManagementPluginApi",
+ "section": "def-common.SearchIn",
+ "text": "SearchIn"
+ },
+ ""
+ ],
+ "path": "packages/kbn-content-management-utils/src/saved_object_content_storage.ts",
+ "deprecated": false,
+ "trackAdoption": false,
+ "isRequired": true
+ }
+ ],
+ "returnComment": [],
+ "initialIsOpen": false
+ },
+ {
+ "parentPluginId": "@kbn/content-management-utils",
+ "id": "def-common.tagsToFindOptions",
+ "type": "Function",
+ "tags": [],
+ "label": "tagsToFindOptions",
+ "description": [],
+ "signature": [
+ "({ included, excluded, }?: { included?: string[] | undefined; excluded?: string[] | undefined; }) => { hasReference: ",
+ {
+ "pluginId": "@kbn/core-saved-objects-api-server",
+ "scope": "common",
+ "docId": "kibKbnCoreSavedObjectsApiServerPluginApi",
+ "section": "def-common.SavedObjectsFindOptionsReference",
+ "text": "SavedObjectsFindOptionsReference"
+ },
+ "[] | undefined; hasNoReference: ",
+ {
+ "pluginId": "@kbn/core-saved-objects-api-server",
+ "scope": "common",
+ "docId": "kibKbnCoreSavedObjectsApiServerPluginApi",
+ "section": "def-common.SavedObjectsFindOptionsReference",
+ "text": "SavedObjectsFindOptionsReference"
+ },
+ "[] | undefined; }"
+ ],
+ "path": "packages/kbn-content-management-utils/src/utils.ts",
+ "deprecated": false,
+ "trackAdoption": false,
+ "children": [
+ {
+ "parentPluginId": "@kbn/content-management-utils",
+ "id": "def-common.tagsToFindOptions.$1",
+ "type": "Object",
+ "tags": [],
+ "label": "{\n included,\n excluded,\n}",
+ "description": [],
+ "path": "packages/kbn-content-management-utils/src/utils.ts",
+ "deprecated": false,
+ "trackAdoption": false,
+ "children": [
+ {
+ "parentPluginId": "@kbn/content-management-utils",
+ "id": "def-common.tagsToFindOptions.$1.included",
+ "type": "Array",
+ "tags": [],
+ "label": "included",
+ "description": [],
+ "signature": [
+ "string[] | undefined"
+ ],
+ "path": "packages/kbn-content-management-utils/src/utils.ts",
+ "deprecated": false,
+ "trackAdoption": false
+ },
+ {
+ "parentPluginId": "@kbn/content-management-utils",
+ "id": "def-common.tagsToFindOptions.$1.excluded",
+ "type": "Array",
+ "tags": [],
+ "label": "excluded",
+ "description": [],
+ "signature": [
+ "string[] | undefined"
+ ],
+ "path": "packages/kbn-content-management-utils/src/utils.ts",
+ "deprecated": false,
+ "trackAdoption": false
+ }
+ ]
+ }
+ ],
+ "returnComment": [],
+ "initialIsOpen": false
+ },
+ {
+ "parentPluginId": "@kbn/content-management-utils",
+ "id": "def-common.updateArgsToSoUpdateOptionsDefault",
+ "type": "Function",
+ "tags": [],
+ "label": "updateArgsToSoUpdateOptionsDefault",
+ "description": [],
+ "signature": [
+ "(params: ",
+ {
+ "pluginId": "@kbn/core-saved-objects-api-server",
+ "scope": "common",
+ "docId": "kibKbnCoreSavedObjectsApiServerPluginApi",
+ "section": "def-common.SavedObjectsUpdateOptions",
+ "text": "SavedObjectsUpdateOptions"
+ },
+ ") => ",
+ {
+ "pluginId": "@kbn/core-saved-objects-api-server",
+ "scope": "common",
+ "docId": "kibKbnCoreSavedObjectsApiServerPluginApi",
+ "section": "def-common.SavedObjectsUpdateOptions",
+ "text": "SavedObjectsUpdateOptions"
+ },
+ ""
+ ],
+ "path": "packages/kbn-content-management-utils/src/saved_object_content_storage.ts",
+ "deprecated": false,
+ "trackAdoption": false,
+ "children": [
+ {
+ "parentPluginId": "@kbn/content-management-utils",
+ "id": "def-common.updateArgsToSoUpdateOptionsDefault.$1",
+ "type": "Object",
+ "tags": [],
+ "label": "params",
+ "description": [],
+ "signature": [
+ {
+ "pluginId": "@kbn/core-saved-objects-api-server",
+ "scope": "common",
+ "docId": "kibKbnCoreSavedObjectsApiServerPluginApi",
+ "section": "def-common.SavedObjectsUpdateOptions",
+ "text": "SavedObjectsUpdateOptions"
+ },
+ ""
+ ],
+ "path": "packages/kbn-content-management-utils/src/saved_object_content_storage.ts",
+ "deprecated": false,
+ "trackAdoption": false,
+ "isRequired": true
+ }
+ ],
+ "returnComment": [],
+ "initialIsOpen": false
+ }
+ ],
+ "interfaces": [
+ {
+ "parentPluginId": "@kbn/content-management-utils",
+ "id": "def-common.CMCrudTypes",
+ "type": "Interface",
+ "tags": [],
+ "label": "CMCrudTypes",
+ "description": [],
+ "path": "packages/kbn-content-management-utils/src/types.ts",
+ "deprecated": false,
+ "trackAdoption": false,
+ "children": [
+ {
+ "parentPluginId": "@kbn/content-management-utils",
+ "id": "def-common.CMCrudTypes.Attributes",
+ "type": "Uncategorized",
+ "tags": [],
+ "label": "Attributes",
+ "description": [
+ "\nSaved object attributes"
+ ],
+ "signature": [
+ "object"
+ ],
+ "path": "packages/kbn-content-management-utils/src/types.ts",
+ "deprecated": false,
+ "trackAdoption": false
+ },
+ {
+ "parentPluginId": "@kbn/content-management-utils",
+ "id": "def-common.CMCrudTypes.Item",
+ "type": "Object",
+ "tags": [],
+ "label": "Item",
+ "description": [
+ "\nComplete saved object"
+ ],
+ "signature": [
+ {
+ "pluginId": "@kbn/content-management-utils",
+ "scope": "common",
+ "docId": "kibKbnContentManagementUtilsPluginApi",
+ "section": "def-common.SOWithMetadata",
+ "text": "SOWithMetadata"
+ },
+ "