diff --git a/.bazelignore b/.bazelignore index 0e96d56e79aa8..fc8736ac96319 100644 --- a/.bazelignore +++ b/.bazelignore @@ -3,7 +3,6 @@ # https://github.com/bazelbuild/bazel/issues/7093 # https://github.com/bazelbuild/bazel/issues/8106 .buildkite -.ci .chromium .git .github diff --git a/.buildkite/ftr_configs.yml b/.buildkite/ftr_configs.yml index eabff5152596c..9afa197c8bb08 100644 --- a/.buildkite/ftr_configs.yml +++ b/.buildkite/ftr_configs.yml @@ -53,16 +53,16 @@ disabled: - x-pack/test_serverless/functional/test_suites/observability/cypress/config_headless.ts - x-pack/test_serverless/functional/test_suites/observability/cypress/config_runner.ts - x-pack/test/security_solution_cypress/serverless_config.ts - - x-pack/plugins/profiling/e2e/ftr_config_open.ts - - x-pack/plugins/profiling/e2e/ftr_config_runner.ts - - x-pack/plugins/profiling/e2e/ftr_config.ts + - x-pack/plugins/observability_solution/profiling/e2e/ftr_config_open.ts + - x-pack/plugins/observability_solution/profiling/e2e/ftr_config_runner.ts + - x-pack/plugins/observability_solution/profiling/e2e/ftr_config.ts # Elastic Synthetics configs - x-pack/plugins/synthetics/e2e/config.ts - x-pack/plugins/uptime/e2e/uptime/synthetics_run.ts - x-pack/plugins/synthetics/e2e/synthetics/synthetics_run.ts - - x-pack/plugins/ux/e2e/synthetics_run.ts - - x-pack/plugins/exploratory_view/e2e/synthetics_run.ts + - x-pack/plugins/observability_solution/exploratory_view/e2e/synthetics_run.ts + - x-pack/plugins/observability_solution/ux/e2e/synthetics_run.ts # Configs that exist but weren't running in CI when this file was introduced - x-pack/test/alerting_api_integration/security_and_spaces/group2/tests/actions/config.ts diff --git a/.buildkite/pipelines/pull_request/exploratory_view_plugin.yml b/.buildkite/pipelines/pull_request/exploratory_view_plugin.yml index 8053cdfe2eebd..719884a003c89 100644 --- a/.buildkite/pipelines/pull_request/exploratory_view_plugin.yml +++ b/.buildkite/pipelines/pull_request/exploratory_view_plugin.yml @@ -8,7 +8,7 @@ steps: - quick_checks timeout_in_minutes: 60 artifact_paths: - - 'x-pack/plugins/exploratory_view/e2e/.journeys/**/*' + - 'x-pack/plugins/observability_solution/exploratory_view/e2e/.journeys/**/*' retry: automatic: - exit_status: '-1' diff --git a/.buildkite/pipelines/pull_request/security_solution/defend_workflows.yml b/.buildkite/pipelines/pull_request/security_solution/defend_workflows.yml index c0c68d8fc2192..80ea65eff8ea6 100644 --- a/.buildkite/pipelines/pull_request/security_solution/defend_workflows.yml +++ b/.buildkite/pipelines/pull_request/security_solution/defend_workflows.yml @@ -21,7 +21,7 @@ steps: - build - quick_checks timeout_in_minutes: 60 - parallelism: 6 + parallelism: 10 retry: automatic: - exit_status: '*' diff --git a/.buildkite/pipelines/pull_request/ux_plugin_e2e.yml b/.buildkite/pipelines/pull_request/ux_plugin_e2e.yml index 476e8c204d15c..2cb69eb1eadd9 100644 --- a/.buildkite/pipelines/pull_request/ux_plugin_e2e.yml +++ b/.buildkite/pipelines/pull_request/ux_plugin_e2e.yml @@ -8,7 +8,7 @@ steps: - quick_checks timeout_in_minutes: 60 artifact_paths: - - 'x-pack/plugins/ux/e2e/.journeys/**/*' + - 'x-pack/plugins/observability_solution/ux/e2e/.journeys/**/*' retry: automatic: - exit_status: '-1' diff --git a/.buildkite/scripts/lifecycle/pre_command.sh b/.buildkite/scripts/lifecycle/pre_command.sh index 966ba22c1272c..6079df9a9addf 100755 --- a/.buildkite/scripts/lifecycle/pre_command.sh +++ b/.buildkite/scripts/lifecycle/pre_command.sh @@ -142,14 +142,17 @@ export SYNTHETICS_REMOTE_KIBANA_URL DEPLOY_TAGGER_SLACK_WEBHOOK_URL=${DEPLOY_TAGGER_SLACK_WEBHOOK_URL:-"$(vault_get kibana-serverless-release-tools DEPLOY_TAGGER_SLACK_WEBHOOK_URL)"} export DEPLOY_TAGGER_SLACK_WEBHOOK_URL -GCS_SA_CDN_QA_KEY="$(vault_get gcs-sa-cdn-qa key)" -export GCS_SA_CDN_QA_KEY +GCS_SA_CDN_KEY="$(vault_get gcs-sa-cdn-prod key)" +export GCS_SA_CDN_KEY -GCS_SA_CDN_QA_EMAIL="$(vault_get gcs-sa-cdn-qa email)" -export GCS_SA_CDN_QA_EMAIL +GCS_SA_CDN_EMAIL="$(vault_get gcs-sa-cdn-prod email)" +export GCS_SA_CDN_EMAIL -GCS_SA_CDN_QA_BUCKET="$(vault_get gcs-sa-cdn-qa bucket)" -export GCS_SA_CDN_QA_BUCKET +GCS_SA_CDN_BUCKET="$(vault_get gcs-sa-cdn-prod bucket)" +export GCS_SA_CDN_BUCKET + +GCS_SA_CDN_URL="$(vault_get gcs-sa-cdn-prod cdn)" +export GCS_SA_CDN_URL # Setup Failed Test Reporter Elasticsearch credentials { diff --git a/.buildkite/scripts/steps/artifacts/docker_image.sh b/.buildkite/scripts/steps/artifacts/docker_image.sh index 6e07cec0947ba..0706a21dd4274 100755 --- a/.buildkite/scripts/steps/artifacts/docker_image.sh +++ b/.buildkite/scripts/steps/artifacts/docker_image.sh @@ -90,13 +90,28 @@ node scripts/licenses_csv_report "--csv=target/dependencies-$GIT_ABBREV_COMMIT.c echo "--- Upload CDN assets" cd target -gcloud auth activate-service-account --key-file <(echo "$GCS_SA_CDN_QA_KEY") +gcloud auth activate-service-account --key-file <(echo "$GCS_SA_CDN_KEY") CDN_ASSETS_FOLDER=$(mktemp -d) tar -xf "kibana-$BASE_VERSION-cdn-assets.tar.gz" -C "$CDN_ASSETS_FOLDER" --strip=1 -gsutil -m cp -r "$CDN_ASSETS_FOLDER/*" "gs://$GCS_SA_CDN_QA_BUCKET/$GIT_ABBREV_COMMIT" -gcloud auth revoke "$GCS_SA_CDN_QA_EMAIL" +gsutil -m cp -r "$CDN_ASSETS_FOLDER/*" "gs://$GCS_SA_CDN_BUCKET/$GIT_ABBREV_COMMIT" +gcloud auth revoke "$GCS_SA_CDN_EMAIL" + +echo "--- Validate CDN assets" +( + shopt -s globstar + THREADS=$(grep -c ^processor /proc/cpuinfo) + i=0 + cd $CDN_ASSETS_FOLDER + for CDN_ASSET in **/*; do + ((i=(i+1)%THREADS)) || wait + if [[ -f "$CDN_ASSET" ]]; then + echo -n "Testing $CDN_ASSET..." + curl -I --write-out '%{http_code}\n' --fail --silent --output /dev/null "$GCS_SA_CDN_URL/$CDN_ASSET" + fi + done +) echo "--- Upload archives" buildkite-agent artifact upload "kibana-$BASE_VERSION-linux-x86_64.tar.gz" @@ -105,7 +120,6 @@ buildkite-agent artifact upload "kibana-$BASE_VERSION-docker-image.tar.gz" buildkite-agent artifact upload "kibana-$BASE_VERSION-docker-image-aarch64.tar.gz" buildkite-agent artifact upload "kibana-$BASE_VERSION-cdn-assets.tar.gz" buildkite-agent artifact upload "dependencies-$GIT_ABBREV_COMMIT.csv" -cd - # This part is related with updating the configuration of kibana-controller, # so that new stack instances contain the latest and greatest image of kibana, diff --git a/.buildkite/scripts/steps/functional/exploratory_view_plugin.sh b/.buildkite/scripts/steps/functional/exploratory_view_plugin.sh index c3459020461dc..d14033883312f 100755 --- a/.buildkite/scripts/steps/functional/exploratory_view_plugin.sh +++ b/.buildkite/scripts/steps/functional/exploratory_view_plugin.sh @@ -13,4 +13,4 @@ echo "--- Exploratory View plugin @elastic/synthetics Tests" cd "$XPACK_DIR" -node plugins/exploratory_view/scripts/e2e.js --kibana-install-dir "$KIBANA_BUILD_LOCATION" ${GREP:+--grep \"${GREP}\"} +node plugins/observability_solution/exploratory_view/scripts/e2e.js --kibana-install-dir "$KIBANA_BUILD_LOCATION" ${GREP:+--grep \"${GREP}\"} diff --git a/.buildkite/scripts/steps/functional/profiling_cypress.sh b/.buildkite/scripts/steps/functional/profiling_cypress.sh index 1f6fb316b77ad..daad169069ae3 100644 --- a/.buildkite/scripts/steps/functional/profiling_cypress.sh +++ b/.buildkite/scripts/steps/functional/profiling_cypress.sh @@ -13,5 +13,5 @@ echo "--- Profiling Cypress Tests" cd "$XPACK_DIR" -NODE_OPTIONS=--openssl-legacy-provider node plugins/profiling/scripts/test/e2e.js \ +NODE_OPTIONS=--openssl-legacy-provider node plugins/observability_solution/profiling/scripts/test/e2e.js \ --kibana-install-dir "$KIBANA_BUILD_LOCATION" \ \ No newline at end of file diff --git a/.buildkite/scripts/steps/functional/ux_synthetics_e2e.sh b/.buildkite/scripts/steps/functional/ux_synthetics_e2e.sh index f7d6a6276fb56..dbb3289f604e5 100755 --- a/.buildkite/scripts/steps/functional/ux_synthetics_e2e.sh +++ b/.buildkite/scripts/steps/functional/ux_synthetics_e2e.sh @@ -13,4 +13,4 @@ echo "--- User Experience @elastic/synthetics Tests" cd "$XPACK_DIR" -node plugins/ux/scripts/e2e.js --kibana-install-dir "$KIBANA_BUILD_LOCATION" ${GREP:+--grep \"${GREP}\"} +node plugins/observability_solution/ux/scripts/e2e.js --kibana-install-dir "$KIBANA_BUILD_LOCATION" ${GREP:+--grep \"${GREP}\"} diff --git a/.eslintignore b/.eslintignore index 211ee52634a04..296d712a4cdfe 100644 --- a/.eslintignore +++ b/.eslintignore @@ -15,7 +15,6 @@ node_modules target snapshots.js -!/.ci !/.eslintrc.js !.storybook !.buildkite diff --git a/.eslintrc.js b/.eslintrc.js index f3a4fcf6ecc0d..5fb122e5ea4cc 100644 --- a/.eslintrc.js +++ b/.eslintrc.js @@ -873,8 +873,8 @@ module.exports = { files: [ 'x-pack/plugins/apm/**/*.{js,mjs,ts,tsx}', 'x-pack/plugins/observability/**/*.{js,mjs,ts,tsx}', - 'x-pack/plugins/exploratory_view/**/*.{js,mjs,ts,tsx}', - 'x-pack/plugins/ux/**/*.{js,mjs,ts,tsx}', + 'x-pack/plugins/observability_solution/exploratory_view/**/*.{js,mjs,ts,tsx}', + 'x-pack/plugins/observability_solution/ux/**/*.{js,mjs,ts,tsx}', ], rules: { 'no-console': ['warn', { allow: ['error'] }], @@ -896,7 +896,7 @@ module.exports = { files: [ 'x-pack/plugins/apm/**/*.stories.*', 'x-pack/plugins/observability/**/*.stories.*', - 'x-pack/plugins/exploratory_view/**/*.stories.*', + 'x-pack/plugins/observability_solution/exploratory_view/**/*.stories.*', ], rules: { 'react/function-component-definition': [ @@ -912,15 +912,15 @@ module.exports = { files: [ 'x-pack/plugins/aiops/**/*.tsx', 'x-pack/plugins/apm/**/*.tsx', - 'x-pack/plugins/exploratory_view/**/*.tsx', + 'x-pack/plugins/observability_solution/exploratory_view/**/*.tsx', 'x-pack/plugins/infra/**/*.tsx', 'x-pack/plugins/observability/**/*.tsx', - 'x-pack/plugins/observability_ai_assistant/**/*.tsx', + 'x-pack/plugins/observability_shared/observability_ai_assistant/**/*.tsx', 'x-pack/plugins/observability_onboarding/**/*.tsx', - 'x-pack/plugins/observability_shared/**/*.tsx', - 'x-pack/plugins/profiling/**/*.tsx', + 'x-pack/plugins/observability_solution/observability_shared/**/*.tsx', + 'x-pack/plugins/observability_solution/profiling/**/*.tsx', 'x-pack/plugins/synthetics/**/*.tsx', - 'x-pack/plugins/ux/**/*.tsx', + 'x-pack/plugins/observability_solution/ux/**/*.tsx', 'src/plugins/ai_assistant_management/**/*.tsx', ], rules: { @@ -930,15 +930,15 @@ module.exports = { { files: [ 'x-pack/plugins/apm/**/!(*.stories.tsx|*.test.tsx|*.storybook_decorator.tsx|*.mock.tsx)', - 'x-pack/plugins/exploratory_view/**/!(*.stories.tsx|*.test.tsx|*.storybook_decorator.tsx|*.mock.tsx)', + 'x-pack/plugins/observability_solution/exploratory_view/**/!(*.stories.tsx|*.test.tsx|*.storybook_decorator.tsx|*.mock.tsx)', 'x-pack/plugins/infra/**/!(*.stories.tsx|*.test.tsx|*.storybook_decorator.tsx|*.mock.tsx)', 'x-pack/plugins/observability/**/!(*.stories.tsx|*.test.tsx|*.storybook_decorator.tsx|*.mock.tsx)', - 'x-pack/plugins/observability_ai_assistant/**/!(*.stories.tsx|*.test.tsx|*.storybook_decorator.tsx|*.mock.tsx)', + 'x-pack/plugins/observability_solution/observability_ai_assistant/**/!(*.stories.tsx|*.test.tsx|*.storybook_decorator.tsx|*.mock.tsx)', 'x-pack/plugins/observability_onboarding/**/!(*.stories.tsx|*.test.tsx|*.storybook_decorator.tsx|*.mock.tsx)', - 'x-pack/plugins/observability_shared/**/!(*.stories.tsx|*.test.tsx|*.storybook_decorator.tsx|*.mock.tsx)', - 'x-pack/plugins/profiling/**/!(*.stories.tsx|*.test.tsx|*.storybook_decorator.tsx|*.mock.tsx)', + 'x-pack/plugins/observability_solution/observability_shared/**/!(*.stories.tsx|*.test.tsx|*.storybook_decorator.tsx|*.mock.tsx)', + 'x-pack/plugins/observability_solution/profiling/**/!(*.stories.tsx|*.test.tsx|*.storybook_decorator.tsx|*.mock.tsx)', 'x-pack/plugins/synthetics/**/!(*.stories.tsx|*.test.tsx|*.storybook_decorator.tsx|*.mock.tsx)', - 'x-pack/plugins/ux/**/!(*.stories.tsx|*.test.tsx|*.storybook_decorator.tsx|*.mock.tsx)', + 'x-pack/plugins/observability_solution/ux/**/!(*.stories.tsx|*.test.tsx|*.storybook_decorator.tsx|*.mock.tsx)', 'src/plugins/ai_assistant_management/**/!(*.stories.tsx|*.test.tsx|*.storybook_decorator.tsx|*.mock.tsx)', ], rules: { @@ -960,7 +960,7 @@ module.exports = { }, // Profiling { - files: ['x-pack/plugins/profiling/**/*.{js,mjs,ts,tsx}'], + files: ['x-pack/plugins/observability_solution/profiling/**/*.{js,mjs,ts,tsx}'], rules: { 'react-hooks/rules-of-hooks': 'error', // Checks rules of Hooks 'react-hooks/exhaustive-deps': [ diff --git a/.github/CODEOWNERS b/.github/CODEOWNERS index fab1893db2389..890001df314c6 100644 --- a/.github/CODEOWNERS +++ b/.github/CODEOWNERS @@ -327,7 +327,7 @@ src/plugins/data_view_management @elastic/kibana-data-discovery packages/kbn-data-view-utils @elastic/kibana-data-discovery src/plugins/data_views @elastic/kibana-data-discovery x-pack/plugins/data_visualizer @elastic/ml-ui -x-pack/plugins/dataset_quality @elastic/obs-ux-logs-team +x-pack/plugins/observability_solution/dataset_quality @elastic/obs-ux-logs-team packages/kbn-datemath @elastic/kibana-data-discovery packages/deeplinks/analytics @elastic/kibana-data-discovery @elastic/kibana-presentation @elastic/kibana-visualizations packages/deeplinks/devtools @elastic/platform-deployment-management @@ -393,7 +393,7 @@ x-pack/plugins/event_log @elastic/response-ops packages/kbn-expandable-flyout @elastic/security-threat-hunting-investigations packages/kbn-expect @elastic/kibana-operations @elastic/appex-qa x-pack/examples/exploratory_view_example @elastic/obs-ux-infra_services-team -x-pack/plugins/exploratory_view @elastic/obs-ux-infra_services-team +x-pack/plugins/observability_solution/exploratory_view @elastic/obs-ux-infra_services-team src/plugins/expression_error @elastic/kibana-presentation src/plugins/chart_expressions/expression_gauge @elastic/kibana-visualizations src/plugins/chart_expressions/expression_heatmap @elastic/kibana-visualizations @@ -569,7 +569,7 @@ test/common/plugins/newsfeed @elastic/kibana-core src/plugins/no_data_page @elastic/appex-sharedux x-pack/plugins/notifications @elastic/appex-sharedux packages/kbn-object-versioning @elastic/appex-sharedux -x-pack/plugins/observability_ai_assistant @elastic/obs-knowledge-team +x-pack/plugins/observability_solution/observability_ai_assistant @elastic/obs-knowledge-team x-pack/packages/observability/alert_details @elastic/obs-ux-management-team x-pack/packages/observability/alerting_test_data @elastic/obs-ux-management-team x-pack/test/cases_api_integration/common/plugins/observability @elastic/response-ops @@ -577,7 +577,7 @@ x-pack/packages/observability/get_padded_alert_time_range_util @elastic/obs-ux-m x-pack/plugins/observability_solution/observability_logs_explorer @elastic/obs-ux-logs-team x-pack/plugins/observability_onboarding @elastic/obs-ux-logs-team x-pack/plugins/observability @elastic/obs-ux-management-team -x-pack/plugins/observability_shared @elastic/observability-ui +x-pack/plugins/observability_solution/observability_shared @elastic/observability-ui x-pack/test/security_api_integration/plugins/oidc_provider @elastic/kibana-security test/common/plugins/otel_metrics @elastic/obs-ux-infra_services-team packages/kbn-openapi-bundler @elastic/security-detection-rule-management @@ -603,8 +603,8 @@ packages/presentation/presentation_library @elastic/kibana-presentation src/plugins/presentation_panel @elastic/kibana-presentation packages/presentation/presentation_publishing @elastic/kibana-presentation src/plugins/presentation_util @elastic/kibana-presentation -x-pack/plugins/profiling_data_access @elastic/obs-ux-infra_services-team -x-pack/plugins/profiling @elastic/obs-ux-infra_services-team +x-pack/plugins/observability_solution/profiling_data_access @elastic/obs-ux-infra_services-team +x-pack/plugins/observability_solution/profiling @elastic/obs-ux-infra_services-team packages/kbn-profiling-utils @elastic/obs-ux-infra_services-team x-pack/packages/kbn-random-sampling @elastic/kibana-visualizations packages/kbn-react-field @elastic/kibana-data-discovery @@ -856,7 +856,7 @@ x-pack/test/security_api_integration/plugins/user_profiles_consumer @elastic/kib packages/kbn-utility-types @elastic/kibana-core packages/kbn-utility-types-jest @elastic/kibana-operations packages/kbn-utils @elastic/kibana-operations -x-pack/plugins/ux @elastic/obs-ux-infra_services-team +x-pack/plugins/observability_solution/ux @elastic/obs-ux-infra_services-team examples/v8_profiler_examples @elastic/response-ops packages/kbn-validate-next-docs-cli @elastic/kibana-operations src/plugins/vis_default_editor @elastic/kibana-visualizations @@ -1093,7 +1093,7 @@ x-pack/plugins/infra/server/lib/alerting @elastic/obs-ux-management-team /x-pack/test/functional/apps/observability_logs_explorer @elastic/obs-ux-logs-team # Observability onboarding tour -/x-pack/plugins/observability_shared/public/components/tour @elastic/platform-onboarding +/x-pack/plugins/observability_solution/observability_shared/public/components/tour @elastic/platform-onboarding /x-pack/test/functional/apps/infra/tour.ts @elastic/platform-onboarding # Observability settings @@ -1149,7 +1149,6 @@ x-pack/plugins/infra/server/lib/alerting @elastic/obs-ux-management-team /src/setup_node_env/ @elastic/kibana-operations /src/cli/keystore/ @elastic/kibana-operations /src/cli/serve/ @elastic/kibana-operations -/.ci/es-snapshots/ @elastic/kibana-operations /.github/workflows/ @elastic/kibana-operations /vars/ @elastic/kibana-operations /.bazelignore @elastic/kibana-operations @@ -1571,7 +1570,7 @@ x-pack/plugins/translations/translations x-pack/test/profiling_api_integration @elastic/obs-ux-infra_services-team # Observability shared profiling -x-pack/plugins/observability_shared/public/components/profiling @elastic/obs-ux-infra_services-team +x-pack/plugins/observability_solution/observability_shared/public/components/profiling @elastic/obs-ux-infra_services-team # Shared UX packages/react @elastic/appex-sharedux diff --git a/.github/paths-labeller.yml b/.github/paths-labeller.yml index 5f1ac0401ab31..944ede7c0227d 100644 --- a/.github/paths-labeller.yml +++ b/.github/paths-labeller.yml @@ -1,24 +1,24 @@ --- - - "Feature:Embedding": - - "src/plugins/embeddable/**/*.*" - - "src/plugins/dashboard_embeddable_container/**/*.*" - - "Feature:Drilldowns": - - "x-pack/plugins/drilldowns/**/*.*" - - "x-pack/plugins/dashboard_enhanced/public/services/drilldowns/**/*.*" - - "Feature:ExpressionLanguage": - - "src/plugins/expressions/**/*.*" - - "src/plugins/bfetch/**/*.*" - - "Team:obs-ux-infra_services": - - "x-pack/plugins/apm/**/*.*" - - "x-pack/test/apm_api_integration/**/*.*" - - "packages/kbn-apm-synthtrace/**/*.*" - - "packages/kbn-apm-synthtrace-client/**/*.*" - - "packages/kbn-apm-utils/**/*.*" - - "x-pack/plugins/synthetics/**/*.*" - - "x-pack/plugins/ux/**/*.*" - - "x-pack/plugins/observability/public/components/shared/exploratory_view/**/*.*" - - "Team:Fleet": - - "x-pack/plugins/fleet/**/*.*" - - "x-pack/test/fleet_api_integration/**/*.*" - - "Team:obs-ux-management": - - "x-pack/plugins/observability/**/*.*" +- 'Feature:Embedding': + - 'src/plugins/embeddable/**/*.*' + - 'src/plugins/dashboard_embeddable_container/**/*.*' +- 'Feature:Drilldowns': + - 'x-pack/plugins/drilldowns/**/*.*' + - 'x-pack/plugins/dashboard_enhanced/public/services/drilldowns/**/*.*' +- 'Feature:ExpressionLanguage': + - 'src/plugins/expressions/**/*.*' + - 'src/plugins/bfetch/**/*.*' +- 'Team:obs-ux-infra_services': + - 'x-pack/plugins/apm/**/*.*' + - 'x-pack/test/apm_api_integration/**/*.*' + - 'packages/kbn-apm-synthtrace/**/*.*' + - 'packages/kbn-apm-synthtrace-client/**/*.*' + - 'packages/kbn-apm-utils/**/*.*' + - 'x-pack/plugins/synthetics/**/*.*' + - 'x-pack/plugins/observability_solution/ux/**/*.*' + - 'x-pack/plugins/observability/public/components/shared/exploratory_view/**/*.*' +- 'Team:Fleet': + - 'x-pack/plugins/fleet/**/*.*' + - 'x-pack/test/fleet_api_integration/**/*.*' +- 'Team:obs-ux-management': + - 'x-pack/plugins/observability/**/*.*' diff --git a/.github/workflows/docs-preview-links.yml b/.github/workflows/docs-preview-links.yml index fe374deb5c2c2..7e8242c6035f9 100644 --- a/.github/workflows/docs-preview-links.yml +++ b/.github/workflows/docs-preview-links.yml @@ -16,5 +16,5 @@ jobs: with: github-token: ${{ secrets.GITHUB_TOKEN }} repo: ${{ github.event.repository.name }} - preview-path: 'guide/en/observability/master/index.html' + preview-path: 'guide/index.html' pr: ${{ github.event.pull_request.number }} diff --git a/.gitignore b/.gitignore index 2739b9a50172c..dbfb30c92ff31 100644 --- a/.gitignore +++ b/.gitignore @@ -81,9 +81,6 @@ package-lock.json npm-debug.log* .tern-project .nyc_output -.ci/pipeline-library/build/ -.ci/runbld -.ci/bash_standard_lib.sh .gradle .vagrant .envrc diff --git a/.node-version b/.node-version index d5a159609d095..2dbbe00e679a2 100644 --- a/.node-version +++ b/.node-version @@ -1 +1 @@ -20.10.0 +20.11.1 diff --git a/.nvmrc b/.nvmrc index d5a159609d095..2dbbe00e679a2 100644 --- a/.nvmrc +++ b/.nvmrc @@ -1 +1 @@ -20.10.0 +20.11.1 diff --git a/WORKSPACE.bazel b/WORKSPACE.bazel index 92192ceab8714..35c8ec6bd0154 100644 --- a/WORKSPACE.bazel +++ b/WORKSPACE.bazel @@ -22,13 +22,13 @@ load("@build_bazel_rules_nodejs//:index.bzl", "node_repositories", "yarn_install # Setup the Node.js toolchain for the architectures we want to support node_repositories( node_repositories = { - "20.10.0-darwin_amd64": ("node-v20.10.0-darwin-x64.tar.gz", "node-v20.10.0-darwin-x64", "5ff5e8abd3eea6e5f507eb6677554f5b2188eedef654096aa4168a9941e91a32"), - "20.10.0-darwin_arm64": ("node-v20.10.0-darwin-arm64.tar.gz", "node-v20.10.0-darwin-arm64", "68b93099451d77aac116cf8fce179cabcf53fec079508dc6b39d3a086fb461a8"), - "20.10.0-linux_arm64": ("node-v20.10.0-linux-arm64.tar.xz", "node-v20.10.0-linux-arm64", "a5c22683890d5d244f3afd488ef44e573b5b8287f8911b9a1b061ed3f20a5e6d"), - "20.10.0-linux_amd64": ("node-v20.10.0-linux-x64.tar.xz", "node-v20.10.0-linux-x64", "9c0fbc8cc7be9a6543af4b9afb05759c538c0f81015c388d63277b0158507697"), - "20.10.0-windows_amd64": ("node-v20.10.0-win-x64.zip", "node-v20.10.0-win-x64", "e5b861814a97e28ae7ac06a34e88fd5e0565b447d270c26e20b5ef60bf0aaaf9"), + "20.11.1-darwin_amd64": ("node-v20.11.1-darwin-x64.tar.gz", "node-v20.11.1-darwin-x64", "c52e7fb0709dbe63a4cbe08ac8af3479188692937a7bd8e776e0eedfa33bb848"), + "20.11.1-darwin_arm64": ("node-v20.11.1-darwin-arm64.tar.gz", "node-v20.11.1-darwin-arm64", "e0065c61f340e85106a99c4b54746c5cee09d59b08c5712f67f99e92aa44995d"), + "20.11.1-linux_arm64": ("node-v20.11.1-linux-arm64.tar.xz", "node-v20.11.1-linux-arm64", "36bac185164aa11940715425da1db2ec46e3354325bda9ee0b98b4a607aa0d8b"), + "20.11.1-linux_amd64": ("node-v20.11.1-linux-x64.tar.xz", "node-v20.11.1-linux-x64", "e2c39cb70b9ff79575a02747dd1e89917817cce05da21bef6b94eb9e92442024"), + "20.11.1-windows_amd64": ("node-v20.11.1-win-x64.zip", "node-v20.11.1-win-x64", "bc032628d77d206ffa7f133518a6225a9c5d6d9210ead30d67e294ff37044bda"), }, - node_version = "20.10.0", + node_version = "20.11.1", node_urls = [ "https://us-central1-elastic-kibana-184716.cloudfunctions.net/kibana-ci-proxy-cache/dist/v{version}/{filename}", ], diff --git a/api_docs/actions.mdx b/api_docs/actions.mdx index d43c6398c29b4..643e13ba9ee2f 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: 2024-02-19 +date: 2024-02-22 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 6d2178ea713ff..cfeaee1a51958 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: 2024-02-19 +date: 2024-02-22 tags: ['contributor', 'dev', 'apidocs', 'kibana', 'advancedSettings'] --- import advancedSettingsObj from './advanced_settings.devdocs.json'; diff --git a/api_docs/ai_assistant_management_observability.mdx b/api_docs/ai_assistant_management_observability.mdx index e3dbc2551beeb..e38cdc94fe88c 100644 --- a/api_docs/ai_assistant_management_observability.mdx +++ b/api_docs/ai_assistant_management_observability.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/aiAssistantManagementObservability title: "aiAssistantManagementObservability" image: https://source.unsplash.com/400x175/?github description: API docs for the aiAssistantManagementObservability plugin -date: 2024-02-19 +date: 2024-02-22 tags: ['contributor', 'dev', 'apidocs', 'kibana', 'aiAssistantManagementObservability'] --- import aiAssistantManagementObservabilityObj from './ai_assistant_management_observability.devdocs.json'; diff --git a/api_docs/ai_assistant_management_selection.mdx b/api_docs/ai_assistant_management_selection.mdx index ab216640fcff3..02a45fc28a62b 100644 --- a/api_docs/ai_assistant_management_selection.mdx +++ b/api_docs/ai_assistant_management_selection.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/aiAssistantManagementSelection title: "aiAssistantManagementSelection" image: https://source.unsplash.com/400x175/?github description: API docs for the aiAssistantManagementSelection plugin -date: 2024-02-19 +date: 2024-02-22 tags: ['contributor', 'dev', 'apidocs', 'kibana', 'aiAssistantManagementSelection'] --- import aiAssistantManagementSelectionObj from './ai_assistant_management_selection.devdocs.json'; diff --git a/api_docs/aiops.mdx b/api_docs/aiops.mdx index 2d4b28b18823c..d7051cd9c733b 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: 2024-02-19 +date: 2024-02-22 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 d36ebd8783c39..5ebb745c8995c 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: 2024-02-19 +date: 2024-02-22 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 97b6f5539cb29..edde1025df166 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: 2024-02-19 +date: 2024-02-22 tags: ['contributor', 'dev', 'apidocs', 'kibana', 'apm'] --- import apmObj from './apm.devdocs.json'; diff --git a/api_docs/apm_data_access.mdx b/api_docs/apm_data_access.mdx index 5816bf254775e..ef770460a9be9 100644 --- a/api_docs/apm_data_access.mdx +++ b/api_docs/apm_data_access.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/apmDataAccess title: "apmDataAccess" image: https://source.unsplash.com/400x175/?github description: API docs for the apmDataAccess plugin -date: 2024-02-19 +date: 2024-02-22 tags: ['contributor', 'dev', 'apidocs', 'kibana', 'apmDataAccess'] --- import apmDataAccessObj from './apm_data_access.devdocs.json'; diff --git a/api_docs/asset_manager.mdx b/api_docs/asset_manager.mdx index 3b144e7639d8e..8c600e635bc67 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: 2024-02-19 +date: 2024-02-22 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 f6abb41894fc2..3676aaceedef5 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: 2024-02-19 +date: 2024-02-22 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 ecf1c9fa52582..cd7fcabe28bfe 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: 2024-02-19 +date: 2024-02-22 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 a830f857d18a9..2673f9bc01cb8 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: 2024-02-19 +date: 2024-02-22 tags: ['contributor', 'dev', 'apidocs', 'kibana', 'canvas'] --- import canvasObj from './canvas.devdocs.json'; diff --git a/api_docs/cases.mdx b/api_docs/cases.mdx index 5887c75605c9d..11cbe35ac4168 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: 2024-02-19 +date: 2024-02-22 tags: ['contributor', 'dev', 'apidocs', 'kibana', 'cases'] --- import casesObj from './cases.devdocs.json'; diff --git a/api_docs/charts.devdocs.json b/api_docs/charts.devdocs.json index 3416ca63a2dc0..d4c7d4e5e0ce3 100644 --- a/api_docs/charts.devdocs.json +++ b/api_docs/charts.devdocs.json @@ -3397,7 +3397,7 @@ "ExternalPointerEventsSettings", " | undefined>; pointBuffer?: ", "MarkBuffer", - " | undefined; resizeDebounce?: number | undefined; pointerUpdateTrigger?: ", + " | undefined; pointerUpdateTrigger?: ", "PointerUpdateTrigger", " | undefined; brushAxis?: ", "BrushAxis", @@ -3407,7 +3407,7 @@ "CustomXDomain", " | undefined>; ariaDescription?: string | undefined; ariaDescribedBy?: string | undefined; ariaLabelledBy?: string | undefined; ariaTableCaption?: string | undefined; legendAction?: \"ignore\" | undefined; legendStrategy?: ", "LegendStrategy", - " | undefined; onLegendItemClick?: \"ignore\" | undefined; customLegend?: \"ignore\" | undefined; onLegendItemMinusClick?: \"ignore\" | undefined; onLegendItemOut?: \"ignore\" | undefined; onLegendItemOver?: \"ignore\" | undefined; onLegendItemPlusClick?: \"ignore\" | undefined; debugState?: boolean | undefined; onProjectionClick?: \"ignore\" | undefined; onElementClick?: \"ignore\" | undefined; onElementOver?: \"ignore\" | undefined; onElementOut?: \"ignore\" | undefined; onBrushEnd?: \"ignore\" | undefined; onResize?: \"ignore\" | undefined; onWillRender?: \"ignore\" | undefined; onProjectionAreaChange?: \"ignore\" | undefined; onAnnotationClick?: \"ignore\" | undefined; pointerUpdateDebounce?: number | undefined; roundHistogramBrushValues?: boolean | undefined; noResults?: React.ReactChild | React.ComponentType<{}> | undefined; legendSort?: \"ignore\" | undefined; } | undefined; }" + " | undefined; onLegendItemClick?: \"ignore\" | undefined; customLegend?: \"ignore\" | undefined; onLegendItemMinusClick?: \"ignore\" | undefined; onLegendItemOut?: \"ignore\" | undefined; onLegendItemOver?: \"ignore\" | undefined; onLegendItemPlusClick?: \"ignore\" | undefined; debugState?: boolean | undefined; onProjectionClick?: \"ignore\" | undefined; onElementClick?: \"ignore\" | undefined; onElementOver?: \"ignore\" | undefined; onElementOut?: \"ignore\" | undefined; onBrushEnd?: \"ignore\" | undefined; onResize?: \"ignore\" | undefined; onWillRender?: \"ignore\" | undefined; onProjectionAreaChange?: \"ignore\" | undefined; onAnnotationClick?: \"ignore\" | undefined; resizeDebounce?: number | undefined; pointerUpdateDebounce?: number | undefined; roundHistogramBrushValues?: boolean | undefined; noResults?: React.ReactChild | React.ComponentType<{}> | undefined; legendSort?: \"ignore\" | undefined; } | undefined; }" ], "path": "src/plugins/charts/common/static/overrides/settings.ts", "deprecated": false, diff --git a/api_docs/charts.mdx b/api_docs/charts.mdx index 58527806ac51a..398281f2464e5 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: 2024-02-19 +date: 2024-02-22 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 e8410b95b1026..cf96d5a59ac7a 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: 2024-02-19 +date: 2024-02-22 tags: ['contributor', 'dev', 'apidocs', 'kibana', 'cloud'] --- import cloudObj from './cloud.devdocs.json'; diff --git a/api_docs/cloud_data_migration.mdx b/api_docs/cloud_data_migration.mdx index 99b6697d5f088..95f7cdca7e94b 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: 2024-02-19 +date: 2024-02-22 tags: ['contributor', 'dev', 'apidocs', 'kibana', 'cloudDataMigration'] --- import cloudDataMigrationObj from './cloud_data_migration.devdocs.json'; diff --git a/api_docs/cloud_defend.mdx b/api_docs/cloud_defend.mdx index 211ad0a23a2af..77422567152c1 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: 2024-02-19 +date: 2024-02-22 tags: ['contributor', 'dev', 'apidocs', 'kibana', 'cloudDefend'] --- import cloudDefendObj from './cloud_defend.devdocs.json'; diff --git a/api_docs/cloud_experiments.mdx b/api_docs/cloud_experiments.mdx index cacb804031389..7150c79363d9c 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: 2024-02-19 +date: 2024-02-22 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 4d2bd56f56276..ab1aae1272738 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: 2024-02-19 +date: 2024-02-22 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 b6029553b5990..ec19b36459960 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: 2024-02-19 +date: 2024-02-22 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 e7b2038c14988..afd67a70d66a7 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: 2024-02-19 +date: 2024-02-22 tags: ['contributor', 'dev', 'apidocs', 'kibana', 'contentManagement'] --- import contentManagementObj from './content_management.devdocs.json'; diff --git a/api_docs/controls.mdx b/api_docs/controls.mdx index 1c42f85318dba..ac9041ff88eae 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: 2024-02-19 +date: 2024-02-22 tags: ['contributor', 'dev', 'apidocs', 'kibana', 'controls'] --- import controlsObj from './controls.devdocs.json'; diff --git a/api_docs/custom_integrations.mdx b/api_docs/custom_integrations.mdx index 275968fb17094..1cdb41c5bafa7 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: 2024-02-19 +date: 2024-02-22 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 f3686f4fab007..99f7be2805930 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: 2024-02-19 +date: 2024-02-22 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 5fee222cd7888..25ca24b6d4971 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: 2024-02-19 +date: 2024-02-22 tags: ['contributor', 'dev', 'apidocs', 'kibana', 'dashboardEnhanced'] --- import dashboardEnhancedObj from './dashboard_enhanced.devdocs.json'; diff --git a/api_docs/data.mdx b/api_docs/data.mdx index 7e88a04889d73..d9ada07837b98 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: 2024-02-19 +date: 2024-02-22 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 e87a8adbc283a..f47483ed326a4 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: 2024-02-19 +date: 2024-02-22 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 80ead719f5cc6..41c501319c590 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: 2024-02-19 +date: 2024-02-22 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 1a976e0eb848d..54dfc01558788 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: 2024-02-19 +date: 2024-02-22 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 41518c50198e6..90746517e735a 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: 2024-02-19 +date: 2024-02-22 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 d23b6608b2bf5..8cf628275db7c 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: 2024-02-19 +date: 2024-02-22 tags: ['contributor', 'dev', 'apidocs', 'kibana', 'dataViewManagement'] --- import dataViewManagementObj from './data_view_management.devdocs.json'; diff --git a/api_docs/data_views.mdx b/api_docs/data_views.mdx index ca1a73a1a5786..b2e88edec961d 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: 2024-02-19 +date: 2024-02-22 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 4f1c43a0cb48b..96d499441614a 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: 2024-02-19 +date: 2024-02-22 tags: ['contributor', 'dev', 'apidocs', 'kibana', 'dataVisualizer'] --- import dataVisualizerObj from './data_visualizer.devdocs.json'; diff --git a/api_docs/dataset_quality.devdocs.json b/api_docs/dataset_quality.devdocs.json index 9bb85febe8aa2..559afd544d1f9 100644 --- a/api_docs/dataset_quality.devdocs.json +++ b/api_docs/dataset_quality.devdocs.json @@ -13,7 +13,7 @@ "tags": [], "label": "datasetQualityAppTitle", "description": [], - "path": "x-pack/plugins/dataset_quality/common/translations.ts", + "path": "x-pack/plugins/observability_solution/dataset_quality/common/translations.ts", "deprecated": false, "trackAdoption": false, "initialIsOpen": false @@ -27,7 +27,7 @@ "tags": [], "label": "DatasetQualityPluginSetup", "description": [], - "path": "x-pack/plugins/dataset_quality/public/types.ts", + "path": "x-pack/plugins/observability_solution/dataset_quality/public/types.ts", "deprecated": false, "trackAdoption": false, "children": [], @@ -41,7 +41,7 @@ "tags": [], "label": "DatasetQualityPluginStart", "description": [], - "path": "x-pack/plugins/dataset_quality/public/types.ts", + "path": "x-pack/plugins/observability_solution/dataset_quality/public/types.ts", "deprecated": false, "trackAdoption": false, "children": [ @@ -59,7 +59,7 @@ "DatasetQualityProps", ">" ], - "path": "x-pack/plugins/dataset_quality/public/types.ts", + "path": "x-pack/plugins/observability_solution/dataset_quality/public/types.ts", "deprecated": false, "trackAdoption": false }, @@ -77,7 +77,7 @@ "DatasetQualityController", ">" ], - "path": "x-pack/plugins/dataset_quality/public/types.ts", + "path": "x-pack/plugins/observability_solution/dataset_quality/public/types.ts", "deprecated": false, "trackAdoption": false, "returnComment": [], @@ -94,7 +94,7 @@ "DatasetQualityPublicState", "> | undefined; }" ], - "path": "x-pack/plugins/dataset_quality/public/controller/create_controller.ts", + "path": "x-pack/plugins/observability_solution/dataset_quality/public/controller/create_controller.ts", "deprecated": false, "trackAdoption": false } @@ -124,7 +124,7 @@ "tags": [], "label": "DatasetQualityConfig", "description": [], - "path": "x-pack/plugins/dataset_quality/common/plugin_config.ts", + "path": "x-pack/plugins/observability_solution/dataset_quality/common/plugin_config.ts", "deprecated": false, "trackAdoption": false, "children": [], @@ -227,7 +227,7 @@ }, " ? ClientRequestParamsOfType : {} : never" ], - "path": "x-pack/plugins/dataset_quality/common/rest/create_call_dataset_quality_api.ts", + "path": "x-pack/plugins/observability_solution/dataset_quality/common/rest/create_call_dataset_quality_api.ts", "deprecated": false, "trackAdoption": false, "initialIsOpen": false @@ -310,7 +310,7 @@ "ServerRouteCreateOptions", " ? TReturnType : never" ], - "path": "x-pack/plugins/dataset_quality/common/rest/create_call_dataset_quality_api.ts", + "path": "x-pack/plugins/observability_solution/dataset_quality/common/rest/create_call_dataset_quality_api.ts", "deprecated": false, "trackAdoption": false, "initialIsOpen": false @@ -333,7 +333,7 @@ }, ", \"body\"> & { pathname: string; method?: string | undefined; body?: any; }" ], - "path": "x-pack/plugins/dataset_quality/common/fetch_options.ts", + "path": "x-pack/plugins/observability_solution/dataset_quality/common/fetch_options.ts", "deprecated": false, "trackAdoption": false, "initialIsOpen": false @@ -341,4 +341,4 @@ ], "objects": [] } -} \ No newline at end of file +} diff --git a/api_docs/dataset_quality.mdx b/api_docs/dataset_quality.mdx index 2b6fb5c86b170..9213e5ef1cc0d 100644 --- a/api_docs/dataset_quality.mdx +++ b/api_docs/dataset_quality.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/datasetQuality title: "datasetQuality" image: https://source.unsplash.com/400x175/?github description: API docs for the datasetQuality plugin -date: 2024-02-19 +date: 2024-02-22 tags: ['contributor', 'dev', 'apidocs', 'kibana', 'datasetQuality'] --- import datasetQualityObj from './dataset_quality.devdocs.json'; @@ -41,4 +41,3 @@ Contact [@elastic/obs-ux-logs-team](https://github.com/orgs/elastic/teams/obs-ux ### Consts, variables and types - diff --git a/api_docs/deprecations_by_api.mdx b/api_docs/deprecations_by_api.mdx index 947325fc6fff0..520def3740df1 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: 2024-02-19 +date: 2024-02-22 tags: ['contributor', 'dev', 'apidocs', 'kibana'] --- @@ -17,7 +17,7 @@ tags: ['contributor', 'dev', 'apidocs', 'kibana'] | Deprecated API | Referencing plugin(s) | Remove By | | ---------------|-----------|-----------| | | ml, stackAlerts | - | -| | share, uiActions, guidedOnboarding, home, serverless, management, spaces, savedObjects, indexManagement, devTools, console, visualizations, dashboard, savedObjectsTagging, expressionXY, lens, expressionMetricVis, expressionGauge, security, alerting, triggersActionsUi, cases, aiops, licenseManagement, maps, dataVisualizer, ml, exploratoryView, fleet, metricsDataAccess, osquery, ingestPipelines, profiling, apm, expressionImage, expressionMetric, expressionError, expressionRevealImage, expressionRepeatImage, expressionShape, crossClusterReplication, graph, grokdebugger, indexLifecycleManagement, infra, logstash, monitoring, observabilityOnboarding, painlessLab, remoteClusters, rollup, searchprofiler, newsfeed, securitySolution, snapshotRestore, synthetics, transform, upgradeAssistant, uptime, ux, watcher, cloudDataMigration, filesManagement, kibanaOverview, visDefaultEditor, expressionHeatmap, expressionLegacyMetricVis, expressionPartitionVis, expressionTagcloud, visTypeTable, visTypeTimelion, visTypeTimeseries, visTypeVega, visTypeVislib | - | +| | share, uiActions, guidedOnboarding, home, serverless, management, spaces, savedObjects, indexManagement, devTools, console, visualizations, dashboard, savedObjectsTagging, expressionXY, lens, expressionMetricVis, expressionGauge, security, alerting, triggersActionsUi, cases, aiops, licenseManagement, maps, dataVisualizer, ml, exploratoryView, fleet, metricsDataAccess, osquery, ingestPipelines, profiling, apm, expressionImage, expressionMetric, expressionError, expressionRevealImage, expressionRepeatImage, expressionShape, crossClusterReplication, graph, grokdebugger, indexLifecycleManagement, infra, logstash, monitoring, observabilityOnboarding, painlessLab, remoteClusters, rollup, searchprofiler, newsfeed, securitySolution, snapshotRestore, synthetics, transform, upgradeAssistant, uptime, watcher, cloudDataMigration, ux, filesManagement, kibanaOverview, visDefaultEditor, expressionHeatmap, expressionLegacyMetricVis, expressionPartitionVis, expressionTagcloud, visTypeTable, visTypeTimelion, visTypeTimeseries, visTypeVega, visTypeVislib | - | | | encryptedSavedObjects, actions, data, ml, logstash, securitySolution, cloudChat | - | | | actions, ml, savedObjectsTagging, enterpriseSearch | - | | | @kbn/core-saved-objects-browser-internal, @kbn/core, savedObjects, visualizations, aiops, ml, dataVisualizer, dashboardEnhanced, graph, lens, securitySolution, eventAnnotation, @kbn/core-saved-objects-browser-mocks | - | @@ -57,6 +57,7 @@ tags: ['contributor', 'dev', 'apidocs', 'kibana'] | | securitySolution | - | | | securitySolution | - | | | securitySolution | - | +| | @kbn/monaco, securitySolution | - | | | dataVisualizer, exploratoryView, fleet, osquery, cloudSecurityPosture, discoverEnhanced, synthetics | - | | | actions, alerting | - | | | data, discover, imageEmbeddable, embeddable | - | @@ -206,4 +207,6 @@ Safe to remove. | | taskManager | | | @kbn/core-saved-objects-api-browser | | | @kbn/core-saved-objects-api-browser | -| | @kbn/storybook | \ No newline at end of file +| | @kbn/storybook | +| | @kbn/ui-theme | +| | @kbn/ui-theme | \ No newline at end of file diff --git a/api_docs/deprecations_by_plugin.mdx b/api_docs/deprecations_by_plugin.mdx index aa6a07ee60339..4a06c9a1045c5 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: 2024-02-19 +date: 2024-02-22 tags: ['contributor', 'dev', 'apidocs', 'kibana'] --- @@ -323,6 +323,14 @@ tags: ['contributor', 'dev', 'apidocs', 'kibana'] +## @kbn/monaco + +| Deprecated API | Reference location(s) | Remove By | +| ---------------|-----------|-----------| +| | [esql_theme.ts](https://github.com/elastic/kibana/tree/main/packages/kbn-monaco/src/esql/lib/monaco/esql_theme.ts#:~:text=darkMode), [esql_theme.ts](https://github.com/elastic/kibana/tree/main/packages/kbn-monaco/src/esql/lib/monaco/esql_theme.ts#:~:text=darkMode) | - | + + + ## @kbn/react-kibana-context-styled | Deprecated API | Reference location(s) | Remove By | @@ -734,10 +742,10 @@ tags: ['contributor', 'dev', 'apidocs', 'kibana'] | Deprecated API | Reference location(s) | Remove By | | ---------------|-----------|-----------| -| | [use_discover_link.tsx](https://github.com/elastic/kibana/tree/main/x-pack/plugins/exploratory_view/public/components/shared/exploratory_view/hooks/use_discover_link.tsx#:~:text=indexPatternId) | - | -| | [add_to_case_action.tsx](https://github.com/elastic/kibana/tree/main/x-pack/plugins/exploratory_view/public/components/shared/exploratory_view/header/add_to_case_action.tsx#:~:text=toMountPoint), [add_to_case_action.tsx](https://github.com/elastic/kibana/tree/main/x-pack/plugins/exploratory_view/public/components/shared/exploratory_view/header/add_to_case_action.tsx#:~:text=toMountPoint) | - | -| | [index.tsx](https://github.com/elastic/kibana/tree/main/x-pack/plugins/exploratory_view/public/application/index.tsx#:~:text=KibanaThemeProvider), [index.tsx](https://github.com/elastic/kibana/tree/main/x-pack/plugins/exploratory_view/public/application/index.tsx#:~:text=KibanaThemeProvider), [index.tsx](https://github.com/elastic/kibana/tree/main/x-pack/plugins/exploratory_view/public/application/index.tsx#:~:text=KibanaThemeProvider) | - | -| | [types.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/exploratory_view/public/application/types.ts#:~:text=SavedObjectsStart), [types.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/exploratory_view/public/application/types.ts#:~:text=SavedObjectsStart) | - | +| | [use_discover_link.tsx](https://github.com/elastic/kibana/tree/main/x-pack/plugins/observability_solution/exploratory_view/public/components/shared/exploratory_view/hooks/use_discover_link.tsx#:~:text=indexPatternId) | - | +| | [add_to_case_action.tsx](https://github.com/elastic/kibana/tree/main/x-pack/plugins/observability_solution/exploratory_view/public/components/shared/exploratory_view/header/add_to_case_action.tsx#:~:text=toMountPoint), [add_to_case_action.tsx](https://github.com/elastic/kibana/tree/main/x-pack/plugins/observability_solution/exploratory_view/public/components/shared/exploratory_view/header/add_to_case_action.tsx#:~:text=toMountPoint) | - | +| | [index.tsx](https://github.com/elastic/kibana/tree/main/x-pack/plugins/observability_solution/exploratory_view/public/application/index.tsx#:~:text=KibanaThemeProvider), [index.tsx](https://github.com/elastic/kibana/tree/main/x-pack/plugins/observability_solution/exploratory_view/public/application/index.tsx#:~:text=KibanaThemeProvider), [index.tsx](https://github.com/elastic/kibana/tree/main/x-pack/plugins/observability_solution/exploratory_view/public/application/index.tsx#:~:text=KibanaThemeProvider) | - | +| | [types.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/observability_solution/exploratory_view/public/application/types.ts#:~:text=SavedObjectsStart), [types.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/observability_solution/exploratory_view/public/application/types.ts#:~:text=SavedObjectsStart) | - | @@ -1213,7 +1221,7 @@ tags: ['contributor', 'dev', 'apidocs', 'kibana'] | Deprecated API | Reference location(s) | Remove By | | ---------------|-----------|-----------| -| | [header_menu_portal.tsx](https://github.com/elastic/kibana/tree/main/x-pack/plugins/observability_shared/public/components/header_menu/header_menu_portal.tsx#:~:text=toMountPoint), [header_menu_portal.tsx](https://github.com/elastic/kibana/tree/main/x-pack/plugins/observability_shared/public/components/header_menu/header_menu_portal.tsx#:~:text=toMountPoint) | - | +| | [header_menu_portal.tsx](https://github.com/elastic/kibana/tree/main/x-pack/plugins/observability_solution/observability_shared/public/components/header_menu/header_menu_portal.tsx#:~:text=toMountPoint), [header_menu_portal.tsx](https://github.com/elastic/kibana/tree/main/x-pack/plugins/observability_solution/observability_shared/public/components/header_menu/header_menu_portal.tsx#:~:text=toMountPoint) | - | @@ -1251,8 +1259,8 @@ tags: ['contributor', 'dev', 'apidocs', 'kibana'] | Deprecated API | Reference location(s) | Remove By | | ---------------|-----------|-----------| -| | [app.tsx](https://github.com/elastic/kibana/tree/main/x-pack/plugins/profiling/public/app.tsx#:~:text=KibanaThemeProvider), [app.tsx](https://github.com/elastic/kibana/tree/main/x-pack/plugins/profiling/public/app.tsx#:~:text=KibanaThemeProvider), [app.tsx](https://github.com/elastic/kibana/tree/main/x-pack/plugins/profiling/public/app.tsx#:~:text=KibanaThemeProvider) | - | -| | [license_context.tsx](https://github.com/elastic/kibana/tree/main/x-pack/plugins/profiling/public/components/contexts/license/license_context.tsx#:~:text=license%24) | 8.8.0 | +| | [app.tsx](https://github.com/elastic/kibana/tree/main/x-pack/plugins/observability_solution/profiling/public/app.tsx#:~:text=KibanaThemeProvider), [app.tsx](https://github.com/elastic/kibana/tree/main/x-pack/plugins/observability_solution/profiling/public/app.tsx#:~:text=KibanaThemeProvider), [app.tsx](https://github.com/elastic/kibana/tree/main/x-pack/plugins/observability_solution/profiling/public/app.tsx#:~:text=KibanaThemeProvider) | - | +| | [license_context.tsx](https://github.com/elastic/kibana/tree/main/x-pack/plugins/observability_solution/profiling/public/components/contexts/license/license_context.tsx#:~:text=license%24) | 8.8.0 | @@ -1447,6 +1455,7 @@ migrates to using the Kibana Privilege model: https://github.com/elastic/kibana/ | | [lists.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/security_solution/server/endpoint/lib/artifacts/lists.ts#:~:text=ENDPOINT_BLOCKLISTS_LIST_ID), [lists.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/security_solution/server/endpoint/lib/artifacts/lists.ts#:~:text=ENDPOINT_BLOCKLISTS_LIST_ID), [blocklist_validator.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/security_solution/server/lists_integration/endpoint/validators/blocklist_validator.ts#:~:text=ENDPOINT_BLOCKLISTS_LIST_ID), [blocklist_validator.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/security_solution/server/lists_integration/endpoint/validators/blocklist_validator.ts#:~:text=ENDPOINT_BLOCKLISTS_LIST_ID), [policy_hooks.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/security_solution/public/management/pages/policy/view/policy_hooks.ts#:~:text=ENDPOINT_BLOCKLISTS_LIST_ID), [policy_hooks.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/security_solution/public/management/pages/policy/view/policy_hooks.ts#:~:text=ENDPOINT_BLOCKLISTS_LIST_ID), [constants.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/security_solution/public/management/pages/blocklist/constants.ts#:~:text=ENDPOINT_BLOCKLISTS_LIST_ID), [constants.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/security_solution/public/management/pages/blocklist/constants.ts#:~:text=ENDPOINT_BLOCKLISTS_LIST_ID), [blocklists_api_client.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/security_solution/public/management/pages/blocklist/services/blocklists_api_client.ts#:~:text=ENDPOINT_BLOCKLISTS_LIST_ID), [blocklists_api_client.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/security_solution/public/management/pages/blocklist/services/blocklists_api_client.ts#:~:text=ENDPOINT_BLOCKLISTS_LIST_ID)+ 8 more | - | | | [constants.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/security_solution/public/management/pages/blocklist/constants.ts#:~:text=ENDPOINT_BLOCKLISTS_LIST_NAME), [constants.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/security_solution/public/management/pages/blocklist/constants.ts#:~:text=ENDPOINT_BLOCKLISTS_LIST_NAME), [index.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/security_solution/scripts/endpoint/blocklists/index.ts#:~:text=ENDPOINT_BLOCKLISTS_LIST_NAME), [index.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/security_solution/scripts/endpoint/blocklists/index.ts#:~:text=ENDPOINT_BLOCKLISTS_LIST_NAME) | - | | | [constants.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/security_solution/public/management/pages/blocklist/constants.ts#:~:text=ENDPOINT_BLOCKLISTS_LIST_DESCRIPTION), [constants.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/security_solution/public/management/pages/blocklist/constants.ts#:~:text=ENDPOINT_BLOCKLISTS_LIST_DESCRIPTION), [index.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/security_solution/scripts/endpoint/blocklists/index.ts#:~:text=ENDPOINT_BLOCKLISTS_LIST_DESCRIPTION), [index.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/security_solution/scripts/endpoint/blocklists/index.ts#:~:text=ENDPOINT_BLOCKLISTS_LIST_DESCRIPTION) | - | +| | [use_colors.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/security_solution/public/resolver/view/use_colors.ts#:~:text=darkMode), [use_colors.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/security_solution/public/resolver/view/use_colors.ts#:~:text=darkMode), [use_colors.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/security_solution/public/resolver/view/use_colors.ts#:~:text=darkMode), [use_colors.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/security_solution/public/resolver/view/use_colors.ts#:~:text=darkMode), [use_colors.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/security_solution/public/resolver/view/use_colors.ts#:~:text=darkMode) | - | @@ -1614,7 +1623,7 @@ migrates to using the Kibana Privilege model: https://github.com/elastic/kibana/ | Deprecated API | Reference location(s) | Remove By | | ---------------|-----------|-----------| -| | [ux_app.tsx](https://github.com/elastic/kibana/tree/main/x-pack/plugins/ux/public/application/ux_app.tsx#:~:text=KibanaThemeProvider), [ux_app.tsx](https://github.com/elastic/kibana/tree/main/x-pack/plugins/ux/public/application/ux_app.tsx#:~:text=KibanaThemeProvider), [ux_app.tsx](https://github.com/elastic/kibana/tree/main/x-pack/plugins/ux/public/application/ux_app.tsx#:~:text=KibanaThemeProvider) | - | +| | [ux_app.tsx](https://github.com/elastic/kibana/tree/main/x-pack/plugins/observability_solution/ux/public/application/ux_app.tsx#:~:text=KibanaThemeProvider), [ux_app.tsx](https://github.com/elastic/kibana/tree/main/x-pack/plugins/observability_solution/ux/public/application/ux_app.tsx#:~:text=KibanaThemeProvider), [ux_app.tsx](https://github.com/elastic/kibana/tree/main/x-pack/plugins/observability_solution/ux/public/application/ux_app.tsx#:~:text=KibanaThemeProvider) | - | @@ -1716,4 +1725,4 @@ migrates to using the Kibana Privilege model: https://github.com/elastic/kibana/ | Deprecated API | Reference location(s) | Remove By | | ---------------|-----------|-----------| | | [shared_imports.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/watcher/public/application/shared_imports.ts#:~:text=KibanaThemeProvider), [index.tsx](https://github.com/elastic/kibana/tree/main/x-pack/plugins/watcher/public/application/index.tsx#:~:text=KibanaThemeProvider), [index.tsx](https://github.com/elastic/kibana/tree/main/x-pack/plugins/watcher/public/application/index.tsx#:~:text=KibanaThemeProvider), [index.tsx](https://github.com/elastic/kibana/tree/main/x-pack/plugins/watcher/public/application/index.tsx#:~:text=KibanaThemeProvider) | - | -| | [plugin.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/watcher/public/plugin.ts#:~:text=license%24), [plugin.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/watcher/public/plugin.ts#:~:text=license%24) | 8.8.0 | \ No newline at end of file +| | [plugin.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/watcher/public/plugin.ts#:~:text=license%24), [plugin.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/watcher/public/plugin.ts#:~:text=license%24) | 8.8.0 | diff --git a/api_docs/deprecations_by_team.mdx b/api_docs/deprecations_by_team.mdx index 2f699c9581077..b5c40a706eb88 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: 2024-02-19 +date: 2024-02-22 tags: ['contributor', 'dev', 'apidocs', 'kibana'] --- @@ -119,7 +119,7 @@ migrates to using the Kibana Privilege model: https://github.com/elastic/kibana/ | --------|-------|-----------|-----------| | apm | | [plugin.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/apm/public/plugin.ts#:~:text=environment) | 8.8.0 | | apm | | [license_check.test.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/apm/common/license_check.test.ts#:~:text=mode), [license_check.test.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/apm/common/license_check.test.ts#:~:text=mode), [license_check.test.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/apm/common/license_check.test.ts#:~:text=mode), [license_check.test.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/apm/common/license_check.test.ts#:~:text=mode), [license_check.test.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/apm/common/license_check.test.ts#:~:text=mode), [license_check.test.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/apm/common/license_check.test.ts#:~:text=mode), [license_check.test.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/apm/common/license_check.test.ts#:~:text=mode), [license_check.test.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/apm/common/license_check.test.ts#:~:text=mode), [license_check.test.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/apm/common/license_check.test.ts#:~:text=mode), [license_check.test.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/apm/common/license_check.test.ts#:~:text=mode)+ 2 more | 8.8.0 | -| apm | | [license_context.tsx](https://github.com/elastic/kibana/tree/main/x-pack/plugins/apm/public/context/license/license_context.tsx#:~:text=license%24), [license_context.tsx](https://github.com/elastic/kibana/tree/main/x-pack/plugins/profiling/public/components/contexts/license/license_context.tsx#:~:text=license%24) | 8.8.0 | +| apm | | [license_context.tsx](https://github.com/elastic/kibana/tree/main/x-pack/plugins/apm/public/context/license/license_context.tsx#:~:text=license%24), [license_context.tsx](https://github.com/elastic/kibana/tree/main/x-pack/plugins/observability_solution/profiling/public/components/contexts/license/license_context.tsx#:~:text=license%24) | 8.8.0 | | apm | | [license_check.test.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/apm/common/license_check.test.ts#:~:text=mode), [license_check.test.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/apm/common/license_check.test.ts#:~:text=mode), [license_check.test.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/apm/common/license_check.test.ts#:~:text=mode), [license_check.test.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/apm/common/license_check.test.ts#:~:text=mode), [license_check.test.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/apm/common/license_check.test.ts#:~:text=mode), [license_check.test.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/apm/common/license_check.test.ts#:~:text=mode), [license_check.test.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/apm/common/license_check.test.ts#:~:text=mode), [license_check.test.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/apm/common/license_check.test.ts#:~:text=mode), [license_check.test.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/apm/common/license_check.test.ts#:~:text=mode), [license_check.test.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/apm/common/license_check.test.ts#:~:text=mode)+ 2 more | 8.8.0 | @@ -165,4 +165,4 @@ migrates to using the Kibana Privilege model: https://github.com/elastic/kibana/ | --------|-------|-----------|-----------| | securitySolution | | [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 | | securitySolution | | [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 | -| securitySolution | | [create_threat_signals.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/security_solution/server/lib/detection_engine/rule_types/indicator_match/threat_mapping/create_threat_signals.ts#:~:text=license%24), [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), [threshold.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/security_solution/server/lib/detection_engine/rule_types/threshold/threshold.ts#:~:text=license%24) | 8.8.0 | \ No newline at end of file +| securitySolution | | [create_threat_signals.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/security_solution/server/lib/detection_engine/rule_types/indicator_match/threat_mapping/create_threat_signals.ts#:~:text=license%24), [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), [threshold.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/security_solution/server/lib/detection_engine/rule_types/threshold/threshold.ts#:~:text=license%24) | 8.8.0 | diff --git a/api_docs/dev_tools.mdx b/api_docs/dev_tools.mdx index 9231617d37eb4..55347ac93504b 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: 2024-02-19 +date: 2024-02-22 tags: ['contributor', 'dev', 'apidocs', 'kibana', 'devTools'] --- import devToolsObj from './dev_tools.devdocs.json'; diff --git a/api_docs/discover.devdocs.json b/api_docs/discover.devdocs.json index ca132c40f7d5a..3632410dbe798 100644 --- a/api_docs/discover.devdocs.json +++ b/api_docs/discover.devdocs.json @@ -60,9 +60,7 @@ "tags": [], "label": "props", "description": [], - "signature": [ - "P" - ], + "signature": ["P"], "path": "node_modules/@types/react/index.d.ts", "deprecated": false, "trackAdoption": false @@ -101,10 +99,7 @@ "tags": [], "label": "result", "description": [], - "signature": [ - "DataTableRecord", - "[] | undefined" - ], + "signature": ["DataTableRecord", "[] | undefined"], "path": "src/plugins/discover/public/application/main/services/discover_data_state_container.ts", "deprecated": false, "trackAdoption": false @@ -137,9 +132,7 @@ "tags": [], "label": "textBasedHeaderWarning", "description": [], - "signature": [ - "string | undefined" - ], + "signature": ["string | undefined"], "path": "src/plugins/discover/public/application/main/services/discover_data_state_container.ts", "deprecated": false, "trackAdoption": false @@ -151,10 +144,7 @@ "tags": [], "label": "interceptedWarnings", "description": [], - "signature": [ - "SearchResponseIncompleteWarning", - "[] | undefined" - ], + "signature": ["SearchResponseIncompleteWarning", "[] | undefined"], "path": "src/plugins/discover/public/application/main/services/discover_data_state_container.ts", "deprecated": false, "trackAdoption": false @@ -179,12 +169,8 @@ "type": "Array", "tags": [], "label": "columns", - "description": [ - "\nColumns displayed in the table" - ], - "signature": [ - "string[] | undefined" - ], + "description": ["\nColumns displayed in the table"], + "signature": ["string[] | undefined"], "path": "src/plugins/discover/public/application/main/services/discover_app_state_container.ts", "deprecated": false, "trackAdoption": false @@ -195,9 +181,7 @@ "type": "Array", "tags": [], "label": "filters", - "description": [ - "\nArray of applied filters" - ], + "description": ["\nArray of applied filters"], "signature": [ { "pluginId": "@kbn/es-query", @@ -218,9 +202,7 @@ "type": "Object", "tags": [], "label": "grid", - "description": [ - "\nData Grid related state" - ], + "description": ["\nData Grid related state"], "signature": [ { "pluginId": "savedSearch", @@ -241,12 +223,8 @@ "type": "CompoundType", "tags": [], "label": "hideChart", - "description": [ - "\nHide chart" - ], - "signature": [ - "boolean | undefined" - ], + "description": ["\nHide chart"], + "signature": ["boolean | undefined"], "path": "src/plugins/discover/public/application/main/services/discover_app_state_container.ts", "deprecated": false, "trackAdoption": false @@ -257,12 +235,8 @@ "type": "string", "tags": [], "label": "index", - "description": [ - "\nid of the used data view" - ], - "signature": [ - "string | undefined" - ], + "description": ["\nid of the used data view"], + "signature": ["string | undefined"], "path": "src/plugins/discover/public/application/main/services/discover_app_state_container.ts", "deprecated": false, "trackAdoption": false @@ -273,12 +247,8 @@ "type": "string", "tags": [], "label": "interval", - "description": [ - "\nUsed interval of the histogram" - ], - "signature": [ - "string | undefined" - ], + "description": ["\nUsed interval of the histogram"], + "signature": ["string | undefined"], "path": "src/plugins/discover/public/application/main/services/discover_app_state_container.ts", "deprecated": false, "trackAdoption": false @@ -289,9 +259,7 @@ "type": "CompoundType", "tags": [], "label": "query", - "description": [ - "\nLucence or KQL query" - ], + "description": ["\nLucence or KQL query"], "signature": [ { "pluginId": "@kbn/es-query", @@ -320,12 +288,8 @@ "type": "Array", "tags": [], "label": "sort", - "description": [ - "\nArray of the used sorting [[field,direction],...]" - ], - "signature": [ - "string[][] | undefined" - ], + "description": ["\nArray of the used sorting [[field,direction],...]"], + "signature": ["string[][] | undefined"], "path": "src/plugins/discover/public/application/main/services/discover_app_state_container.ts", "deprecated": false, "trackAdoption": false @@ -336,12 +300,8 @@ "type": "string", "tags": [], "label": "savedQuery", - "description": [ - "\nid of the used saved query" - ], - "signature": [ - "string | undefined" - ], + "description": ["\nid of the used saved query"], + "signature": ["string | undefined"], "path": "src/plugins/discover/public/application/main/services/discover_app_state_container.ts", "deprecated": false, "trackAdoption": false @@ -352,9 +312,7 @@ "type": "CompoundType", "tags": [], "label": "viewMode", - "description": [ - "\nTable view: Documents vs Field Statistics" - ], + "description": ["\nTable view: Documents vs Field Statistics"], "signature": [ { "pluginId": "savedSearch", @@ -378,9 +336,7 @@ "description": [ "\nHide mini distribution/preview charts when in Field Statistics mode" ], - "signature": [ - "boolean | undefined" - ], + "signature": ["boolean | undefined"], "path": "src/plugins/discover/public/application/main/services/discover_app_state_container.ts", "deprecated": false, "trackAdoption": false @@ -391,12 +347,8 @@ "type": "number", "tags": [], "label": "rowHeight", - "description": [ - "\nDocument explorer row height option" - ], - "signature": [ - "number | undefined" - ], + "description": ["\nDocument explorer row height option"], + "signature": ["number | undefined"], "path": "src/plugins/discover/public/application/main/services/discover_app_state_container.ts", "deprecated": false, "trackAdoption": false @@ -407,12 +359,8 @@ "type": "number", "tags": [], "label": "headerRowHeight", - "description": [ - "\nDocument explorer header row height option" - ], - "signature": [ - "number | undefined" - ], + "description": ["\nDocument explorer header row height option"], + "signature": ["number | undefined"], "path": "src/plugins/discover/public/application/main/services/discover_app_state_container.ts", "deprecated": false, "trackAdoption": false @@ -423,12 +371,8 @@ "type": "number", "tags": [], "label": "rowsPerPage", - "description": [ - "\nNumber of rows in the grid per page" - ], - "signature": [ - "number | undefined" - ], + "description": ["\nNumber of rows in the grid per page"], + "signature": ["number | undefined"], "path": "src/plugins/discover/public/application/main/services/discover_app_state_container.ts", "deprecated": false, "trackAdoption": false @@ -439,12 +383,8 @@ "type": "number", "tags": [], "label": "sampleSize", - "description": [ - "\nCustom sample size" - ], - "signature": [ - "number | undefined" - ], + "description": ["\nCustom sample size"], + "signature": ["number | undefined"], "path": "src/plugins/discover/public/application/main/services/discover_app_state_container.ts", "deprecated": false, "trackAdoption": false @@ -455,12 +395,8 @@ "type": "string", "tags": [], "label": "breakdownField", - "description": [ - "\nBreakdown field of chart" - ], - "signature": [ - "string | undefined" - ], + "description": ["\nBreakdown field of chart"], + "signature": ["string | undefined"], "path": "src/plugins/discover/public/application/main/services/discover_app_state_container.ts", "deprecated": false, "trackAdoption": false @@ -582,9 +518,7 @@ "tags": [], "label": "id", "description": [], - "signature": [ - "TCustomizationId" - ], + "signature": ["TCustomizationId"], "path": "src/plugins/discover/public/customizations/customization_service.ts", "deprecated": false, "trackAdoption": false, @@ -695,9 +629,7 @@ "tags": [], "label": "options", "description": [], - "signature": [ - "CustomizationCallbackContext" - ], + "signature": ["CustomizationCallbackContext"], "path": "src/plugins/discover/public/customizations/types.ts", "deprecated": false, "trackAdoption": false @@ -745,12 +677,8 @@ "type": "Object", "tags": [], "label": "globalState", - "description": [ - "\nGlobal State, the _g part of the URL" - ], - "signature": [ - "DiscoverGlobalStateContainer" - ], + "description": ["\nGlobal State, the _g part of the URL"], + "signature": ["DiscoverGlobalStateContainer"], "path": "src/plugins/discover/public/application/main/services/discover_state.ts", "deprecated": false, "trackAdoption": false @@ -761,12 +689,8 @@ "type": "Object", "tags": [], "label": "appState", - "description": [ - "\nApp state, the _a part of the URL" - ], - "signature": [ - "DiscoverAppStateContainer" - ], + "description": ["\nApp state, the _a part of the URL"], + "signature": ["DiscoverAppStateContainer"], "path": "src/plugins/discover/public/application/main/services/discover_state.ts", "deprecated": false, "trackAdoption": false @@ -777,12 +701,8 @@ "type": "Object", "tags": [], "label": "dataState", - "description": [ - "\nData fetching related state" - ], - "signature": [ - "DiscoverDataStateContainer" - ], + "description": ["\nData fetching related state"], + "signature": ["DiscoverDataStateContainer"], "path": "src/plugins/discover/public/application/main/services/discover_state.ts", "deprecated": false, "trackAdoption": false @@ -793,9 +713,7 @@ "type": "Object", "tags": [], "label": "internalState", - "description": [ - "\nInternal shared state that's used at several places in the UI" - ], + "description": ["\nInternal shared state that's used at several places in the UI"], "signature": [ { "pluginId": "kibanaUtils", @@ -818,12 +736,8 @@ "type": "Object", "tags": [], "label": "savedSearchState", - "description": [ - "\nState of saved search, the saved object of Discover" - ], - "signature": [ - "DiscoverSavedSearchContainer" - ], + "description": ["\nState of saved search, the saved object of Discover"], + "signature": ["DiscoverSavedSearchContainer"], "path": "src/plugins/discover/public/application/main/services/discover_state.ts", "deprecated": false, "trackAdoption": false @@ -834,9 +748,7 @@ "type": "Object", "tags": [], "label": "stateStorage", - "description": [ - "\nState of url, allows updating and subscribing to url changes" - ], + "description": ["\nState of url, allows updating and subscribing to url changes"], "signature": [ { "pluginId": "kibanaUtils", @@ -856,12 +768,8 @@ "type": "Object", "tags": [], "label": "searchSessionManager", - "description": [ - "\nService for handling search sessions" - ], - "signature": [ - "DiscoverSearchSessionManager" - ], + "description": ["\nService for handling search sessions"], + "signature": ["DiscoverSearchSessionManager"], "path": "src/plugins/discover/public/application/main/services/discover_state.ts", "deprecated": false, "trackAdoption": false @@ -872,12 +780,8 @@ "type": "Object", "tags": [], "label": "customizationContext", - "description": [ - "\nContext object for customization related properties" - ], - "signature": [ - "DiscoverCustomizationContext" - ], + "description": ["\nContext object for customization related properties"], + "signature": ["DiscoverCustomizationContext"], "path": "src/plugins/discover/public/application/main/services/discover_state.ts", "deprecated": false, "trackAdoption": false @@ -888,9 +792,7 @@ "type": "Object", "tags": [], "label": "actions", - "description": [ - "\nComplex functions to update multiple containers from UI" - ], + "description": ["\nComplex functions to update multiple containers from UI"], "signature": [ "{ fetchData: (initial?: boolean | undefined) => void; initializeAndSync: () => () => void; loadDataViewList: () => Promise; loadSavedSearch: (param?: ", "LoadParams", @@ -958,7 +860,15 @@ "section": "def-common.AggregateQuery", "text": "AggregateQuery" }, - " | undefined; }, isUpdate?: boolean | undefined) => void; onChangeDataView: (id: string) => Promise; setDataView: (dataView: ", + " | undefined; }, isUpdate?: boolean | undefined) => void; onChangeDataView: (id: string | ", + { + "pluginId": "dataViews", + "scope": "common", + "docId": "kibDataViewsPluginApi", + "section": "def-common.DataView", + "text": "DataView" + }, + ") => Promise; setDataView: (dataView: ", { "pluginId": "dataViews", "scope": "common", @@ -1025,9 +935,7 @@ "tags": [], "label": "doc", "description": [], - "signature": [ - "DataTableRecord" - ], + "signature": ["DataTableRecord"], "path": "src/plugins/discover/public/customizations/customization_types/flyout_customization.ts", "deprecated": false, "trackAdoption": false @@ -1039,9 +947,7 @@ "tags": [], "label": "renderDefaultContent", "description": [], - "signature": [ - "() => React.ReactNode" - ], + "signature": ["() => React.ReactNode"], "path": "src/plugins/discover/public/customizations/customization_types/flyout_customization.ts", "deprecated": false, "trackAdoption": false, @@ -1069,9 +975,7 @@ "tags": [], "label": "id", "description": [], - "signature": [ - "\"flyout\"" - ], + "signature": ["\"flyout\""], "path": "src/plugins/discover/public/customizations/customization_types/flyout_customization.ts", "deprecated": false, "trackAdoption": false @@ -1083,10 +987,7 @@ "tags": [], "label": "size", "description": [], - "signature": [ - "Property", - ".Width | undefined" - ], + "signature": ["Property", ".Width | undefined"], "path": "src/plugins/discover/public/customizations/customization_types/flyout_customization.ts", "deprecated": false, "trackAdoption": false @@ -1098,9 +999,7 @@ "tags": [], "label": "title", "description": [], - "signature": [ - "string | undefined" - ], + "signature": ["string | undefined"], "path": "src/plugins/discover/public/customizations/customization_types/flyout_customization.ts", "deprecated": false, "trackAdoption": false @@ -1255,9 +1154,7 @@ "tags": [], "label": "hasTimeRange", "description": [], - "signature": [ - "() => boolean" - ], + "signature": ["() => boolean"], "path": "src/plugins/discover/public/embeddable/types.ts", "deprecated": false, "trackAdoption": false, @@ -1307,9 +1204,7 @@ "tags": [], "label": "selectedTab", "description": [], - "signature": [ - "\"discover\" | \"logs-explorer\"" - ], + "signature": ["\"discover\" | \"logs-explorer\""], "path": "src/plugins/discover/public/components/logs_explorer_tabs/logs_explorer_tabs.tsx", "deprecated": false, "trackAdoption": false @@ -1335,9 +1230,7 @@ "tags": [], "label": "id", "description": [], - "signature": [ - "\"search_bar\"" - ], + "signature": ["\"search_bar\""], "path": "src/plugins/discover/public/customizations/customization_types/search_bar_customization.ts", "deprecated": false, "trackAdoption": false @@ -1349,9 +1242,7 @@ "tags": [], "label": "CustomDataViewPicker", "description": [], - "signature": [ - "React.ComponentType<{}> | undefined" - ], + "signature": ["React.ComponentType<{}> | undefined"], "path": "src/plugins/discover/public/customizations/customization_types/search_bar_customization.ts", "deprecated": false, "trackAdoption": false @@ -1363,9 +1254,7 @@ "tags": [], "label": "PrependFilterBar", "description": [], - "signature": [ - "React.ComponentType<{}> | undefined" - ], + "signature": ["React.ComponentType<{}> | undefined"], "path": "src/plugins/discover/public/customizations/customization_types/search_bar_customization.ts", "deprecated": false, "trackAdoption": false @@ -1407,9 +1296,7 @@ "tags": [], "label": "hideDataViewPicker", "description": [], - "signature": [ - "boolean | undefined" - ], + "signature": ["boolean | undefined"], "path": "src/plugins/discover/public/customizations/customization_types/search_bar_customization.ts", "deprecated": false, "trackAdoption": false @@ -1435,9 +1322,7 @@ "tags": [], "label": "id", "description": [], - "signature": [ - "\"top_nav\"" - ], + "signature": ["\"top_nav\""], "path": "src/plugins/discover/public/customizations/customization_types/top_nav_customization.ts", "deprecated": false, "trackAdoption": false @@ -1449,10 +1334,7 @@ "tags": [], "label": "defaultMenu", "description": [], - "signature": [ - "TopNavDefaultMenu", - " | undefined" - ], + "signature": ["TopNavDefaultMenu", " | undefined"], "path": "src/plugins/discover/public/customizations/customization_types/top_nav_customization.ts", "deprecated": false, "trackAdoption": false @@ -1464,11 +1346,7 @@ "tags": [], "label": "getMenuItems", "description": [], - "signature": [ - "(() => ", - "TopNavMenuItem", - "[]) | undefined" - ], + "signature": ["(() => ", "TopNavMenuItem", "[]) | undefined"], "path": "src/plugins/discover/public/customizations/customization_types/top_nav_customization.ts", "deprecated": false, "trackAdoption": false, @@ -1482,10 +1360,7 @@ "tags": [], "label": "defaultBadges", "description": [], - "signature": [ - "TopNavDefaultBadges", - " | undefined" - ], + "signature": ["TopNavDefaultBadges", " | undefined"], "path": "src/plugins/discover/public/customizations/customization_types/top_nav_customization.ts", "deprecated": false, "trackAdoption": false @@ -1497,11 +1372,7 @@ "tags": [], "label": "getBadges", "description": [], - "signature": [ - "(() => ", - "TopNavBadge", - "[]) | undefined" - ], + "signature": ["(() => ", "TopNavBadge", "[]) | undefined"], "path": "src/plugins/discover/public/customizations/customization_types/top_nav_customization.ts", "deprecated": false, "trackAdoption": false, @@ -1538,9 +1409,7 @@ "tags": [], "label": "options", "description": [], - "signature": [ - "CustomizationCallbackContext" - ], + "signature": ["CustomizationCallbackContext"], "path": "src/plugins/discover/public/customizations/types.ts", "deprecated": false, "trackAdoption": false @@ -1643,9 +1512,7 @@ "tags": [], "label": "DiscoverProfileId", "description": [], - "signature": [ - "string" - ], + "signature": ["string"], "path": "src/plugins/discover/public/customizations/types.ts", "deprecated": false, "trackAdoption": false, @@ -1715,9 +1582,7 @@ "tags": [], "label": "SEARCH_EMBEDDABLE_CELL_ACTIONS_TRIGGER_ID", "description": [], - "signature": [ - "\"SEARCH_EMBEDDABLE_CELL_ACTIONS_TRIGGER_ID\"" - ], + "signature": ["\"SEARCH_EMBEDDABLE_CELL_ACTIONS_TRIGGER_ID\""], "path": "src/plugins/discover/public/embeddable/constants.ts", "deprecated": false, "trackAdoption": false, @@ -1730,9 +1595,7 @@ "tags": [], "label": "SEARCH_EMBEDDABLE_TYPE", "description": [], - "signature": [ - "\"search\"" - ], + "signature": ["\"search\""], "path": "packages/kbn-discover-utils/src/constants.ts", "deprecated": false, "trackAdoption": false, @@ -1833,9 +1696,7 @@ "tags": [], "label": "showLogsExplorerTabs", "description": [], - "signature": [ - "() => void" - ], + "signature": ["() => void"], "path": "src/plugins/discover/public/plugin.tsx", "deprecated": false, "trackAdoption": false, @@ -2435,9 +2296,7 @@ "tags": [], "label": "id", "description": [], - "signature": [ - "\"DISCOVER_APP_LOCATOR\"" - ], + "signature": ["\"DISCOVER_APP_LOCATOR\""], "path": "src/plugins/discover/common/app_locator.ts", "deprecated": false, "trackAdoption": false @@ -2449,9 +2308,7 @@ "tags": [], "label": "Constructor", "description": [], - "signature": [ - "any" - ], + "signature": ["any"], "path": "src/plugins/discover/common/app_locator.ts", "deprecated": false, "trackAdoption": false, @@ -2463,9 +2320,7 @@ "tags": [], "label": "deps", "description": [], - "signature": [ - "DiscoverAppLocatorDependencies" - ], + "signature": ["DiscoverAppLocatorDependencies"], "path": "src/plugins/discover/common/app_locator.ts", "deprecated": false, "trackAdoption": false, @@ -2575,9 +2430,7 @@ "tags": [], "label": "id", "description": [], - "signature": [ - "\"DISCOVER_ESQL_LOCATOR\"" - ], + "signature": ["\"DISCOVER_ESQL_LOCATOR\""], "path": "src/plugins/discover/common/esql_locator.ts", "deprecated": false, "trackAdoption": false @@ -2589,9 +2442,7 @@ "tags": [], "label": "Constructor", "description": [], - "signature": [ - "any" - ], + "signature": ["any"], "path": "src/plugins/discover/common/esql_locator.ts", "deprecated": false, "trackAdoption": false, @@ -2603,9 +2454,7 @@ "tags": [], "label": "deps", "description": [], - "signature": [ - "DiscoverESQLLocatorDependencies" - ], + "signature": ["DiscoverESQLLocatorDependencies"], "path": "src/plugins/discover/common/esql_locator.ts", "deprecated": false, "trackAdoption": false, @@ -2621,11 +2470,7 @@ "tags": [], "label": "getLocation", "description": [], - "signature": [ - "() => Promise<", - "KibanaLocation", - ">" - ], + "signature": ["() => Promise<", "KibanaLocation", ">"], "path": "src/plugins/discover/common/esql_locator.ts", "deprecated": false, "trackAdoption": false, @@ -2672,12 +2517,8 @@ "type": "string", "tags": [], "label": "savedSearchId", - "description": [ - "\nOptionally set saved search ID." - ], - "signature": [ - "string | undefined" - ], + "description": ["\nOptionally set saved search ID."], + "signature": ["string | undefined"], "path": "src/plugins/discover/common/app_locator.ts", "deprecated": false, "trackAdoption": false @@ -2688,12 +2529,8 @@ "type": "string", "tags": [], "label": "dataViewId", - "description": [ - "\nOptionally set index pattern / data view ID." - ], - "signature": [ - "string | undefined" - ], + "description": ["\nOptionally set index pattern / data view ID."], + "signature": ["string | undefined"], "path": "src/plugins/discover/common/app_locator.ts", "deprecated": false, "trackAdoption": false @@ -2702,16 +2539,10 @@ "parentPluginId": "discover", "id": "def-common.DiscoverAppLocatorParams.indexPatternId", "type": "string", - "tags": [ - "deprecated" - ], + "tags": ["deprecated"], "label": "indexPatternId", - "description": [ - "\nDuplication of dataViewId" - ], - "signature": [ - "string | undefined" - ], + "description": ["\nDuplication of dataViewId"], + "signature": ["string | undefined"], "path": "src/plugins/discover/common/app_locator.ts", "deprecated": true, "trackAdoption": false, @@ -2726,7 +2557,7 @@ }, { "plugin": "exploratoryView", - "path": "x-pack/plugins/exploratory_view/public/components/shared/exploratory_view/hooks/use_discover_link.tsx" + "path": "x-pack/plugins/observability_solution/exploratory_view/public/components/shared/exploratory_view/hooks/use_discover_link.tsx" }, { "plugin": "fleet", @@ -2789,9 +2620,7 @@ "type": "Object", "tags": [], "label": "timeRange", - "description": [ - "\nOptionally set the time range in the time picker." - ], + "description": ["\nOptionally set the time range in the time picker."], "signature": [ { "pluginId": "@kbn/es-query", @@ -2812,9 +2641,7 @@ "type": "CompoundType", "tags": [], "label": "refreshInterval", - "description": [ - "\nOptionally set the refresh interval." - ], + "description": ["\nOptionally set the refresh interval."], "signature": [ "(", { @@ -2844,9 +2671,7 @@ "type": "Array", "tags": [], "label": "filters", - "description": [ - "\nOptionally apply filters." - ], + "description": ["\nOptionally apply filters."], "signature": [ { "pluginId": "@kbn/es-query", @@ -2867,9 +2692,7 @@ "type": "CompoundType", "tags": [], "label": "query", - "description": [ - "\nOptionally set a query." - ], + "description": ["\nOptionally set a query."], "signature": [ { "pluginId": "@kbn/es-query", @@ -2901,9 +2724,7 @@ "description": [ "\nIf not given, will use the uiSettings configuration for `storeInSessionStorage`. useHash determines\nwhether to hash the data in the url to avoid url length issues." ], - "signature": [ - "boolean | undefined" - ], + "signature": ["boolean | undefined"], "path": "src/plugins/discover/common/app_locator.ts", "deprecated": false, "trackAdoption": false @@ -2914,12 +2735,8 @@ "type": "string", "tags": [], "label": "searchSessionId", - "description": [ - "\nBackground search session id" - ], - "signature": [ - "string | undefined" - ], + "description": ["\nBackground search session id"], + "signature": ["string | undefined"], "path": "src/plugins/discover/common/app_locator.ts", "deprecated": false, "trackAdoption": false @@ -2930,12 +2747,8 @@ "type": "Array", "tags": [], "label": "columns", - "description": [ - "\nColumns displayed in the table" - ], - "signature": [ - "string[] | undefined" - ], + "description": ["\nColumns displayed in the table"], + "signature": ["string[] | undefined"], "path": "src/plugins/discover/common/app_locator.ts", "deprecated": false, "trackAdoption": false @@ -2946,9 +2759,7 @@ "type": "Object", "tags": [], "label": "grid", - "description": [ - "\nData Grid related state" - ], + "description": ["\nData Grid related state"], "signature": [ { "pluginId": "savedSearch", @@ -2969,12 +2780,8 @@ "type": "string", "tags": [], "label": "interval", - "description": [ - "\nUsed interval of the histogram" - ], - "signature": [ - "string | undefined" - ], + "description": ["\nUsed interval of the histogram"], + "signature": ["string | undefined"], "path": "src/plugins/discover/common/app_locator.ts", "deprecated": false, "trackAdoption": false @@ -2985,12 +2792,8 @@ "type": "Array", "tags": [], "label": "sort", - "description": [ - "\nArray of the used sorting [[field,direction],...]" - ], - "signature": [ - "string[][] | undefined" - ], + "description": ["\nArray of the used sorting [[field,direction],...]"], + "signature": ["string[][] | undefined"], "path": "src/plugins/discover/common/app_locator.ts", "deprecated": false, "trackAdoption": false @@ -3001,12 +2804,8 @@ "type": "string", "tags": [], "label": "savedQuery", - "description": [ - "\nid of the used saved query" - ], - "signature": [ - "string | undefined" - ], + "description": ["\nid of the used saved query"], + "signature": ["string | undefined"], "path": "src/plugins/discover/common/app_locator.ts", "deprecated": false, "trackAdoption": false @@ -3017,13 +2816,8 @@ "type": "CompoundType", "tags": [], "label": "viewMode", - "description": [ - "\nTable view: Documents vs Field Statistics" - ], - "signature": [ - "VIEW_MODE", - " | undefined" - ], + "description": ["\nTable view: Documents vs Field Statistics"], + "signature": ["VIEW_MODE", " | undefined"], "path": "src/plugins/discover/common/app_locator.ts", "deprecated": false, "trackAdoption": false @@ -3037,9 +2831,7 @@ "description": [ "\nHide mini distribution/preview charts when in Field Statistics mode" ], - "signature": [ - "boolean | undefined" - ], + "signature": ["boolean | undefined"], "path": "src/plugins/discover/common/app_locator.ts", "deprecated": false, "trackAdoption": false @@ -3050,12 +2842,8 @@ "type": "string", "tags": [], "label": "breakdownField", - "description": [ - "\nBreakdown field" - ], - "signature": [ - "string | undefined" - ], + "description": ["\nBreakdown field"], + "signature": ["string | undefined"], "path": "src/plugins/discover/common/app_locator.ts", "deprecated": false, "trackAdoption": false @@ -3066,12 +2854,8 @@ "type": "CompoundType", "tags": [], "label": "isAlertResults", - "description": [ - "\nUsed when navigating to particular alert results" - ], - "signature": [ - "boolean | undefined" - ], + "description": ["\nUsed when navigating to particular alert results"], + "signature": ["boolean | undefined"], "path": "src/plugins/discover/common/app_locator.ts", "deprecated": false, "trackAdoption": false @@ -3082,12 +2866,8 @@ "type": "string", "tags": [], "label": "profile", - "description": [ - "\nThe Discover profile to use" - ], - "signature": [ - "string | undefined" - ], + "description": ["\nThe Discover profile to use"], + "signature": ["string | undefined"], "path": "src/plugins/discover/common/app_locator.ts", "deprecated": false, "trackAdoption": false @@ -3136,9 +2916,7 @@ "tags": [], "label": "isAlertResults", "description": [], - "signature": [ - "boolean | undefined" - ], + "signature": ["boolean | undefined"], "path": "src/plugins/discover/common/app_locator.ts", "deprecated": false, "trackAdoption": false @@ -3156,9 +2934,7 @@ "tags": [], "label": "APP_ICON", "description": [], - "signature": [ - "\"discoverApp\"" - ], + "signature": ["\"discoverApp\""], "path": "src/plugins/discover/common/index.ts", "deprecated": false, "trackAdoption": false, @@ -3171,9 +2947,7 @@ "tags": [], "label": "DISCOVER_APP_LOCATOR", "description": [], - "signature": [ - "\"DISCOVER_APP_LOCATOR\"" - ], + "signature": ["\"DISCOVER_APP_LOCATOR\""], "path": "src/plugins/discover/common/app_locator.ts", "deprecated": false, "trackAdoption": false, @@ -3267,9 +3041,7 @@ "tags": [], "label": "PLUGIN_ID", "description": [], - "signature": [ - "\"discover\"" - ], + "signature": ["\"discover\""], "path": "src/plugins/discover/common/index.ts", "deprecated": false, "trackAdoption": false, @@ -3278,4 +3050,4 @@ ], "objects": [] } -} \ No newline at end of file +} diff --git a/api_docs/discover.mdx b/api_docs/discover.mdx index 23eae81104b89..fb580f653cc9c 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: 2024-02-19 +date: 2024-02-22 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 4d6c3e8122f9e..2d6ed2d74b239 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: 2024-02-19 +date: 2024-02-22 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 1cfc2db0a5fff..9793cd0f938f2 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: 2024-02-19 +date: 2024-02-22 tags: ['contributor', 'dev', 'apidocs', 'kibana', 'ecsDataQualityDashboard'] --- import ecsDataQualityDashboardObj from './ecs_data_quality_dashboard.devdocs.json'; diff --git a/api_docs/elastic_assistant.mdx b/api_docs/elastic_assistant.mdx index 0fbfed4697aeb..00d5b6de4a3f3 100644 --- a/api_docs/elastic_assistant.mdx +++ b/api_docs/elastic_assistant.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/elasticAssistant title: "elasticAssistant" image: https://source.unsplash.com/400x175/?github description: API docs for the elasticAssistant plugin -date: 2024-02-19 +date: 2024-02-22 tags: ['contributor', 'dev', 'apidocs', 'kibana', 'elasticAssistant'] --- import elasticAssistantObj from './elastic_assistant.devdocs.json'; diff --git a/api_docs/embeddable.mdx b/api_docs/embeddable.mdx index 2f248526309af..15cded2b7f511 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: 2024-02-19 +date: 2024-02-22 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 1542f87069a2e..9701fbffe3f4a 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: 2024-02-19 +date: 2024-02-22 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 dd77060561525..db41ca953e948 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: 2024-02-19 +date: 2024-02-22 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 6d556fe29a1f1..95c082ff590a4 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: 2024-02-19 +date: 2024-02-22 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 34da61d95fd0d..dcf30007354b1 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: 2024-02-19 +date: 2024-02-22 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 204151ac1a1ed..594c35f4a2ad8 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: 2024-02-19 +date: 2024-02-22 tags: ['contributor', 'dev', 'apidocs', 'kibana', 'eventAnnotation'] --- import eventAnnotationObj from './event_annotation.devdocs.json'; diff --git a/api_docs/event_annotation_listing.mdx b/api_docs/event_annotation_listing.mdx index 1b28ad46b42c6..1370d3c75533a 100644 --- a/api_docs/event_annotation_listing.mdx +++ b/api_docs/event_annotation_listing.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/eventAnnotationListing title: "eventAnnotationListing" image: https://source.unsplash.com/400x175/?github description: API docs for the eventAnnotationListing plugin -date: 2024-02-19 +date: 2024-02-22 tags: ['contributor', 'dev', 'apidocs', 'kibana', 'eventAnnotationListing'] --- import eventAnnotationListingObj from './event_annotation_listing.devdocs.json'; diff --git a/api_docs/event_log.mdx b/api_docs/event_log.mdx index be2ab6c1b6cdd..5980daf867311 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: 2024-02-19 +date: 2024-02-22 tags: ['contributor', 'dev', 'apidocs', 'kibana', 'eventLog'] --- import eventLogObj from './event_log.devdocs.json'; diff --git a/api_docs/exploratory_view.devdocs.json b/api_docs/exploratory_view.devdocs.json index ebe4e80cc4eca..981833aab713e 100644 --- a/api_docs/exploratory_view.devdocs.json +++ b/api_docs/exploratory_view.devdocs.json @@ -23,7 +23,7 @@ }, "; }, baseHref: string) => string" ], - "path": "x-pack/plugins/exploratory_view/public/components/shared/exploratory_view/configurations/exploratory_view_url.ts", + "path": "x-pack/plugins/observability_solution/exploratory_view/public/components/shared/exploratory_view/configurations/exploratory_view_url.ts", "deprecated": false, "trackAdoption": false, "children": [ @@ -34,7 +34,7 @@ "tags": [], "label": "{ reportType, allSeries }", "description": [], - "path": "x-pack/plugins/exploratory_view/public/components/shared/exploratory_view/configurations/exploratory_view_url.ts", + "path": "x-pack/plugins/observability_solution/exploratory_view/public/components/shared/exploratory_view/configurations/exploratory_view_url.ts", "deprecated": false, "trackAdoption": false, "children": [ @@ -48,7 +48,7 @@ "signature": [ "\"heatmap\" | \"data-distribution\" | \"kpi-over-time\" | \"core-web-vitals\" | \"device-data-distribution\" | \"single-metric\"" ], - "path": "x-pack/plugins/exploratory_view/public/components/shared/exploratory_view/configurations/exploratory_view_url.ts", + "path": "x-pack/plugins/observability_solution/exploratory_view/public/components/shared/exploratory_view/configurations/exploratory_view_url.ts", "deprecated": false, "trackAdoption": false }, @@ -69,7 +69,7 @@ }, "[]" ], - "path": "x-pack/plugins/exploratory_view/public/components/shared/exploratory_view/configurations/exploratory_view_url.ts", + "path": "x-pack/plugins/observability_solution/exploratory_view/public/components/shared/exploratory_view/configurations/exploratory_view_url.ts", "deprecated": false, "trackAdoption": false } @@ -82,10 +82,8 @@ "tags": [], "label": "baseHref", "description": [], - "signature": [ - "string" - ], - "path": "x-pack/plugins/exploratory_view/public/components/shared/exploratory_view/configurations/exploratory_view_url.ts", + "signature": ["string"], + "path": "x-pack/plugins/observability_solution/exploratory_view/public/components/shared/exploratory_view/configurations/exploratory_view_url.ts", "deprecated": false, "trackAdoption": false, "isRequired": true @@ -101,12 +99,8 @@ "tags": [], "label": "ExploratoryView", "description": [], - "signature": [ - "(props: ", - "ExploratoryViewPageProps", - ") => JSX.Element" - ], - "path": "x-pack/plugins/exploratory_view/public/components/shared/index.tsx", + "signature": ["(props: ", "ExploratoryViewPageProps", ") => JSX.Element"], + "path": "x-pack/plugins/observability_solution/exploratory_view/public/components/shared/index.tsx", "deprecated": false, "trackAdoption": false, "children": [ @@ -117,10 +111,8 @@ "tags": [], "label": "props", "description": [], - "signature": [ - "ExploratoryViewPageProps" - ], - "path": "x-pack/plugins/exploratory_view/public/components/shared/index.tsx", + "signature": ["ExploratoryViewPageProps"], + "path": "x-pack/plugins/observability_solution/exploratory_view/public/components/shared/index.tsx", "deprecated": false, "trackAdoption": false, "isRequired": true @@ -136,12 +128,8 @@ "tags": [], "label": "FilterValueLabel", "description": [], - "signature": [ - "(props: ", - "FilterValueLabelProps", - ") => JSX.Element" - ], - "path": "x-pack/plugins/exploratory_view/public/components/shared/index.tsx", + "signature": ["(props: ", "FilterValueLabelProps", ") => JSX.Element"], + "path": "x-pack/plugins/observability_solution/exploratory_view/public/components/shared/index.tsx", "deprecated": false, "trackAdoption": false, "children": [ @@ -152,10 +140,8 @@ "tags": [], "label": "props", "description": [], - "signature": [ - "FilterValueLabelProps" - ], - "path": "x-pack/plugins/exploratory_view/public/components/shared/index.tsx", + "signature": ["FilterValueLabelProps"], + "path": "x-pack/plugins/observability_solution/exploratory_view/public/components/shared/index.tsx", "deprecated": false, "trackAdoption": false, "isRequired": true @@ -171,10 +157,8 @@ "tags": [], "label": "fromQuery", "description": [], - "signature": [ - "(query: Record) => string" - ], - "path": "x-pack/plugins/exploratory_view/public/utils/url.ts", + "signature": ["(query: Record) => string"], + "path": "x-pack/plugins/observability_solution/exploratory_view/public/utils/url.ts", "deprecated": false, "trackAdoption": false, "children": [ @@ -185,10 +169,8 @@ "tags": [], "label": "query", "description": [], - "signature": [ - "Record" - ], - "path": "x-pack/plugins/exploratory_view/public/utils/url.ts", + "signature": ["Record"], + "path": "x-pack/plugins/observability_solution/exploratory_view/public/utils/url.ts", "deprecated": false, "trackAdoption": false, "isRequired": true @@ -204,12 +186,8 @@ "tags": [], "label": "SelectableUrlList", "description": [], - "signature": [ - "(props: ", - "SelectableUrlListProps", - ") => JSX.Element" - ], - "path": "x-pack/plugins/exploratory_view/public/components/shared/index.tsx", + "signature": ["(props: ", "SelectableUrlListProps", ") => JSX.Element"], + "path": "x-pack/plugins/observability_solution/exploratory_view/public/components/shared/index.tsx", "deprecated": false, "trackAdoption": false, "children": [ @@ -220,10 +198,8 @@ "tags": [], "label": "props", "description": [], - "signature": [ - "SelectableUrlListProps" - ], - "path": "x-pack/plugins/exploratory_view/public/components/shared/index.tsx", + "signature": ["SelectableUrlListProps"], + "path": "x-pack/plugins/observability_solution/exploratory_view/public/components/shared/index.tsx", "deprecated": false, "trackAdoption": false, "isRequired": true @@ -239,12 +215,8 @@ "tags": [], "label": "toQuery", "description": [], - "signature": [ - "(search: string | undefined) => ", - "ParsedQuery", - "" - ], - "path": "x-pack/plugins/exploratory_view/public/utils/url.ts", + "signature": ["(search: string | undefined) => ", "ParsedQuery", ""], + "path": "x-pack/plugins/observability_solution/exploratory_view/public/utils/url.ts", "deprecated": false, "trackAdoption": false, "children": [ @@ -255,10 +227,8 @@ "tags": [], "label": "search", "description": [], - "signature": [ - "string | undefined" - ], - "path": "x-pack/plugins/exploratory_view/public/utils/url.ts", + "signature": ["string | undefined"], + "path": "x-pack/plugins/observability_solution/exploratory_view/public/utils/url.ts", "deprecated": false, "trackAdoption": false, "isRequired": false @@ -276,7 +246,7 @@ "tags": [], "label": "ConfigProps", "description": [], - "path": "x-pack/plugins/exploratory_view/public/components/shared/exploratory_view/types.ts", + "path": "x-pack/plugins/observability_solution/exploratory_view/public/components/shared/exploratory_view/types.ts", "deprecated": false, "trackAdoption": false, "children": [ @@ -297,7 +267,7 @@ }, " | undefined" ], - "path": "x-pack/plugins/exploratory_view/public/components/shared/exploratory_view/types.ts", + "path": "x-pack/plugins/observability_solution/exploratory_view/public/components/shared/exploratory_view/types.ts", "deprecated": false, "trackAdoption": false }, @@ -318,7 +288,7 @@ }, " | undefined" ], - "path": "x-pack/plugins/exploratory_view/public/components/shared/exploratory_view/types.ts", + "path": "x-pack/plugins/observability_solution/exploratory_view/public/components/shared/exploratory_view/types.ts", "deprecated": false, "trackAdoption": false }, @@ -329,10 +299,8 @@ "tags": [], "label": "spaceId", "description": [], - "signature": [ - "string | undefined" - ], - "path": "x-pack/plugins/exploratory_view/public/components/shared/exploratory_view/types.ts", + "signature": ["string | undefined"], + "path": "x-pack/plugins/observability_solution/exploratory_view/public/components/shared/exploratory_view/types.ts", "deprecated": false, "trackAdoption": false } @@ -346,7 +314,7 @@ "tags": [], "label": "ExploratoryEmbeddableProps", "description": [], - "path": "x-pack/plugins/exploratory_view/public/components/shared/exploratory_view/embeddable/embeddable.tsx", + "path": "x-pack/plugins/observability_solution/exploratory_view/public/components/shared/exploratory_view/embeddable/embeddable.tsx", "deprecated": false, "trackAdoption": false, "children": [ @@ -357,10 +325,8 @@ "tags": [], "label": "id", "description": [], - "signature": [ - "string | undefined" - ], - "path": "x-pack/plugins/exploratory_view/public/components/shared/exploratory_view/embeddable/embeddable.tsx", + "signature": ["string | undefined"], + "path": "x-pack/plugins/observability_solution/exploratory_view/public/components/shared/exploratory_view/embeddable/embeddable.tsx", "deprecated": false, "trackAdoption": false }, @@ -371,10 +337,8 @@ "tags": [], "label": "appendTitle", "description": [], - "signature": [ - "JSX.Element | undefined" - ], - "path": "x-pack/plugins/exploratory_view/public/components/shared/exploratory_view/embeddable/embeddable.tsx", + "signature": ["JSX.Element | undefined"], + "path": "x-pack/plugins/observability_solution/exploratory_view/public/components/shared/exploratory_view/embeddable/embeddable.tsx", "deprecated": false, "trackAdoption": false }, @@ -395,7 +359,7 @@ }, "[]" ], - "path": "x-pack/plugins/exploratory_view/public/components/shared/exploratory_view/embeddable/embeddable.tsx", + "path": "x-pack/plugins/observability_solution/exploratory_view/public/components/shared/exploratory_view/embeddable/embeddable.tsx", "deprecated": false, "trackAdoption": false }, @@ -416,7 +380,7 @@ }, " | undefined" ], - "path": "x-pack/plugins/exploratory_view/public/components/shared/exploratory_view/embeddable/embeddable.tsx", + "path": "x-pack/plugins/observability_solution/exploratory_view/public/components/shared/exploratory_view/embeddable/embeddable.tsx", "deprecated": false, "trackAdoption": false }, @@ -437,7 +401,7 @@ }, " | undefined" ], - "path": "x-pack/plugins/exploratory_view/public/components/shared/exploratory_view/embeddable/embeddable.tsx", + "path": "x-pack/plugins/observability_solution/exploratory_view/public/components/shared/exploratory_view/embeddable/embeddable.tsx", "deprecated": false, "trackAdoption": false }, @@ -448,10 +412,8 @@ "tags": [], "label": "customHeight", "description": [], - "signature": [ - "string | undefined" - ], - "path": "x-pack/plugins/exploratory_view/public/components/shared/exploratory_view/embeddable/embeddable.tsx", + "signature": ["string | undefined"], + "path": "x-pack/plugins/observability_solution/exploratory_view/public/components/shared/exploratory_view/embeddable/embeddable.tsx", "deprecated": false, "trackAdoption": false }, @@ -462,10 +424,8 @@ "tags": [], "label": "customTimeRange", "description": [], - "signature": [ - "{ from: string; to: string; } | undefined" - ], - "path": "x-pack/plugins/exploratory_view/public/components/shared/exploratory_view/embeddable/embeddable.tsx", + "signature": ["{ from: string; to: string; } | undefined"], + "path": "x-pack/plugins/observability_solution/exploratory_view/public/components/shared/exploratory_view/embeddable/embeddable.tsx", "deprecated": false, "trackAdoption": false }, @@ -476,12 +436,8 @@ "tags": [], "label": "dataTypesIndexPatterns", "description": [], - "signature": [ - "Partial> | undefined" - ], - "path": "x-pack/plugins/exploratory_view/public/components/shared/exploratory_view/embeddable/embeddable.tsx", + "signature": ["Partial> | undefined"], + "path": "x-pack/plugins/observability_solution/exploratory_view/public/components/shared/exploratory_view/embeddable/embeddable.tsx", "deprecated": false, "trackAdoption": false }, @@ -492,10 +448,8 @@ "tags": [], "label": "isSingleMetric", "description": [], - "signature": [ - "boolean | undefined" - ], - "path": "x-pack/plugins/exploratory_view/public/components/shared/exploratory_view/embeddable/embeddable.tsx", + "signature": ["boolean | undefined"], + "path": "x-pack/plugins/observability_solution/exploratory_view/public/components/shared/exploratory_view/embeddable/embeddable.tsx", "deprecated": false, "trackAdoption": false }, @@ -506,10 +460,8 @@ "tags": [], "label": "legendIsVisible", "description": [], - "signature": [ - "boolean | undefined" - ], - "path": "x-pack/plugins/exploratory_view/public/components/shared/exploratory_view/embeddable/embeddable.tsx", + "signature": ["boolean | undefined"], + "path": "x-pack/plugins/observability_solution/exploratory_view/public/components/shared/exploratory_view/embeddable/embeddable.tsx", "deprecated": false, "trackAdoption": false }, @@ -520,11 +472,8 @@ "tags": [], "label": "legendPosition", "description": [], - "signature": [ - "Position", - " | undefined" - ], - "path": "x-pack/plugins/exploratory_view/public/components/shared/exploratory_view/embeddable/embeddable.tsx", + "signature": ["Position", " | undefined"], + "path": "x-pack/plugins/observability_solution/exploratory_view/public/components/shared/exploratory_view/embeddable/embeddable.tsx", "deprecated": false, "trackAdoption": false }, @@ -535,10 +484,8 @@ "tags": [], "label": "hideTicks", "description": [], - "signature": [ - "boolean | undefined" - ], - "path": "x-pack/plugins/exploratory_view/public/components/shared/exploratory_view/embeddable/embeddable.tsx", + "signature": ["boolean | undefined"], + "path": "x-pack/plugins/observability_solution/exploratory_view/public/components/shared/exploratory_view/embeddable/embeddable.tsx", "deprecated": false, "trackAdoption": false }, @@ -549,10 +496,8 @@ "tags": [], "label": "onBrushEnd", "description": [], - "signature": [ - "((param: { range: number[]; }) => void) | undefined" - ], - "path": "x-pack/plugins/exploratory_view/public/components/shared/exploratory_view/embeddable/embeddable.tsx", + "signature": ["((param: { range: number[]; }) => void) | undefined"], + "path": "x-pack/plugins/observability_solution/exploratory_view/public/components/shared/exploratory_view/embeddable/embeddable.tsx", "deprecated": false, "trackAdoption": false, "children": [ @@ -563,7 +508,7 @@ "tags": [], "label": "param", "description": [], - "path": "x-pack/plugins/exploratory_view/public/components/shared/exploratory_view/embeddable/embeddable.tsx", + "path": "x-pack/plugins/observability_solution/exploratory_view/public/components/shared/exploratory_view/embeddable/embeddable.tsx", "deprecated": false, "trackAdoption": false, "children": [ @@ -574,10 +519,8 @@ "tags": [], "label": "range", "description": [], - "signature": [ - "number[]" - ], - "path": "x-pack/plugins/exploratory_view/public/components/shared/exploratory_view/embeddable/embeddable.tsx", + "signature": ["number[]"], + "path": "x-pack/plugins/observability_solution/exploratory_view/public/components/shared/exploratory_view/embeddable/embeddable.tsx", "deprecated": false, "trackAdoption": false } @@ -593,10 +536,8 @@ "tags": [], "label": "onLoad", "description": [], - "signature": [ - "((loading: boolean) => void) | undefined" - ], - "path": "x-pack/plugins/exploratory_view/public/components/shared/exploratory_view/embeddable/embeddable.tsx", + "signature": ["((loading: boolean) => void) | undefined"], + "path": "x-pack/plugins/observability_solution/exploratory_view/public/components/shared/exploratory_view/embeddable/embeddable.tsx", "deprecated": false, "trackAdoption": false, "children": [ @@ -607,10 +548,8 @@ "tags": [], "label": "loading", "description": [], - "signature": [ - "boolean" - ], - "path": "x-pack/plugins/exploratory_view/public/components/shared/exploratory_view/embeddable/embeddable.tsx", + "signature": ["boolean"], + "path": "x-pack/plugins/observability_solution/exploratory_view/public/components/shared/exploratory_view/embeddable/embeddable.tsx", "deprecated": false, "trackAdoption": false, "isRequired": true @@ -625,10 +564,8 @@ "tags": [], "label": "caseOwner", "description": [], - "signature": [ - "string | undefined" - ], - "path": "x-pack/plugins/exploratory_view/public/components/shared/exploratory_view/embeddable/embeddable.tsx", + "signature": ["string | undefined"], + "path": "x-pack/plugins/observability_solution/exploratory_view/public/components/shared/exploratory_view/embeddable/embeddable.tsx", "deprecated": false, "trackAdoption": false }, @@ -639,11 +576,8 @@ "tags": [], "label": "reportConfigMap", "description": [], - "signature": [ - "ReportConfigMap", - " | undefined" - ], - "path": "x-pack/plugins/exploratory_view/public/components/shared/exploratory_view/embeddable/embeddable.tsx", + "signature": ["ReportConfigMap", " | undefined"], + "path": "x-pack/plugins/observability_solution/exploratory_view/public/components/shared/exploratory_view/embeddable/embeddable.tsx", "deprecated": false, "trackAdoption": false }, @@ -657,7 +591,7 @@ "signature": [ "\"heatmap\" | \"data-distribution\" | \"kpi-over-time\" | \"core-web-vitals\" | \"device-data-distribution\" | \"single-metric\"" ], - "path": "x-pack/plugins/exploratory_view/public/components/shared/exploratory_view/embeddable/embeddable.tsx", + "path": "x-pack/plugins/observability_solution/exploratory_view/public/components/shared/exploratory_view/embeddable/embeddable.tsx", "deprecated": false, "trackAdoption": false }, @@ -668,10 +602,8 @@ "tags": [], "label": "showCalculationMethod", "description": [], - "signature": [ - "boolean | undefined" - ], - "path": "x-pack/plugins/exploratory_view/public/components/shared/exploratory_view/embeddable/embeddable.tsx", + "signature": ["boolean | undefined"], + "path": "x-pack/plugins/observability_solution/exploratory_view/public/components/shared/exploratory_view/embeddable/embeddable.tsx", "deprecated": false, "trackAdoption": false }, @@ -682,10 +614,8 @@ "tags": [], "label": "title", "description": [], - "signature": [ - "string | JSX.Element | undefined" - ], - "path": "x-pack/plugins/exploratory_view/public/components/shared/exploratory_view/embeddable/embeddable.tsx", + "signature": ["string | JSX.Element | undefined"], + "path": "x-pack/plugins/observability_solution/exploratory_view/public/components/shared/exploratory_view/embeddable/embeddable.tsx", "deprecated": false, "trackAdoption": false }, @@ -696,12 +626,8 @@ "tags": [], "label": "withActions", "description": [], - "signature": [ - "boolean | ", - "ActionTypes", - "[] | undefined" - ], - "path": "x-pack/plugins/exploratory_view/public/components/shared/exploratory_view/embeddable/embeddable.tsx", + "signature": ["boolean | ", "ActionTypes", "[] | undefined"], + "path": "x-pack/plugins/observability_solution/exploratory_view/public/components/shared/exploratory_view/embeddable/embeddable.tsx", "deprecated": false, "trackAdoption": false }, @@ -712,10 +638,8 @@ "tags": [], "label": "align", "description": [], - "signature": [ - "\"right\" | \"left\" | \"center\" | undefined" - ], - "path": "x-pack/plugins/exploratory_view/public/components/shared/exploratory_view/embeddable/embeddable.tsx", + "signature": ["\"right\" | \"left\" | \"center\" | undefined"], + "path": "x-pack/plugins/observability_solution/exploratory_view/public/components/shared/exploratory_view/embeddable/embeddable.tsx", "deprecated": false, "trackAdoption": false }, @@ -726,10 +650,8 @@ "tags": [], "label": "sparklineMode", "description": [], - "signature": [ - "boolean | undefined" - ], - "path": "x-pack/plugins/exploratory_view/public/components/shared/exploratory_view/embeddable/embeddable.tsx", + "signature": ["boolean | undefined"], + "path": "x-pack/plugins/observability_solution/exploratory_view/public/components/shared/exploratory_view/embeddable/embeddable.tsx", "deprecated": false, "trackAdoption": false }, @@ -740,10 +662,8 @@ "tags": [], "label": "noLabel", "description": [], - "signature": [ - "boolean | undefined" - ], - "path": "x-pack/plugins/exploratory_view/public/components/shared/exploratory_view/embeddable/embeddable.tsx", + "signature": ["boolean | undefined"], + "path": "x-pack/plugins/observability_solution/exploratory_view/public/components/shared/exploratory_view/embeddable/embeddable.tsx", "deprecated": false, "trackAdoption": false }, @@ -754,10 +674,8 @@ "tags": [], "label": "fontSize", "description": [], - "signature": [ - "number | undefined" - ], - "path": "x-pack/plugins/exploratory_view/public/components/shared/exploratory_view/embeddable/embeddable.tsx", + "signature": ["number | undefined"], + "path": "x-pack/plugins/observability_solution/exploratory_view/public/components/shared/exploratory_view/embeddable/embeddable.tsx", "deprecated": false, "trackAdoption": false }, @@ -768,10 +686,8 @@ "tags": [], "label": "lineHeight", "description": [], - "signature": [ - "number | undefined" - ], - "path": "x-pack/plugins/exploratory_view/public/components/shared/exploratory_view/embeddable/embeddable.tsx", + "signature": ["number | undefined"], + "path": "x-pack/plugins/observability_solution/exploratory_view/public/components/shared/exploratory_view/embeddable/embeddable.tsx", "deprecated": false, "trackAdoption": false }, @@ -782,10 +698,8 @@ "tags": [], "label": "dataTestSubj", "description": [], - "signature": [ - "string | undefined" - ], - "path": "x-pack/plugins/exploratory_view/public/components/shared/exploratory_view/embeddable/embeddable.tsx", + "signature": ["string | undefined"], + "path": "x-pack/plugins/observability_solution/exploratory_view/public/components/shared/exploratory_view/embeddable/embeddable.tsx", "deprecated": false, "trackAdoption": false }, @@ -796,10 +710,8 @@ "tags": [], "label": "searchSessionId", "description": [], - "signature": [ - "string | undefined" - ], - "path": "x-pack/plugins/exploratory_view/public/components/shared/exploratory_view/embeddable/embeddable.tsx", + "signature": ["string | undefined"], + "path": "x-pack/plugins/observability_solution/exploratory_view/public/components/shared/exploratory_view/embeddable/embeddable.tsx", "deprecated": false, "trackAdoption": false } @@ -813,7 +725,7 @@ "tags": [], "label": "ExploratoryViewPublicPluginsSetup", "description": [], - "path": "x-pack/plugins/exploratory_view/public/plugin.ts", + "path": "x-pack/plugins/observability_solution/exploratory_view/public/plugin.ts", "deprecated": false, "trackAdoption": false, "children": [ @@ -833,7 +745,7 @@ "text": "DataPublicPluginSetup" } ], - "path": "x-pack/plugins/exploratory_view/public/plugin.ts", + "path": "x-pack/plugins/observability_solution/exploratory_view/public/plugin.ts", "deprecated": false, "trackAdoption": false }, @@ -881,7 +793,7 @@ }, ") => void; }" ], - "path": "x-pack/plugins/exploratory_view/public/plugin.ts", + "path": "x-pack/plugins/observability_solution/exploratory_view/public/plugin.ts", "deprecated": false, "trackAdoption": false }, @@ -901,7 +813,7 @@ "text": "TriggersAndActionsUIPublicPluginSetup" } ], - "path": "x-pack/plugins/exploratory_view/public/plugin.ts", + "path": "x-pack/plugins/observability_solution/exploratory_view/public/plugin.ts", "deprecated": false, "trackAdoption": false }, @@ -921,7 +833,7 @@ "text": "UsageCollectionSetup" } ], - "path": "x-pack/plugins/exploratory_view/public/plugin.ts", + "path": "x-pack/plugins/observability_solution/exploratory_view/public/plugin.ts", "deprecated": false, "trackAdoption": false }, @@ -942,7 +854,7 @@ }, " | undefined" ], - "path": "x-pack/plugins/exploratory_view/public/plugin.ts", + "path": "x-pack/plugins/observability_solution/exploratory_view/public/plugin.ts", "deprecated": false, "trackAdoption": false } @@ -956,7 +868,7 @@ "tags": [], "label": "ExploratoryViewPublicPluginsStart", "description": [], - "path": "x-pack/plugins/exploratory_view/public/plugin.ts", + "path": "x-pack/plugins/observability_solution/exploratory_view/public/plugin.ts", "deprecated": false, "trackAdoption": false, "children": [ @@ -976,7 +888,7 @@ "text": "CasesUiStart" } ], - "path": "x-pack/plugins/exploratory_view/public/plugin.ts", + "path": "x-pack/plugins/observability_solution/exploratory_view/public/plugin.ts", "deprecated": false, "trackAdoption": false }, @@ -999,7 +911,7 @@ "ActiveCursor", "; }" ], - "path": "x-pack/plugins/exploratory_view/public/plugin.ts", + "path": "x-pack/plugins/observability_solution/exploratory_view/public/plugin.ts", "deprecated": false, "trackAdoption": false }, @@ -1019,7 +931,7 @@ "text": "DataPublicPluginStart" } ], - "path": "x-pack/plugins/exploratory_view/public/plugin.ts", + "path": "x-pack/plugins/observability_solution/exploratory_view/public/plugin.ts", "deprecated": false, "trackAdoption": false }, @@ -1039,7 +951,7 @@ "text": "DataViewsServicePublic" } ], - "path": "x-pack/plugins/exploratory_view/public/plugin.ts", + "path": "x-pack/plugins/observability_solution/exploratory_view/public/plugin.ts", "deprecated": false, "trackAdoption": false }, @@ -1059,7 +971,7 @@ "text": "DiscoverStart" } ], - "path": "x-pack/plugins/exploratory_view/public/plugin.ts", + "path": "x-pack/plugins/observability_solution/exploratory_view/public/plugin.ts", "deprecated": false, "trackAdoption": false }, @@ -1079,7 +991,7 @@ "text": "EmbeddableStart" } ], - "path": "x-pack/plugins/exploratory_view/public/plugin.ts", + "path": "x-pack/plugins/observability_solution/exploratory_view/public/plugin.ts", "deprecated": false, "trackAdoption": false }, @@ -1099,7 +1011,7 @@ "text": "LensPublicStart" } ], - "path": "x-pack/plugins/exploratory_view/public/plugin.ts", + "path": "x-pack/plugins/observability_solution/exploratory_view/public/plugin.ts", "deprecated": false, "trackAdoption": false }, @@ -1119,7 +1031,7 @@ "text": "LicensingPluginStart" } ], - "path": "x-pack/plugins/exploratory_view/public/plugin.ts", + "path": "x-pack/plugins/observability_solution/exploratory_view/public/plugin.ts", "deprecated": false, "trackAdoption": false }, @@ -1163,7 +1075,7 @@ }, ">; }) => void; setIsSidebarEnabled: (isEnabled: boolean) => void; }" ], - "path": "x-pack/plugins/exploratory_view/public/plugin.ts", + "path": "x-pack/plugins/observability_solution/exploratory_view/public/plugin.ts", "deprecated": false, "trackAdoption": false }, @@ -1183,7 +1095,7 @@ "text": "SecurityPluginStart" } ], - "path": "x-pack/plugins/exploratory_view/public/plugin.ts", + "path": "x-pack/plugins/observability_solution/exploratory_view/public/plugin.ts", "deprecated": false, "trackAdoption": false }, @@ -1223,7 +1135,7 @@ }, ">): void; }" ], - "path": "x-pack/plugins/exploratory_view/public/plugin.ts", + "path": "x-pack/plugins/observability_solution/exploratory_view/public/plugin.ts", "deprecated": false, "trackAdoption": false }, @@ -1244,7 +1156,7 @@ }, " | undefined" ], - "path": "x-pack/plugins/exploratory_view/public/plugin.ts", + "path": "x-pack/plugins/observability_solution/exploratory_view/public/plugin.ts", "deprecated": false, "trackAdoption": false }, @@ -1264,7 +1176,7 @@ "text": "TriggersAndActionsUIPublicPluginStart" } ], - "path": "x-pack/plugins/exploratory_view/public/plugin.ts", + "path": "x-pack/plugins/observability_solution/exploratory_view/public/plugin.ts", "deprecated": false, "trackAdoption": false }, @@ -1284,7 +1196,7 @@ "text": "UsageCollectionSetup" } ], - "path": "x-pack/plugins/exploratory_view/public/plugin.ts", + "path": "x-pack/plugins/observability_solution/exploratory_view/public/plugin.ts", "deprecated": false, "trackAdoption": false }, @@ -1304,7 +1216,7 @@ "text": "UnifiedSearchPublicPluginStart" } ], - "path": "x-pack/plugins/exploratory_view/public/plugin.ts", + "path": "x-pack/plugins/observability_solution/exploratory_view/public/plugin.ts", "deprecated": false, "trackAdoption": false }, @@ -1325,7 +1237,7 @@ }, " | undefined" ], - "path": "x-pack/plugins/exploratory_view/public/plugin.ts", + "path": "x-pack/plugins/observability_solution/exploratory_view/public/plugin.ts", "deprecated": false, "trackAdoption": false }, @@ -1345,7 +1257,7 @@ "text": "ObservabilityAIAssistantPluginStart" } ], - "path": "x-pack/plugins/exploratory_view/public/plugin.ts", + "path": "x-pack/plugins/observability_solution/exploratory_view/public/plugin.ts", "deprecated": false, "trackAdoption": false } @@ -1359,7 +1271,7 @@ "tags": [], "label": "SeriesConfig", "description": [], - "path": "x-pack/plugins/exploratory_view/public/components/shared/exploratory_view/types.ts", + "path": "x-pack/plugins/observability_solution/exploratory_view/public/components/shared/exploratory_view/types.ts", "deprecated": false, "trackAdoption": false, "children": [ @@ -1370,7 +1282,7 @@ "tags": [], "label": "reportType", "description": [], - "path": "x-pack/plugins/exploratory_view/public/components/shared/exploratory_view/types.ts", + "path": "x-pack/plugins/observability_solution/exploratory_view/public/components/shared/exploratory_view/types.ts", "deprecated": false, "trackAdoption": false }, @@ -1400,7 +1312,7 @@ }, ">" ], - "path": "x-pack/plugins/exploratory_view/public/components/shared/exploratory_view/types.ts", + "path": "x-pack/plugins/observability_solution/exploratory_view/public/components/shared/exploratory_view/types.ts", "deprecated": false, "trackAdoption": false }, @@ -1422,7 +1334,7 @@ }, ">[]" ], - "path": "x-pack/plugins/exploratory_view/public/components/shared/exploratory_view/types.ts", + "path": "x-pack/plugins/observability_solution/exploratory_view/public/components/shared/exploratory_view/types.ts", "deprecated": false, "trackAdoption": false }, @@ -1433,10 +1345,8 @@ "tags": [], "label": "breakdownFields", "description": [], - "signature": [ - "string[]" - ], - "path": "x-pack/plugins/exploratory_view/public/components/shared/exploratory_view/types.ts", + "signature": ["string[]"], + "path": "x-pack/plugins/observability_solution/exploratory_view/public/components/shared/exploratory_view/types.ts", "deprecated": false, "trackAdoption": false }, @@ -1450,7 +1360,7 @@ "signature": [ "\"area\" | \"line\" | \"bar\" | \"bar_stacked\" | \"area_stacked\" | \"bar_horizontal\" | \"bar_percentage_stacked\" | \"bar_horizontal_stacked\" | \"area_percentage_stacked\" | \"bar_horizontal_percentage_stacked\"" ], - "path": "x-pack/plugins/exploratory_view/public/components/shared/exploratory_view/types.ts", + "path": "x-pack/plugins/observability_solution/exploratory_view/public/components/shared/exploratory_view/types.ts", "deprecated": false, "trackAdoption": false }, @@ -1464,7 +1374,7 @@ "signature": [ "(string | { field: string; nested?: string | undefined; isNegated?: boolean | undefined; })[]" ], - "path": "x-pack/plugins/exploratory_view/public/components/shared/exploratory_view/types.ts", + "path": "x-pack/plugins/observability_solution/exploratory_view/public/components/shared/exploratory_view/types.ts", "deprecated": false, "trackAdoption": false }, @@ -1485,7 +1395,7 @@ }, "[]" ], - "path": "x-pack/plugins/exploratory_view/public/components/shared/exploratory_view/types.ts", + "path": "x-pack/plugins/observability_solution/exploratory_view/public/components/shared/exploratory_view/types.ts", "deprecated": false, "trackAdoption": false }, @@ -1523,7 +1433,7 @@ }, ")[] | undefined" ], - "path": "x-pack/plugins/exploratory_view/public/components/shared/exploratory_view/types.ts", + "path": "x-pack/plugins/observability_solution/exploratory_view/public/components/shared/exploratory_view/types.ts", "deprecated": false, "trackAdoption": false }, @@ -1561,7 +1471,7 @@ }, ")[] | undefined; })[]" ], - "path": "x-pack/plugins/exploratory_view/public/components/shared/exploratory_view/types.ts", + "path": "x-pack/plugins/observability_solution/exploratory_view/public/components/shared/exploratory_view/types.ts", "deprecated": false, "trackAdoption": false }, @@ -1572,10 +1482,8 @@ "tags": [], "label": "textDefinitionFields", "description": [], - "signature": [ - "string[] | undefined" - ], - "path": "x-pack/plugins/exploratory_view/public/components/shared/exploratory_view/types.ts", + "signature": ["string[] | undefined"], + "path": "x-pack/plugins/observability_solution/exploratory_view/public/components/shared/exploratory_view/types.ts", "deprecated": false, "trackAdoption": false }, @@ -1593,7 +1501,7 @@ "MetricOption", "[]; columnType?: string | undefined; })[] | undefined" ], - "path": "x-pack/plugins/exploratory_view/public/components/shared/exploratory_view/types.ts", + "path": "x-pack/plugins/observability_solution/exploratory_view/public/components/shared/exploratory_view/types.ts", "deprecated": false, "trackAdoption": false }, @@ -1604,10 +1512,8 @@ "tags": [], "label": "labels", "description": [], - "signature": [ - "{ [x: string]: string; }" - ], - "path": "x-pack/plugins/exploratory_view/public/components/shared/exploratory_view/types.ts", + "signature": ["{ [x: string]: string; }"], + "path": "x-pack/plugins/observability_solution/exploratory_view/public/components/shared/exploratory_view/types.ts", "deprecated": false, "trackAdoption": false }, @@ -1618,7 +1524,7 @@ "tags": [], "label": "hasOperationType", "description": [], - "path": "x-pack/plugins/exploratory_view/public/components/shared/exploratory_view/types.ts", + "path": "x-pack/plugins/observability_solution/exploratory_view/public/components/shared/exploratory_view/types.ts", "deprecated": false, "trackAdoption": false }, @@ -1639,7 +1545,7 @@ }, "<{ [key: string]: unknown; }> | undefined" ], - "path": "x-pack/plugins/exploratory_view/public/components/shared/exploratory_view/types.ts", + "path": "x-pack/plugins/observability_solution/exploratory_view/public/components/shared/exploratory_view/types.ts", "deprecated": false, "trackAdoption": false }, @@ -1650,10 +1556,8 @@ "tags": [], "label": "yTitle", "description": [], - "signature": [ - "string | undefined" - ], - "path": "x-pack/plugins/exploratory_view/public/components/shared/exploratory_view/types.ts", + "signature": ["string | undefined"], + "path": "x-pack/plugins/observability_solution/exploratory_view/public/components/shared/exploratory_view/types.ts", "deprecated": false, "trackAdoption": false }, @@ -1674,7 +1578,7 @@ }, "[] | undefined" ], - "path": "x-pack/plugins/exploratory_view/public/components/shared/exploratory_view/types.ts", + "path": "x-pack/plugins/observability_solution/exploratory_view/public/components/shared/exploratory_view/types.ts", "deprecated": false, "trackAdoption": false }, @@ -1685,10 +1589,8 @@ "tags": [], "label": "query", "description": [], - "signature": [ - "{ query: string; language: \"kuery\"; } | undefined" - ], - "path": "x-pack/plugins/exploratory_view/public/components/shared/exploratory_view/types.ts", + "signature": ["{ query: string; language: \"kuery\"; } | undefined"], + "path": "x-pack/plugins/observability_solution/exploratory_view/public/components/shared/exploratory_view/types.ts", "deprecated": false, "trackAdoption": false } @@ -1702,7 +1604,7 @@ "tags": [], "label": "SeriesUrl", "description": [], - "path": "x-pack/plugins/exploratory_view/public/components/shared/exploratory_view/types.ts", + "path": "x-pack/plugins/observability_solution/exploratory_view/public/components/shared/exploratory_view/types.ts", "deprecated": false, "trackAdoption": false, "children": [ @@ -1713,7 +1615,7 @@ "tags": [], "label": "name", "description": [], - "path": "x-pack/plugins/exploratory_view/public/components/shared/exploratory_view/types.ts", + "path": "x-pack/plugins/observability_solution/exploratory_view/public/components/shared/exploratory_view/types.ts", "deprecated": false, "trackAdoption": false }, @@ -1724,10 +1626,8 @@ "tags": [], "label": "time", "description": [], - "signature": [ - "{ to: string; from: string; }" - ], - "path": "x-pack/plugins/exploratory_view/public/components/shared/exploratory_view/types.ts", + "signature": ["{ to: string; from: string; }"], + "path": "x-pack/plugins/observability_solution/exploratory_view/public/components/shared/exploratory_view/types.ts", "deprecated": false, "trackAdoption": false }, @@ -1738,10 +1638,8 @@ "tags": [], "label": "breakdown", "description": [], - "signature": [ - "string | undefined" - ], - "path": "x-pack/plugins/exploratory_view/public/components/shared/exploratory_view/types.ts", + "signature": ["string | undefined"], + "path": "x-pack/plugins/observability_solution/exploratory_view/public/components/shared/exploratory_view/types.ts", "deprecated": false, "trackAdoption": false }, @@ -1762,7 +1660,7 @@ }, "[] | undefined" ], - "path": "x-pack/plugins/exploratory_view/public/components/shared/exploratory_view/types.ts", + "path": "x-pack/plugins/observability_solution/exploratory_view/public/components/shared/exploratory_view/types.ts", "deprecated": false, "trackAdoption": false }, @@ -1783,7 +1681,7 @@ }, " | undefined" ], - "path": "x-pack/plugins/exploratory_view/public/components/shared/exploratory_view/types.ts", + "path": "x-pack/plugins/observability_solution/exploratory_view/public/components/shared/exploratory_view/types.ts", "deprecated": false, "trackAdoption": false }, @@ -1794,10 +1692,8 @@ "tags": [], "label": "operationType", "description": [], - "signature": [ - "string | undefined" - ], - "path": "x-pack/plugins/exploratory_view/public/components/shared/exploratory_view/types.ts", + "signature": ["string | undefined"], + "path": "x-pack/plugins/observability_solution/exploratory_view/public/components/shared/exploratory_view/types.ts", "deprecated": false, "trackAdoption": false }, @@ -1811,7 +1707,7 @@ "signature": [ "\"uptime\" | \"alerts\" | \"synthetics\" | \"ux\" | \"infra_logs\" | \"infra_metrics\" | \"apm\" | \"mobile\"" ], - "path": "x-pack/plugins/exploratory_view/public/components/shared/exploratory_view/types.ts", + "path": "x-pack/plugins/observability_solution/exploratory_view/public/components/shared/exploratory_view/types.ts", "deprecated": false, "trackAdoption": false }, @@ -1822,11 +1718,8 @@ "tags": [], "label": "reportDefinitions", "description": [], - "signature": [ - "URLReportDefinition", - " | undefined" - ], - "path": "x-pack/plugins/exploratory_view/public/components/shared/exploratory_view/types.ts", + "signature": ["URLReportDefinition", " | undefined"], + "path": "x-pack/plugins/observability_solution/exploratory_view/public/components/shared/exploratory_view/types.ts", "deprecated": false, "trackAdoption": false }, @@ -1837,11 +1730,8 @@ "tags": [], "label": "textReportDefinitions", "description": [], - "signature": [ - "URLTextReportDefinition", - " | undefined" - ], - "path": "x-pack/plugins/exploratory_view/public/components/shared/exploratory_view/types.ts", + "signature": ["URLTextReportDefinition", " | undefined"], + "path": "x-pack/plugins/observability_solution/exploratory_view/public/components/shared/exploratory_view/types.ts", "deprecated": false, "trackAdoption": false }, @@ -1852,10 +1742,8 @@ "tags": [], "label": "selectedMetricField", "description": [], - "signature": [ - "string | undefined" - ], - "path": "x-pack/plugins/exploratory_view/public/components/shared/exploratory_view/types.ts", + "signature": ["string | undefined"], + "path": "x-pack/plugins/observability_solution/exploratory_view/public/components/shared/exploratory_view/types.ts", "deprecated": false, "trackAdoption": false }, @@ -1866,10 +1754,8 @@ "tags": [], "label": "hidden", "description": [], - "signature": [ - "boolean | undefined" - ], - "path": "x-pack/plugins/exploratory_view/public/components/shared/exploratory_view/types.ts", + "signature": ["boolean | undefined"], + "path": "x-pack/plugins/observability_solution/exploratory_view/public/components/shared/exploratory_view/types.ts", "deprecated": false, "trackAdoption": false }, @@ -1880,10 +1766,8 @@ "tags": [], "label": "showPercentileAnnotations", "description": [], - "signature": [ - "boolean | undefined" - ], - "path": "x-pack/plugins/exploratory_view/public/components/shared/exploratory_view/types.ts", + "signature": ["boolean | undefined"], + "path": "x-pack/plugins/observability_solution/exploratory_view/public/components/shared/exploratory_view/types.ts", "deprecated": false, "trackAdoption": false }, @@ -1894,10 +1778,8 @@ "tags": [], "label": "color", "description": [], - "signature": [ - "string | undefined" - ], - "path": "x-pack/plugins/exploratory_view/public/components/shared/exploratory_view/types.ts", + "signature": ["string | undefined"], + "path": "x-pack/plugins/observability_solution/exploratory_view/public/components/shared/exploratory_view/types.ts", "deprecated": false, "trackAdoption": false } @@ -1911,7 +1793,7 @@ "tags": [], "label": "UrlFilter", "description": [], - "path": "x-pack/plugins/exploratory_view/public/components/shared/exploratory_view/types.ts", + "path": "x-pack/plugins/observability_solution/exploratory_view/public/components/shared/exploratory_view/types.ts", "deprecated": false, "trackAdoption": false, "children": [ @@ -1922,7 +1804,7 @@ "tags": [], "label": "field", "description": [], - "path": "x-pack/plugins/exploratory_view/public/components/shared/exploratory_view/types.ts", + "path": "x-pack/plugins/observability_solution/exploratory_view/public/components/shared/exploratory_view/types.ts", "deprecated": false, "trackAdoption": false }, @@ -1933,10 +1815,8 @@ "tags": [], "label": "values", "description": [], - "signature": [ - "(string | number)[] | undefined" - ], - "path": "x-pack/plugins/exploratory_view/public/components/shared/exploratory_view/types.ts", + "signature": ["(string | number)[] | undefined"], + "path": "x-pack/plugins/observability_solution/exploratory_view/public/components/shared/exploratory_view/types.ts", "deprecated": false, "trackAdoption": false }, @@ -1947,10 +1827,8 @@ "tags": [], "label": "notValues", "description": [], - "signature": [ - "(string | number)[] | undefined" - ], - "path": "x-pack/plugins/exploratory_view/public/components/shared/exploratory_view/types.ts", + "signature": ["(string | number)[] | undefined"], + "path": "x-pack/plugins/observability_solution/exploratory_view/public/components/shared/exploratory_view/types.ts", "deprecated": false, "trackAdoption": false }, @@ -1961,10 +1839,8 @@ "tags": [], "label": "wildcards", "description": [], - "signature": [ - "string[] | undefined" - ], - "path": "x-pack/plugins/exploratory_view/public/components/shared/exploratory_view/types.ts", + "signature": ["string[] | undefined"], + "path": "x-pack/plugins/observability_solution/exploratory_view/public/components/shared/exploratory_view/types.ts", "deprecated": false, "trackAdoption": false }, @@ -1975,10 +1851,8 @@ "tags": [], "label": "notWildcards", "description": [], - "signature": [ - "string[] | undefined" - ], - "path": "x-pack/plugins/exploratory_view/public/components/shared/exploratory_view/types.ts", + "signature": ["string[] | undefined"], + "path": "x-pack/plugins/observability_solution/exploratory_view/public/components/shared/exploratory_view/types.ts", "deprecated": false, "trackAdoption": false } @@ -1994,7 +1868,7 @@ "tags": [], "label": "ReportTypes", "description": [], - "path": "x-pack/plugins/exploratory_view/public/components/shared/exploratory_view/configurations/constants/constants.ts", + "path": "x-pack/plugins/observability_solution/exploratory_view/public/components/shared/exploratory_view/configurations/constants/constants.ts", "deprecated": false, "trackAdoption": false, "initialIsOpen": false @@ -2008,10 +1882,8 @@ "tags": [], "label": "ALL_VALUES_SELECTED", "description": [], - "signature": [ - "\"ALL_VALUES\"" - ], - "path": "x-pack/plugins/exploratory_view/public/components/shared/exploratory_view/configurations/constants/url_constants.ts", + "signature": ["\"ALL_VALUES\""], + "path": "x-pack/plugins/observability_solution/exploratory_view/public/components/shared/exploratory_view/configurations/constants/url_constants.ts", "deprecated": false, "trackAdoption": false, "initialIsOpen": false @@ -2033,7 +1905,7 @@ }, "[]" ], - "path": "x-pack/plugins/exploratory_view/public/components/shared/exploratory_view/hooks/use_series_storage.tsx", + "path": "x-pack/plugins/observability_solution/exploratory_view/public/components/shared/exploratory_view/hooks/use_series_storage.tsx", "deprecated": false, "trackAdoption": false, "initialIsOpen": false @@ -2045,10 +1917,8 @@ "tags": [], "label": "APP_ROUTE", "description": [], - "signature": [ - "\"/app/exploratory-view\"" - ], - "path": "x-pack/plugins/exploratory_view/public/constants.ts", + "signature": ["\"/app/exploratory-view\""], + "path": "x-pack/plugins/observability_solution/exploratory_view/public/constants.ts", "deprecated": false, "trackAdoption": false, "initialIsOpen": false @@ -2060,10 +1930,8 @@ "tags": [], "label": "ENVIRONMENT_ALL", "description": [], - "signature": [ - "\"ENVIRONMENT_ALL\"" - ], - "path": "x-pack/plugins/exploratory_view/public/components/shared/exploratory_view/configurations/constants/constants.ts", + "signature": ["\"ENVIRONMENT_ALL\""], + "path": "x-pack/plugins/observability_solution/exploratory_view/public/components/shared/exploratory_view/configurations/constants/constants.ts", "deprecated": false, "trackAdoption": false, "initialIsOpen": false @@ -2075,10 +1943,8 @@ "tags": [], "label": "FILTER_RECORDS", "description": [], - "signature": [ - "\"FILTER_RECORDS\"" - ], - "path": "x-pack/plugins/exploratory_view/public/components/shared/exploratory_view/configurations/constants/constants.ts", + "signature": ["\"FILTER_RECORDS\""], + "path": "x-pack/plugins/observability_solution/exploratory_view/public/components/shared/exploratory_view/configurations/constants/constants.ts", "deprecated": false, "trackAdoption": false, "initialIsOpen": false @@ -2090,10 +1956,8 @@ "tags": [], "label": "OPERATION_COLUMN", "description": [], - "signature": [ - "\"operation\"" - ], - "path": "x-pack/plugins/exploratory_view/public/components/shared/exploratory_view/configurations/constants/constants.ts", + "signature": ["\"operation\""], + "path": "x-pack/plugins/observability_solution/exploratory_view/public/components/shared/exploratory_view/configurations/constants/constants.ts", "deprecated": false, "trackAdoption": false, "initialIsOpen": false @@ -2105,10 +1969,8 @@ "tags": [], "label": "RECORDS_FIELD", "description": [], - "signature": [ - "\"___records___\"" - ], - "path": "x-pack/plugins/exploratory_view/public/components/shared/exploratory_view/configurations/constants/constants.ts", + "signature": ["\"___records___\""], + "path": "x-pack/plugins/observability_solution/exploratory_view/public/components/shared/exploratory_view/configurations/constants/constants.ts", "deprecated": false, "trackAdoption": false, "initialIsOpen": false @@ -2120,10 +1982,8 @@ "tags": [], "label": "RECORDS_PERCENTAGE_FIELD", "description": [], - "signature": [ - "\"RecordsPercentage\"" - ], - "path": "x-pack/plugins/exploratory_view/public/components/shared/exploratory_view/configurations/constants/constants.ts", + "signature": ["\"RecordsPercentage\""], + "path": "x-pack/plugins/observability_solution/exploratory_view/public/components/shared/exploratory_view/configurations/constants/constants.ts", "deprecated": false, "trackAdoption": false, "initialIsOpen": false @@ -2135,10 +1995,8 @@ "tags": [], "label": "REPORT_METRIC_FIELD", "description": [], - "signature": [ - "\"REPORT_METRIC_FIELD\"" - ], - "path": "x-pack/plugins/exploratory_view/public/components/shared/exploratory_view/configurations/constants/constants.ts", + "signature": ["\"REPORT_METRIC_FIELD\""], + "path": "x-pack/plugins/observability_solution/exploratory_view/public/components/shared/exploratory_view/configurations/constants/constants.ts", "deprecated": false, "trackAdoption": false, "initialIsOpen": false @@ -2150,10 +2008,8 @@ "tags": [], "label": "TERMS_COLUMN", "description": [], - "signature": [ - "\"TERMS_COLUMN\"" - ], - "path": "x-pack/plugins/exploratory_view/public/components/shared/exploratory_view/configurations/constants/constants.ts", + "signature": ["\"TERMS_COLUMN\""], + "path": "x-pack/plugins/observability_solution/exploratory_view/public/components/shared/exploratory_view/configurations/constants/constants.ts", "deprecated": false, "trackAdoption": false, "initialIsOpen": false @@ -2165,10 +2021,8 @@ "tags": [], "label": "USE_BREAK_DOWN_COLUMN", "description": [], - "signature": [ - "\"USE_BREAK_DOWN_COLUMN\"" - ], - "path": "x-pack/plugins/exploratory_view/public/components/shared/exploratory_view/configurations/constants/constants.ts", + "signature": ["\"USE_BREAK_DOWN_COLUMN\""], + "path": "x-pack/plugins/observability_solution/exploratory_view/public/components/shared/exploratory_view/configurations/constants/constants.ts", "deprecated": false, "trackAdoption": false, "initialIsOpen": false @@ -2189,7 +2043,7 @@ "DataHandler", ") => void; }" ], - "path": "x-pack/plugins/exploratory_view/public/plugin.ts", + "path": "x-pack/plugins/observability_solution/exploratory_view/public/plugin.ts", "deprecated": false, "trackAdoption": false, "lifecycle": "setup", @@ -2233,7 +2087,7 @@ }, ") => JSX.Element | null; }" ], - "path": "x-pack/plugins/exploratory_view/public/plugin.ts", + "path": "x-pack/plugins/observability_solution/exploratory_view/public/plugin.ts", "deprecated": false, "trackAdoption": false, "lifecycle": "start", @@ -2256,4 +2110,4 @@ "misc": [], "objects": [] } -} \ No newline at end of file +} diff --git a/api_docs/exploratory_view.mdx b/api_docs/exploratory_view.mdx index af95c05a11e56..d628ef321b26b 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: 2024-02-19 +date: 2024-02-22 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 3fea4b9a3bd0d..c94dd4c17d30c 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: 2024-02-19 +date: 2024-02-22 tags: ['contributor', 'dev', 'apidocs', 'kibana', 'expressionError'] --- import expressionErrorObj from './expression_error.devdocs.json'; diff --git a/api_docs/expression_gauge.devdocs.json b/api_docs/expression_gauge.devdocs.json index 753ab8e7b93eb..c730e7b812f98 100644 --- a/api_docs/expression_gauge.devdocs.json +++ b/api_docs/expression_gauge.devdocs.json @@ -1247,7 +1247,7 @@ "ExternalPointerEventsSettings", " | undefined>; pointBuffer?: ", "MarkBuffer", - " | undefined; resizeDebounce?: number | undefined; pointerUpdateTrigger?: ", + " | undefined; pointerUpdateTrigger?: ", "PointerUpdateTrigger", " | undefined; brushAxis?: ", "BrushAxis", @@ -1257,7 +1257,7 @@ "CustomXDomain", " | undefined>; ariaDescription?: string | undefined; ariaDescribedBy?: string | undefined; ariaLabelledBy?: string | undefined; ariaTableCaption?: string | undefined; legendAction?: \"ignore\" | undefined; legendStrategy?: ", "LegendStrategy", - " | undefined; onLegendItemClick?: \"ignore\" | undefined; customLegend?: \"ignore\" | undefined; onLegendItemMinusClick?: \"ignore\" | undefined; onLegendItemOut?: \"ignore\" | undefined; onLegendItemOver?: \"ignore\" | undefined; onLegendItemPlusClick?: \"ignore\" | undefined; debugState?: boolean | undefined; onProjectionClick?: \"ignore\" | undefined; onElementClick?: \"ignore\" | undefined; onElementOver?: \"ignore\" | undefined; onElementOut?: \"ignore\" | undefined; onBrushEnd?: \"ignore\" | undefined; onResize?: \"ignore\" | undefined; onWillRender?: \"ignore\" | undefined; onProjectionAreaChange?: \"ignore\" | undefined; onAnnotationClick?: \"ignore\" | undefined; pointerUpdateDebounce?: number | undefined; roundHistogramBrushValues?: boolean | undefined; noResults?: React.ReactChild | React.ComponentType<{}> | undefined; legendSort?: \"ignore\" | undefined; }>> & Partial>) | undefined; shouldUseVeil: boolean; setChartSize: (d: ", + " | undefined; onLegendItemClick?: \"ignore\" | undefined; customLegend?: \"ignore\" | undefined; onLegendItemMinusClick?: \"ignore\" | undefined; onLegendItemOut?: \"ignore\" | undefined; onLegendItemOver?: \"ignore\" | undefined; onLegendItemPlusClick?: \"ignore\" | undefined; debugState?: boolean | undefined; onProjectionClick?: \"ignore\" | undefined; onElementClick?: \"ignore\" | undefined; onElementOver?: \"ignore\" | undefined; onElementOut?: \"ignore\" | undefined; onBrushEnd?: \"ignore\" | undefined; onResize?: \"ignore\" | undefined; onWillRender?: \"ignore\" | undefined; onProjectionAreaChange?: \"ignore\" | undefined; onAnnotationClick?: \"ignore\" | undefined; resizeDebounce?: number | undefined; pointerUpdateDebounce?: number | undefined; roundHistogramBrushValues?: boolean | undefined; noResults?: React.ReactChild | React.ComponentType<{}> | undefined; legendSort?: \"ignore\" | undefined; }>> & Partial>) | undefined; setChartSize: (d: ", { "pluginId": "@kbn/chart-expressions-common", "scope": "common", diff --git a/api_docs/expression_gauge.mdx b/api_docs/expression_gauge.mdx index f81736274c760..239ccb3c086f0 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: 2024-02-19 +date: 2024-02-22 tags: ['contributor', 'dev', 'apidocs', 'kibana', 'expressionGauge'] --- import expressionGaugeObj from './expression_gauge.devdocs.json'; diff --git a/api_docs/expression_heatmap.devdocs.json b/api_docs/expression_heatmap.devdocs.json index 855d858f60722..949af2f84bffd 100644 --- a/api_docs/expression_heatmap.devdocs.json +++ b/api_docs/expression_heatmap.devdocs.json @@ -517,7 +517,7 @@ "ExternalPointerEventsSettings", " | undefined>; pointBuffer?: ", "MarkBuffer", - " | undefined; resizeDebounce?: number | undefined; pointerUpdateTrigger?: ", + " | undefined; pointerUpdateTrigger?: ", "PointerUpdateTrigger", " | undefined; brushAxis?: ", "BrushAxis", @@ -527,7 +527,7 @@ "CustomXDomain", " | undefined>; ariaDescription?: string | undefined; ariaDescribedBy?: string | undefined; ariaLabelledBy?: string | undefined; ariaTableCaption?: string | undefined; legendAction?: \"ignore\" | undefined; legendStrategy?: ", "LegendStrategy", - " | undefined; onLegendItemClick?: \"ignore\" | undefined; customLegend?: \"ignore\" | undefined; onLegendItemMinusClick?: \"ignore\" | undefined; onLegendItemOut?: \"ignore\" | undefined; onLegendItemOver?: \"ignore\" | undefined; onLegendItemPlusClick?: \"ignore\" | undefined; debugState?: boolean | undefined; onProjectionClick?: \"ignore\" | undefined; onElementClick?: \"ignore\" | undefined; onElementOver?: \"ignore\" | undefined; onElementOut?: \"ignore\" | undefined; onBrushEnd?: \"ignore\" | undefined; onResize?: \"ignore\" | undefined; onWillRender?: \"ignore\" | undefined; onProjectionAreaChange?: \"ignore\" | undefined; onAnnotationClick?: \"ignore\" | undefined; pointerUpdateDebounce?: number | undefined; roundHistogramBrushValues?: boolean | undefined; noResults?: React.ReactChild | React.ComponentType<{}> | undefined; legendSort?: \"ignore\" | undefined; }>> & Partial>) | undefined" + " | undefined; onLegendItemClick?: \"ignore\" | undefined; customLegend?: \"ignore\" | undefined; onLegendItemMinusClick?: \"ignore\" | undefined; onLegendItemOut?: \"ignore\" | undefined; onLegendItemOver?: \"ignore\" | undefined; onLegendItemPlusClick?: \"ignore\" | undefined; debugState?: boolean | undefined; onProjectionClick?: \"ignore\" | undefined; onElementClick?: \"ignore\" | undefined; onElementOver?: \"ignore\" | undefined; onElementOut?: \"ignore\" | undefined; onBrushEnd?: \"ignore\" | undefined; onResize?: \"ignore\" | undefined; onWillRender?: \"ignore\" | undefined; onProjectionAreaChange?: \"ignore\" | undefined; onAnnotationClick?: \"ignore\" | undefined; resizeDebounce?: number | undefined; pointerUpdateDebounce?: number | undefined; roundHistogramBrushValues?: boolean | undefined; noResults?: React.ReactChild | React.ComponentType<{}> | undefined; legendSort?: \"ignore\" | undefined; }>> & Partial>) | undefined" ], "path": "src/plugins/chart_expressions/expression_heatmap/common/types/expression_functions.ts", "deprecated": false, diff --git a/api_docs/expression_heatmap.mdx b/api_docs/expression_heatmap.mdx index 0645ae4952c7a..4df06c40f8201 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: 2024-02-19 +date: 2024-02-22 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 44facfe28fa3b..3392fe5426bc1 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: 2024-02-19 +date: 2024-02-22 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 96c40979b41c5..4f3f84e178808 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: 2024-02-19 +date: 2024-02-22 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 0f601f583f929..4dc12b17ab434 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: 2024-02-19 +date: 2024-02-22 tags: ['contributor', 'dev', 'apidocs', 'kibana', 'expressionMetric'] --- import expressionMetricObj from './expression_metric.devdocs.json'; diff --git a/api_docs/expression_metric_vis.devdocs.json b/api_docs/expression_metric_vis.devdocs.json index fe17f346e9f5f..74c0ab8ff17b4 100644 --- a/api_docs/expression_metric_vis.devdocs.json +++ b/api_docs/expression_metric_vis.devdocs.json @@ -894,7 +894,7 @@ "ExternalPointerEventsSettings", " | undefined>; pointBuffer?: ", "MarkBuffer", - " | undefined; resizeDebounce?: number | undefined; pointerUpdateTrigger?: ", + " | undefined; pointerUpdateTrigger?: ", "PointerUpdateTrigger", " | undefined; brushAxis?: ", "BrushAxis", @@ -904,7 +904,7 @@ "CustomXDomain", " | undefined>; ariaDescription?: string | undefined; ariaDescribedBy?: string | undefined; ariaLabelledBy?: string | undefined; ariaTableCaption?: string | undefined; legendAction?: \"ignore\" | undefined; legendStrategy?: ", "LegendStrategy", - " | undefined; onLegendItemClick?: \"ignore\" | undefined; customLegend?: \"ignore\" | undefined; onLegendItemMinusClick?: \"ignore\" | undefined; onLegendItemOut?: \"ignore\" | undefined; onLegendItemOver?: \"ignore\" | undefined; onLegendItemPlusClick?: \"ignore\" | undefined; debugState?: boolean | undefined; onProjectionClick?: \"ignore\" | undefined; onElementClick?: \"ignore\" | undefined; onElementOver?: \"ignore\" | undefined; onElementOut?: \"ignore\" | undefined; onBrushEnd?: \"ignore\" | undefined; onResize?: \"ignore\" | undefined; onWillRender?: \"ignore\" | undefined; onProjectionAreaChange?: \"ignore\" | undefined; onAnnotationClick?: \"ignore\" | undefined; pointerUpdateDebounce?: number | undefined; roundHistogramBrushValues?: boolean | undefined; noResults?: React.ReactChild | React.ComponentType<{}> | undefined; legendSort?: \"ignore\" | undefined; }>> & Partial>) | undefined" + " | undefined; onLegendItemClick?: \"ignore\" | undefined; customLegend?: \"ignore\" | undefined; onLegendItemMinusClick?: \"ignore\" | undefined; onLegendItemOut?: \"ignore\" | undefined; onLegendItemOver?: \"ignore\" | undefined; onLegendItemPlusClick?: \"ignore\" | undefined; debugState?: boolean | undefined; onProjectionClick?: \"ignore\" | undefined; onElementClick?: \"ignore\" | undefined; onElementOver?: \"ignore\" | undefined; onElementOut?: \"ignore\" | undefined; onBrushEnd?: \"ignore\" | undefined; onResize?: \"ignore\" | undefined; onWillRender?: \"ignore\" | undefined; onProjectionAreaChange?: \"ignore\" | undefined; onAnnotationClick?: \"ignore\" | undefined; resizeDebounce?: number | undefined; pointerUpdateDebounce?: number | undefined; roundHistogramBrushValues?: boolean | undefined; noResults?: React.ReactChild | React.ComponentType<{}> | undefined; legendSort?: \"ignore\" | undefined; }>> & Partial>) | undefined" ], "path": "src/plugins/chart_expressions/expression_metric/common/types/expression_functions.ts", "deprecated": false, diff --git a/api_docs/expression_metric_vis.mdx b/api_docs/expression_metric_vis.mdx index 91beba0020159..671fbdb2fecce 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: 2024-02-19 +date: 2024-02-22 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 5b3b56091e3bc..22e1ca7da1848 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: 2024-02-19 +date: 2024-02-22 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 cca1793c5c567..14af3a298cf41 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: 2024-02-19 +date: 2024-02-22 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 41344ed4cef64..d3099230a4257 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: 2024-02-19 +date: 2024-02-22 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 d9075ecfa5284..3e6dc4dbaa6ce 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: 2024-02-19 +date: 2024-02-22 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 191922143f7fc..54671b643d7f8 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: 2024-02-19 +date: 2024-02-22 tags: ['contributor', 'dev', 'apidocs', 'kibana', 'expressionTagcloud'] --- import expressionTagcloudObj from './expression_tagcloud.devdocs.json'; diff --git a/api_docs/expression_x_y.devdocs.json b/api_docs/expression_x_y.devdocs.json index d2799e04d3c49..ad075c5f0e7e0 100644 --- a/api_docs/expression_x_y.devdocs.json +++ b/api_docs/expression_x_y.devdocs.json @@ -1968,7 +1968,7 @@ "ExternalPointerEventsSettings", " | undefined>; pointBuffer?: ", "MarkBuffer", - " | undefined; resizeDebounce?: number | undefined; pointerUpdateTrigger?: ", + " | undefined; pointerUpdateTrigger?: ", "PointerUpdateTrigger", " | undefined; brushAxis?: ", "BrushAxis", @@ -1978,7 +1978,7 @@ "CustomXDomain", " | undefined>; ariaDescription?: string | undefined; ariaDescribedBy?: string | undefined; ariaLabelledBy?: string | undefined; ariaTableCaption?: string | undefined; legendAction?: \"ignore\" | undefined; legendStrategy?: ", "LegendStrategy", - " | undefined; onLegendItemClick?: \"ignore\" | undefined; customLegend?: \"ignore\" | undefined; onLegendItemMinusClick?: \"ignore\" | undefined; onLegendItemOut?: \"ignore\" | undefined; onLegendItemOver?: \"ignore\" | undefined; onLegendItemPlusClick?: \"ignore\" | undefined; debugState?: boolean | undefined; onProjectionClick?: \"ignore\" | undefined; onElementClick?: \"ignore\" | undefined; onElementOver?: \"ignore\" | undefined; onElementOut?: \"ignore\" | undefined; onBrushEnd?: \"ignore\" | undefined; onResize?: \"ignore\" | undefined; onWillRender?: \"ignore\" | undefined; onProjectionAreaChange?: \"ignore\" | undefined; onAnnotationClick?: \"ignore\" | undefined; pointerUpdateDebounce?: number | undefined; roundHistogramBrushValues?: boolean | undefined; noResults?: React.ReactChild | React.ComponentType<{}> | undefined; legendSort?: \"ignore\" | undefined; }>> & Partial>) | undefined" + " | undefined; onLegendItemClick?: \"ignore\" | undefined; customLegend?: \"ignore\" | undefined; onLegendItemMinusClick?: \"ignore\" | undefined; onLegendItemOut?: \"ignore\" | undefined; onLegendItemOver?: \"ignore\" | undefined; onLegendItemPlusClick?: \"ignore\" | undefined; debugState?: boolean | undefined; onProjectionClick?: \"ignore\" | undefined; onElementClick?: \"ignore\" | undefined; onElementOver?: \"ignore\" | undefined; onElementOut?: \"ignore\" | undefined; onBrushEnd?: \"ignore\" | undefined; onResize?: \"ignore\" | undefined; onWillRender?: \"ignore\" | undefined; onProjectionAreaChange?: \"ignore\" | undefined; onAnnotationClick?: \"ignore\" | undefined; resizeDebounce?: number | undefined; pointerUpdateDebounce?: number | undefined; roundHistogramBrushValues?: boolean | undefined; noResults?: React.ReactChild | React.ComponentType<{}> | undefined; legendSort?: \"ignore\" | undefined; }>> & Partial>) | undefined" ], "path": "src/plugins/chart_expressions/expression_xy/common/types/expression_renderers.ts", "deprecated": false, diff --git a/api_docs/expression_x_y.mdx b/api_docs/expression_x_y.mdx index 9f25cee48962a..3f89a7c77c61e 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: 2024-02-19 +date: 2024-02-22 tags: ['contributor', 'dev', 'apidocs', 'kibana', 'expressionXY'] --- import expressionXYObj from './expression_x_y.devdocs.json'; diff --git a/api_docs/expressions.devdocs.json b/api_docs/expressions.devdocs.json index 410a91f45338d..5cfe8943f38db 100644 --- a/api_docs/expressions.devdocs.json +++ b/api_docs/expressions.devdocs.json @@ -3794,7 +3794,7 @@ "id": "def-public.ExpressionRenderHandler.Unnamed.$2", "type": "Object", "tags": [], - "label": "{\n onRenderError,\n renderMode,\n syncColors,\n syncTooltips,\n syncCursor,\n shouldUseSizeTransitionVeil,\n interactive,\n hasCompatibleActions = async () => false,\n getCompatibleCellValueActions = async () => [],\n executionContext,\n }", + "label": "{\n onRenderError,\n renderMode,\n syncColors,\n syncTooltips,\n syncCursor,\n interactive,\n hasCompatibleActions = async () => false,\n getCompatibleCellValueActions = async () => [],\n executionContext,\n }", "description": [], "signature": [ "ExpressionRenderHandlerParams" @@ -7276,24 +7276,6 @@ "children": [], "returnComment": [] }, - { - "parentPluginId": "expressions", - "id": "def-public.ExecutionContext.shouldUseSizeTransitionVeil", - "type": "Function", - "tags": [], - "label": "shouldUseSizeTransitionVeil", - "description": [ - "\nReturns whether or not to use the size transition veil when resizing visualizations." - ], - "signature": [ - "(() => boolean) | undefined" - ], - "path": "src/plugins/expressions/common/execution/types.ts", - "deprecated": false, - "trackAdoption": false, - "children": [], - "returnComment": [] - }, { "parentPluginId": "expressions", "id": "def-public.ExecutionContext.getExecutionContext", @@ -10927,20 +10909,6 @@ "deprecated": false, "trackAdoption": false }, - { - "parentPluginId": "expressions", - "id": "def-public.IExpressionLoaderParams.shouldUseSizeTransitionVeil", - "type": "CompoundType", - "tags": [], - "label": "shouldUseSizeTransitionVeil", - "description": [], - "signature": [ - "boolean | undefined" - ], - "path": "src/plugins/expressions/public/types/index.ts", - "deprecated": false, - "trackAdoption": false - }, { "parentPluginId": "expressions", "id": "def-public.IExpressionLoaderParams.hasCompatibleActions", @@ -11386,22 +11354,6 @@ "children": [], "returnComment": [] }, - { - "parentPluginId": "expressions", - "id": "def-public.IInterpreterRenderHandlers.shouldUseSizeTransitionVeil", - "type": "Function", - "tags": [], - "label": "shouldUseSizeTransitionVeil", - "description": [], - "signature": [ - "() => boolean" - ], - "path": "src/plugins/expressions/common/expression_renderers/types.ts", - "deprecated": false, - "trackAdoption": false, - "children": [], - "returnComment": [] - }, { "parentPluginId": "expressions", "id": "def-public.IInterpreterRenderHandlers.uiState", @@ -18753,24 +18705,6 @@ "children": [], "returnComment": [] }, - { - "parentPluginId": "expressions", - "id": "def-server.ExecutionContext.shouldUseSizeTransitionVeil", - "type": "Function", - "tags": [], - "label": "shouldUseSizeTransitionVeil", - "description": [ - "\nReturns whether or not to use the size transition veil when resizing visualizations." - ], - "signature": [ - "(() => boolean) | undefined" - ], - "path": "src/plugins/expressions/common/execution/types.ts", - "deprecated": false, - "trackAdoption": false, - "children": [], - "returnComment": [] - }, { "parentPluginId": "expressions", "id": "def-server.ExecutionContext.getExecutionContext", @@ -21458,22 +21392,6 @@ "children": [], "returnComment": [] }, - { - "parentPluginId": "expressions", - "id": "def-server.IInterpreterRenderHandlers.shouldUseSizeTransitionVeil", - "type": "Function", - "tags": [], - "label": "shouldUseSizeTransitionVeil", - "description": [], - "signature": [ - "() => boolean" - ], - "path": "src/plugins/expressions/common/expression_renderers/types.ts", - "deprecated": false, - "trackAdoption": false, - "children": [], - "returnComment": [] - }, { "parentPluginId": "expressions", "id": "def-server.IInterpreterRenderHandlers.uiState", @@ -30842,24 +30760,6 @@ "children": [], "returnComment": [] }, - { - "parentPluginId": "expressions", - "id": "def-common.ExecutionContext.shouldUseSizeTransitionVeil", - "type": "Function", - "tags": [], - "label": "shouldUseSizeTransitionVeil", - "description": [ - "\nReturns whether or not to use the size transition veil when resizing visualizations." - ], - "signature": [ - "(() => boolean) | undefined" - ], - "path": "src/plugins/expressions/common/execution/types.ts", - "deprecated": false, - "trackAdoption": false, - "children": [], - "returnComment": [] - }, { "parentPluginId": "expressions", "id": "def-common.ExecutionContext.getExecutionContext", @@ -32514,20 +32414,6 @@ "deprecated": false, "trackAdoption": false }, - { - "parentPluginId": "expressions", - "id": "def-common.ExpressionExecutionParams.shouldUseSizeTransitionVeil", - "type": "CompoundType", - "tags": [], - "label": "shouldUseSizeTransitionVeil", - "description": [], - "signature": [ - "boolean | undefined" - ], - "path": "src/plugins/expressions/common/service/expressions_services.ts", - "deprecated": false, - "trackAdoption": false - }, { "parentPluginId": "expressions", "id": "def-common.ExpressionExecutionParams.inspectorAdapters", @@ -35786,22 +35672,6 @@ "children": [], "returnComment": [] }, - { - "parentPluginId": "expressions", - "id": "def-common.IInterpreterRenderHandlers.shouldUseSizeTransitionVeil", - "type": "Function", - "tags": [], - "label": "shouldUseSizeTransitionVeil", - "description": [], - "signature": [ - "() => boolean" - ], - "path": "src/plugins/expressions/common/expression_renderers/types.ts", - "deprecated": false, - "trackAdoption": false, - "children": [], - "returnComment": [] - }, { "parentPluginId": "expressions", "id": "def-common.IInterpreterRenderHandlers.uiState", diff --git a/api_docs/expressions.mdx b/api_docs/expressions.mdx index a6e714dc9cfea..a9e6893975f6c 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: 2024-02-19 +date: 2024-02-22 tags: ['contributor', 'dev', 'apidocs', 'kibana', 'expressions'] --- import expressionsObj from './expressions.devdocs.json'; @@ -21,7 +21,7 @@ Contact [@elastic/kibana-visualizations](https://github.com/orgs/elastic/teams/k | Public API count | Any count | Items lacking comments | Missing exports | |-------------------|-----------|------------------------|-----------------| -| 2224 | 17 | 1762 | 5 | +| 2216 | 17 | 1757 | 5 | ## Client diff --git a/api_docs/features.mdx b/api_docs/features.mdx index 1c5dc9e627871..289dda22b3c1f 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: 2024-02-19 +date: 2024-02-22 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 9bb0d49ae911a..bab9652a4ed9b 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: 2024-02-19 +date: 2024-02-22 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 1ae442d25a5c6..73c69321a37be 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: 2024-02-19 +date: 2024-02-22 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 f30d802100ad8..8e94b99eb557d 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: 2024-02-19 +date: 2024-02-22 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 0dac01ae8d0f7..5c2c3834e3cc0 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: 2024-02-19 +date: 2024-02-22 tags: ['contributor', 'dev', 'apidocs', 'kibana', 'filesManagement'] --- import filesManagementObj from './files_management.devdocs.json'; diff --git a/api_docs/fleet.mdx b/api_docs/fleet.mdx index f119d1d36fa64..f030142b96f11 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: 2024-02-19 +date: 2024-02-22 tags: ['contributor', 'dev', 'apidocs', 'kibana', 'fleet'] --- import fleetObj from './fleet.devdocs.json'; diff --git a/api_docs/global_search.mdx b/api_docs/global_search.mdx index c6d4699465b60..1a37d9dd49d63 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: 2024-02-19 +date: 2024-02-22 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 ebc1accfb0110..599d41773bfab 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: 2024-02-19 +date: 2024-02-22 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 639738b850c99..00c2e8eb64075 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: 2024-02-19 +date: 2024-02-22 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 5362ac1dc5048..4d2d5b72a8195 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: 2024-02-19 +date: 2024-02-22 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 044481829015f..97e3bb7a86519 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: 2024-02-19 +date: 2024-02-22 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 c0111c6099109..3ee7a13eb3ef6 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: 2024-02-19 +date: 2024-02-22 tags: ['contributor', 'dev', 'apidocs', 'kibana', 'indexManagement'] --- import indexManagementObj from './index_management.devdocs.json'; diff --git a/api_docs/infra.mdx b/api_docs/infra.mdx index 91159f75b95ae..656d549ef258d 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: 2024-02-19 +date: 2024-02-22 tags: ['contributor', 'dev', 'apidocs', 'kibana', 'infra'] --- import infraObj from './infra.devdocs.json'; diff --git a/api_docs/ingest_pipelines.mdx b/api_docs/ingest_pipelines.mdx index 82db6e8618314..f297b734b3a3d 100644 --- a/api_docs/ingest_pipelines.mdx +++ b/api_docs/ingest_pipelines.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/ingestPipelines title: "ingestPipelines" image: https://source.unsplash.com/400x175/?github description: API docs for the ingestPipelines plugin -date: 2024-02-19 +date: 2024-02-22 tags: ['contributor', 'dev', 'apidocs', 'kibana', 'ingestPipelines'] --- import ingestPipelinesObj from './ingest_pipelines.devdocs.json'; diff --git a/api_docs/inspector.mdx b/api_docs/inspector.mdx index 30ed7fcfe9006..bd18f741124c6 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: 2024-02-19 +date: 2024-02-22 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 16f3308857974..5d8fa12f760c9 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: 2024-02-19 +date: 2024-02-22 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 ceb5913e7b61b..dfdfbee06811b 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: 2024-02-19 +date: 2024-02-22 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/ace'] --- import kbnAceObj from './kbn_ace.devdocs.json'; diff --git a/api_docs/kbn_actions_types.mdx b/api_docs/kbn_actions_types.mdx index e25579ae77a8d..be58c68b6747a 100644 --- a/api_docs/kbn_actions_types.mdx +++ b/api_docs/kbn_actions_types.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-actions-types title: "@kbn/actions-types" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/actions-types plugin -date: 2024-02-19 +date: 2024-02-22 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/actions-types'] --- import kbnActionsTypesObj from './kbn_actions_types.devdocs.json'; diff --git a/api_docs/kbn_aiops_components.mdx b/api_docs/kbn_aiops_components.mdx index a46e4802f07dd..530e7bec64d4c 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: 2024-02-19 +date: 2024-02-22 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 6a7bd61ac859e..8145c16684281 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: 2024-02-19 +date: 2024-02-22 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/aiops-utils'] --- import kbnAiopsUtilsObj from './kbn_aiops_utils.devdocs.json'; diff --git a/api_docs/kbn_alerting_api_integration_helpers.mdx b/api_docs/kbn_alerting_api_integration_helpers.mdx index eba7157a6c6fb..f58ca188eeb03 100644 --- a/api_docs/kbn_alerting_api_integration_helpers.mdx +++ b/api_docs/kbn_alerting_api_integration_helpers.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-alerting-api-integration-helpers title: "@kbn/alerting-api-integration-helpers" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/alerting-api-integration-helpers plugin -date: 2024-02-19 +date: 2024-02-22 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/alerting-api-integration-helpers'] --- import kbnAlertingApiIntegrationHelpersObj from './kbn_alerting_api_integration_helpers.devdocs.json'; diff --git a/api_docs/kbn_alerting_state_types.mdx b/api_docs/kbn_alerting_state_types.mdx index 4ebdd9b4fe34d..a4d87a8edaf1f 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: 2024-02-19 +date: 2024-02-22 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/alerting-state-types'] --- import kbnAlertingStateTypesObj from './kbn_alerting_state_types.devdocs.json'; diff --git a/api_docs/kbn_alerting_types.mdx b/api_docs/kbn_alerting_types.mdx index bbc2f22877505..0fee2456315c7 100644 --- a/api_docs/kbn_alerting_types.mdx +++ b/api_docs/kbn_alerting_types.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-alerting-types title: "@kbn/alerting-types" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/alerting-types plugin -date: 2024-02-19 +date: 2024-02-22 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/alerting-types'] --- import kbnAlertingTypesObj from './kbn_alerting_types.devdocs.json'; diff --git a/api_docs/kbn_alerts_as_data_utils.mdx b/api_docs/kbn_alerts_as_data_utils.mdx index e1f5bdb88bc09..2f48e56e97614 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: 2024-02-19 +date: 2024-02-22 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 b38a33f6848f4..a1079c89c4ad9 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: 2024-02-19 +date: 2024-02-22 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 62dfaea48f1ff..bac55c4f97248 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: 2024-02-19 +date: 2024-02-22 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/analytics'] --- import kbnAnalyticsObj from './kbn_analytics.devdocs.json'; diff --git a/api_docs/kbn_analytics_client.devdocs.json b/api_docs/kbn_analytics_client.devdocs.json index 1fad641c64c45..0c7abe585fd9a 100644 --- a/api_docs/kbn_analytics_client.devdocs.json +++ b/api_docs/kbn_analytics_client.devdocs.json @@ -736,12 +736,16 @@ }, { "plugin": "observabilityAIAssistant", - "path": "x-pack/plugins/observability_ai_assistant/public/analytics/index.ts" + "path": "x-pack/plugins/observability_solution/observability_ai_assistant/public/analytics/index.ts" }, { "plugin": "apm", "path": "x-pack/plugins/apm/public/services/telemetry/telemetry_client.ts" }, + { + "plugin": "reporting", + "path": "x-pack/plugins/reporting/server/usage/event_tracker.ts" + }, { "plugin": "elasticAssistant", "path": "x-pack/plugins/elastic_assistant/server/lib/langchain/elasticsearch_store/elasticsearch_store.ts" @@ -892,11 +896,11 @@ }, { "plugin": "observabilityAIAssistant", - "path": "x-pack/plugins/observability_ai_assistant/public/mock.tsx" + "path": "x-pack/plugins/observability_solution/observability_ai_assistant/public/mock.tsx" }, { "plugin": "observabilityAIAssistant", - "path": "x-pack/plugins/observability_ai_assistant/public/service/create_chat_service.test.ts" + "path": "x-pack/plugins/observability_solution/observability_ai_assistant/public/service/create_chat_service.test.ts" }, { "plugin": "@kbn/core-analytics-browser-mocks", @@ -1080,11 +1084,11 @@ }, { "plugin": "observabilityAIAssistant", - "path": "x-pack/plugins/observability_ai_assistant/public/hooks/use_chat.test.ts" + "path": "x-pack/plugins/observability_solution/observability_ai_assistant/public/hooks/use_chat.test.ts" }, { "plugin": "observabilityAIAssistant", - "path": "x-pack/plugins/observability_ai_assistant/public/service/create_mock_chat_service.ts" + "path": "x-pack/plugins/observability_solution/observability_ai_assistant/public/service/create_mock_chat_service.ts" }, { "plugin": "@kbn/core-analytics-browser-internal", diff --git a/api_docs/kbn_analytics_client.mdx b/api_docs/kbn_analytics_client.mdx index 343a367991446..4fb6264e74ff2 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: 2024-02-19 +date: 2024-02-22 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/analytics-client'] --- import kbnAnalyticsClientObj from './kbn_analytics_client.devdocs.json'; diff --git a/api_docs/kbn_analytics_collection_utils.mdx b/api_docs/kbn_analytics_collection_utils.mdx index 3ca10bbeda2b7..084b54d9f16ed 100644 --- a/api_docs/kbn_analytics_collection_utils.mdx +++ b/api_docs/kbn_analytics_collection_utils.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-analytics-collection-utils title: "@kbn/analytics-collection-utils" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/analytics-collection-utils plugin -date: 2024-02-19 +date: 2024-02-22 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/analytics-collection-utils'] --- import kbnAnalyticsCollectionUtilsObj from './kbn_analytics_collection_utils.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 9ac69bac7924d..e08e084d6fa34 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: 2024-02-19 +date: 2024-02-22 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 38aa0bf02bf2a..e763671045757 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: 2024-02-19 +date: 2024-02-22 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 ee778273bdfe3..30cd80c3cb120 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: 2024-02-19 +date: 2024-02-22 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 5dd876c867ba2..f781174e1740a 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: 2024-02-19 +date: 2024-02-22 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/analytics-shippers-fullstory'] --- import kbnAnalyticsShippersFullstoryObj from './kbn_analytics_shippers_fullstory.devdocs.json'; diff --git a/api_docs/kbn_apm_config_loader.mdx b/api_docs/kbn_apm_config_loader.mdx index 6c6547f476099..0d1ec3f41984e 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: 2024-02-19 +date: 2024-02-22 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 0a37c245410d8..7c1480f4a0962 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: 2024-02-19 +date: 2024-02-22 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 bfa6290815094..af736f2d2dfb4 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: 2024-02-19 +date: 2024-02-22 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 b55db6c78808e..74688637fc48a 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: 2024-02-19 +date: 2024-02-22 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 786f98c794793..6ba1947e912c6 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: 2024-02-19 +date: 2024-02-22 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/axe-config'] --- import kbnAxeConfigObj from './kbn_axe_config.devdocs.json'; diff --git a/api_docs/kbn_bfetch_error.mdx b/api_docs/kbn_bfetch_error.mdx index 678203d898b62..eeb1919657472 100644 --- a/api_docs/kbn_bfetch_error.mdx +++ b/api_docs/kbn_bfetch_error.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-bfetch-error title: "@kbn/bfetch-error" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/bfetch-error plugin -date: 2024-02-19 +date: 2024-02-22 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/bfetch-error'] --- import kbnBfetchErrorObj from './kbn_bfetch_error.devdocs.json'; diff --git a/api_docs/kbn_calculate_auto.mdx b/api_docs/kbn_calculate_auto.mdx index 3157db90755d6..bd1296ddbe85d 100644 --- a/api_docs/kbn_calculate_auto.mdx +++ b/api_docs/kbn_calculate_auto.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-calculate-auto title: "@kbn/calculate-auto" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/calculate-auto plugin -date: 2024-02-19 +date: 2024-02-22 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/calculate-auto'] --- import kbnCalculateAutoObj from './kbn_calculate_auto.devdocs.json'; diff --git a/api_docs/kbn_calculate_width_from_char_count.mdx b/api_docs/kbn_calculate_width_from_char_count.mdx index f203617458376..b543973b0dbbc 100644 --- a/api_docs/kbn_calculate_width_from_char_count.mdx +++ b/api_docs/kbn_calculate_width_from_char_count.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-calculate-width-from-char-count title: "@kbn/calculate-width-from-char-count" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/calculate-width-from-char-count plugin -date: 2024-02-19 +date: 2024-02-22 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/calculate-width-from-char-count'] --- import kbnCalculateWidthFromCharCountObj from './kbn_calculate_width_from_char_count.devdocs.json'; diff --git a/api_docs/kbn_cases_components.mdx b/api_docs/kbn_cases_components.mdx index 7aba12b0960d7..a1e9f90e599cc 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: 2024-02-19 +date: 2024-02-22 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 04d88d8f4b284..14d0154118eb6 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: 2024-02-19 +date: 2024-02-22 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/cell-actions'] --- import kbnCellActionsObj from './kbn_cell_actions.devdocs.json'; diff --git a/api_docs/kbn_chart_expressions_common.devdocs.json b/api_docs/kbn_chart_expressions_common.devdocs.json index a86e37814a6fa..cf8c8c64ccfcc 100644 --- a/api_docs/kbn_chart_expressions_common.devdocs.json +++ b/api_docs/kbn_chart_expressions_common.devdocs.json @@ -330,101 +330,6 @@ ], "returnComment": [], "initialIsOpen": false - }, - { - "parentPluginId": "@kbn/chart-expressions-common", - "id": "def-common.useSizeTransitionVeil", - "type": "Function", - "tags": [], - "label": "useSizeTransitionVeil", - "description": [ - "\nThis hook is used to show a veil over the chart while it is being resized\nin response to a change in the container dimensions.\n\nIt is only relevant if client dimensions are being requested based on chart configuration.\n\nThis whole feature is a nice-to-have. If it proves to be a source of bugs,\nwe can consider removing it and accepting the aesthetic drawback." - ], - "signature": [ - "(chartSizeSpec: ", - { - "pluginId": "@kbn/chart-expressions-common", - "scope": "common", - "docId": "kibKbnChartExpressionsCommonPluginApi", - "section": "def-common.ChartSizeSpec", - "text": "ChartSizeSpec" - }, - ", setChartSize: (d: ", - { - "pluginId": "@kbn/chart-expressions-common", - "scope": "common", - "docId": "kibKbnChartExpressionsCommonPluginApi", - "section": "def-common.ChartSizeSpec", - "text": "ChartSizeSpec" - }, - ") => void, shouldUseVeil: boolean) => { veil: JSX.Element; onResize: () => void; containerRef: React.RefObject; }" - ], - "path": "src/plugins/chart_expressions/common/chart_size_transition_veil.tsx", - "deprecated": false, - "trackAdoption": false, - "children": [ - { - "parentPluginId": "@kbn/chart-expressions-common", - "id": "def-common.useSizeTransitionVeil.$1", - "type": "Object", - "tags": [], - "label": "chartSizeSpec", - "description": [], - "signature": [ - { - "pluginId": "@kbn/chart-expressions-common", - "scope": "common", - "docId": "kibKbnChartExpressionsCommonPluginApi", - "section": "def-common.ChartSizeSpec", - "text": "ChartSizeSpec" - } - ], - "path": "src/plugins/chart_expressions/common/chart_size_transition_veil.tsx", - "deprecated": false, - "trackAdoption": false, - "isRequired": true - }, - { - "parentPluginId": "@kbn/chart-expressions-common", - "id": "def-common.useSizeTransitionVeil.$2", - "type": "Function", - "tags": [], - "label": "setChartSize", - "description": [], - "signature": [ - "(d: ", - { - "pluginId": "@kbn/chart-expressions-common", - "scope": "common", - "docId": "kibKbnChartExpressionsCommonPluginApi", - "section": "def-common.ChartSizeSpec", - "text": "ChartSizeSpec" - }, - ") => void" - ], - "path": "src/plugins/chart_expressions/common/chart_size_transition_veil.tsx", - "deprecated": false, - "trackAdoption": false, - "isRequired": true - }, - { - "parentPluginId": "@kbn/chart-expressions-common", - "id": "def-common.useSizeTransitionVeil.$3", - "type": "boolean", - "tags": [], - "label": "shouldUseVeil", - "description": [], - "signature": [ - "boolean" - ], - "path": "src/plugins/chart_expressions/common/chart_size_transition_veil.tsx", - "deprecated": false, - "trackAdoption": false, - "isRequired": true - } - ], - "returnComment": [], - "initialIsOpen": false } ], "interfaces": [ diff --git a/api_docs/kbn_chart_expressions_common.mdx b/api_docs/kbn_chart_expressions_common.mdx index 5a067a0ca379b..20c58bc68ec91 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: 2024-02-19 +date: 2024-02-22 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/chart-expressions-common'] --- import kbnChartExpressionsCommonObj from './kbn_chart_expressions_common.devdocs.json'; @@ -21,7 +21,7 @@ Contact [@elastic/kibana-visualizations](https://github.com/orgs/elastic/teams/k | Public API count | Any count | Items lacking comments | Missing exports | |-------------------|-----------|------------------------|-----------------| -| 27 | 0 | 22 | 0 | +| 23 | 0 | 19 | 0 | ## Common diff --git a/api_docs/kbn_chart_icons.mdx b/api_docs/kbn_chart_icons.mdx index 3bf8d7d54a972..1c5f0a297b5f3 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: 2024-02-19 +date: 2024-02-22 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 66ef4d56a7450..ef368f7ddc710 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: 2024-02-19 +date: 2024-02-22 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 4bb6cfc111659..76bf860280ce6 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: 2024-02-19 +date: 2024-02-22 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 8f3e80df48db4..88d2f421c4191 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: 2024-02-19 +date: 2024-02-22 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 ca0da5b2a34f5..f358fea87af9a 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: 2024-02-19 +date: 2024-02-22 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 757b6818be3f4..e0ea612a77ec7 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: 2024-02-19 +date: 2024-02-22 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/code-editor'] --- import kbnCodeEditorObj from './kbn_code_editor.devdocs.json'; diff --git a/api_docs/kbn_code_editor_mock.mdx b/api_docs/kbn_code_editor_mock.mdx index 00e02adeff5df..a2985441296ae 100644 --- a/api_docs/kbn_code_editor_mock.mdx +++ b/api_docs/kbn_code_editor_mock.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-code-editor-mock title: "@kbn/code-editor-mock" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/code-editor-mock plugin -date: 2024-02-19 +date: 2024-02-22 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/code-editor-mock'] --- import kbnCodeEditorMockObj from './kbn_code_editor_mock.devdocs.json'; diff --git a/api_docs/kbn_code_owners.mdx b/api_docs/kbn_code_owners.mdx index 6c322a6d84a6a..bcb218f940d93 100644 --- a/api_docs/kbn_code_owners.mdx +++ b/api_docs/kbn_code_owners.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-code-owners title: "@kbn/code-owners" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/code-owners plugin -date: 2024-02-19 +date: 2024-02-22 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/code-owners'] --- import kbnCodeOwnersObj from './kbn_code_owners.devdocs.json'; diff --git a/api_docs/kbn_coloring.mdx b/api_docs/kbn_coloring.mdx index efb1bd23488a9..1e2cd87fa7d3f 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: 2024-02-19 +date: 2024-02-22 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 fc9a9a144a44f..de8411c1f8921 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: 2024-02-19 +date: 2024-02-22 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 05700d3451f6c..304d0dbcdd31f 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: 2024-02-19 +date: 2024-02-22 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 2e0f3e14d9e10..3a1a7eafd8c3b 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: 2024-02-19 +date: 2024-02-22 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 a3d74f5197543..740527508e516 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: 2024-02-19 +date: 2024-02-22 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/content-management-content-editor'] --- import kbnContentManagementContentEditorObj from './kbn_content_management_content_editor.devdocs.json'; diff --git a/api_docs/kbn_content_management_tabbed_table_list_view.mdx b/api_docs/kbn_content_management_tabbed_table_list_view.mdx index 36c687809ce2e..ab7c0410613dd 100644 --- a/api_docs/kbn_content_management_tabbed_table_list_view.mdx +++ b/api_docs/kbn_content_management_tabbed_table_list_view.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-content-management-tabbed-table-list-view title: "@kbn/content-management-tabbed-table-list-view" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/content-management-tabbed-table-list-view plugin -date: 2024-02-19 +date: 2024-02-22 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/content-management-tabbed-table-list-view'] --- import kbnContentManagementTabbedTableListViewObj from './kbn_content_management_tabbed_table_list_view.devdocs.json'; diff --git a/api_docs/kbn_content_management_table_list_view.mdx b/api_docs/kbn_content_management_table_list_view.mdx index 2d044838de252..98285b22b3c08 100644 --- a/api_docs/kbn_content_management_table_list_view.mdx +++ b/api_docs/kbn_content_management_table_list_view.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-content-management-table-list-view title: "@kbn/content-management-table-list-view" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/content-management-table-list-view plugin -date: 2024-02-19 +date: 2024-02-22 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/content-management-table-list-view'] --- import kbnContentManagementTableListViewObj from './kbn_content_management_table_list_view.devdocs.json'; diff --git a/api_docs/kbn_content_management_table_list_view_common.mdx b/api_docs/kbn_content_management_table_list_view_common.mdx index 98878d2fc1959..b2e866b438444 100644 --- a/api_docs/kbn_content_management_table_list_view_common.mdx +++ b/api_docs/kbn_content_management_table_list_view_common.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-content-management-table-list-view-common title: "@kbn/content-management-table-list-view-common" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/content-management-table-list-view-common plugin -date: 2024-02-19 +date: 2024-02-22 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/content-management-table-list-view-common'] --- import kbnContentManagementTableListViewCommonObj from './kbn_content_management_table_list_view_common.devdocs.json'; diff --git a/api_docs/kbn_content_management_table_list_view_table.mdx b/api_docs/kbn_content_management_table_list_view_table.mdx index 98aa20cd15d7d..8fec889394786 100644 --- a/api_docs/kbn_content_management_table_list_view_table.mdx +++ b/api_docs/kbn_content_management_table_list_view_table.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-content-management-table-list-view-table title: "@kbn/content-management-table-list-view-table" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/content-management-table-list-view-table plugin -date: 2024-02-19 +date: 2024-02-22 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/content-management-table-list-view-table'] --- import kbnContentManagementTableListViewTableObj from './kbn_content_management_table_list_view_table.devdocs.json'; diff --git a/api_docs/kbn_content_management_utils.mdx b/api_docs/kbn_content_management_utils.mdx index 53311fc2bb858..3144b0289faac 100644 --- a/api_docs/kbn_content_management_utils.mdx +++ b/api_docs/kbn_content_management_utils.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-content-management-utils title: "@kbn/content-management-utils" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/content-management-utils plugin -date: 2024-02-19 +date: 2024-02-22 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/content-management-utils'] --- import kbnContentManagementUtilsObj from './kbn_content_management_utils.devdocs.json'; diff --git a/api_docs/kbn_core_analytics_browser.mdx b/api_docs/kbn_core_analytics_browser.mdx index ee5abf5acb2e3..c6ff03c9be4af 100644 --- a/api_docs/kbn_core_analytics_browser.mdx +++ b/api_docs/kbn_core_analytics_browser.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-core-analytics-browser title: "@kbn/core-analytics-browser" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/core-analytics-browser plugin -date: 2024-02-19 +date: 2024-02-22 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/core-analytics-browser'] --- import kbnCoreAnalyticsBrowserObj from './kbn_core_analytics_browser.devdocs.json'; diff --git a/api_docs/kbn_core_analytics_browser_internal.mdx b/api_docs/kbn_core_analytics_browser_internal.mdx index b231b4afb4476..29bbfec3e6a04 100644 --- a/api_docs/kbn_core_analytics_browser_internal.mdx +++ b/api_docs/kbn_core_analytics_browser_internal.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-core-analytics-browser-internal title: "@kbn/core-analytics-browser-internal" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/core-analytics-browser-internal plugin -date: 2024-02-19 +date: 2024-02-22 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/core-analytics-browser-internal'] --- import kbnCoreAnalyticsBrowserInternalObj from './kbn_core_analytics_browser_internal.devdocs.json'; diff --git a/api_docs/kbn_core_analytics_browser_mocks.mdx b/api_docs/kbn_core_analytics_browser_mocks.mdx index c40a19d15d9cd..a7f54f37d4ce2 100644 --- a/api_docs/kbn_core_analytics_browser_mocks.mdx +++ b/api_docs/kbn_core_analytics_browser_mocks.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-core-analytics-browser-mocks title: "@kbn/core-analytics-browser-mocks" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/core-analytics-browser-mocks plugin -date: 2024-02-19 +date: 2024-02-22 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/core-analytics-browser-mocks'] --- import kbnCoreAnalyticsBrowserMocksObj from './kbn_core_analytics_browser_mocks.devdocs.json'; diff --git a/api_docs/kbn_core_analytics_server.mdx b/api_docs/kbn_core_analytics_server.mdx index 160765cbc2d15..def37757ced2a 100644 --- a/api_docs/kbn_core_analytics_server.mdx +++ b/api_docs/kbn_core_analytics_server.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-core-analytics-server title: "@kbn/core-analytics-server" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/core-analytics-server plugin -date: 2024-02-19 +date: 2024-02-22 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/core-analytics-server'] --- import kbnCoreAnalyticsServerObj from './kbn_core_analytics_server.devdocs.json'; diff --git a/api_docs/kbn_core_analytics_server_internal.mdx b/api_docs/kbn_core_analytics_server_internal.mdx index 5349bb14da070..bc0b2606b614e 100644 --- a/api_docs/kbn_core_analytics_server_internal.mdx +++ b/api_docs/kbn_core_analytics_server_internal.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-core-analytics-server-internal title: "@kbn/core-analytics-server-internal" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/core-analytics-server-internal plugin -date: 2024-02-19 +date: 2024-02-22 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/core-analytics-server-internal'] --- import kbnCoreAnalyticsServerInternalObj from './kbn_core_analytics_server_internal.devdocs.json'; diff --git a/api_docs/kbn_core_analytics_server_mocks.mdx b/api_docs/kbn_core_analytics_server_mocks.mdx index 2daa4f50c83d6..eae27e9052c7c 100644 --- a/api_docs/kbn_core_analytics_server_mocks.mdx +++ b/api_docs/kbn_core_analytics_server_mocks.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-core-analytics-server-mocks title: "@kbn/core-analytics-server-mocks" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/core-analytics-server-mocks plugin -date: 2024-02-19 +date: 2024-02-22 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/core-analytics-server-mocks'] --- import kbnCoreAnalyticsServerMocksObj from './kbn_core_analytics_server_mocks.devdocs.json'; diff --git a/api_docs/kbn_core_application_browser.mdx b/api_docs/kbn_core_application_browser.mdx index 7443cee43fd5e..4b06b1f5387aa 100644 --- a/api_docs/kbn_core_application_browser.mdx +++ b/api_docs/kbn_core_application_browser.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-core-application-browser title: "@kbn/core-application-browser" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/core-application-browser plugin -date: 2024-02-19 +date: 2024-02-22 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/core-application-browser'] --- import kbnCoreApplicationBrowserObj from './kbn_core_application_browser.devdocs.json'; diff --git a/api_docs/kbn_core_application_browser_internal.mdx b/api_docs/kbn_core_application_browser_internal.mdx index a7fcc1a46f5b7..616caec188caa 100644 --- a/api_docs/kbn_core_application_browser_internal.mdx +++ b/api_docs/kbn_core_application_browser_internal.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-core-application-browser-internal title: "@kbn/core-application-browser-internal" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/core-application-browser-internal plugin -date: 2024-02-19 +date: 2024-02-22 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/core-application-browser-internal'] --- import kbnCoreApplicationBrowserInternalObj from './kbn_core_application_browser_internal.devdocs.json'; diff --git a/api_docs/kbn_core_application_browser_mocks.mdx b/api_docs/kbn_core_application_browser_mocks.mdx index e7b9efc9e0cef..d82d31f3d3a4a 100644 --- a/api_docs/kbn_core_application_browser_mocks.mdx +++ b/api_docs/kbn_core_application_browser_mocks.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-core-application-browser-mocks title: "@kbn/core-application-browser-mocks" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/core-application-browser-mocks plugin -date: 2024-02-19 +date: 2024-02-22 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/core-application-browser-mocks'] --- import kbnCoreApplicationBrowserMocksObj from './kbn_core_application_browser_mocks.devdocs.json'; diff --git a/api_docs/kbn_core_application_common.mdx b/api_docs/kbn_core_application_common.mdx index d2569c5b93dd7..d4182d4667f9b 100644 --- a/api_docs/kbn_core_application_common.mdx +++ b/api_docs/kbn_core_application_common.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-core-application-common title: "@kbn/core-application-common" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/core-application-common plugin -date: 2024-02-19 +date: 2024-02-22 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/core-application-common'] --- import kbnCoreApplicationCommonObj from './kbn_core_application_common.devdocs.json'; diff --git a/api_docs/kbn_core_apps_browser_internal.mdx b/api_docs/kbn_core_apps_browser_internal.mdx index c623f706a8077..95a06274d65a2 100644 --- a/api_docs/kbn_core_apps_browser_internal.mdx +++ b/api_docs/kbn_core_apps_browser_internal.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-core-apps-browser-internal title: "@kbn/core-apps-browser-internal" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/core-apps-browser-internal plugin -date: 2024-02-19 +date: 2024-02-22 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/core-apps-browser-internal'] --- import kbnCoreAppsBrowserInternalObj from './kbn_core_apps_browser_internal.devdocs.json'; diff --git a/api_docs/kbn_core_apps_browser_mocks.mdx b/api_docs/kbn_core_apps_browser_mocks.mdx index dfd858ebd0afa..c49af9259b1df 100644 --- a/api_docs/kbn_core_apps_browser_mocks.mdx +++ b/api_docs/kbn_core_apps_browser_mocks.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-core-apps-browser-mocks title: "@kbn/core-apps-browser-mocks" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/core-apps-browser-mocks plugin -date: 2024-02-19 +date: 2024-02-22 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/core-apps-browser-mocks'] --- import kbnCoreAppsBrowserMocksObj from './kbn_core_apps_browser_mocks.devdocs.json'; diff --git a/api_docs/kbn_core_apps_server_internal.mdx b/api_docs/kbn_core_apps_server_internal.mdx index 1f76e87c34775..59f5145b41e1f 100644 --- a/api_docs/kbn_core_apps_server_internal.mdx +++ b/api_docs/kbn_core_apps_server_internal.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-core-apps-server-internal title: "@kbn/core-apps-server-internal" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/core-apps-server-internal plugin -date: 2024-02-19 +date: 2024-02-22 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/core-apps-server-internal'] --- import kbnCoreAppsServerInternalObj from './kbn_core_apps_server_internal.devdocs.json'; diff --git a/api_docs/kbn_core_base_browser_mocks.mdx b/api_docs/kbn_core_base_browser_mocks.mdx index 7e30bbb60371f..1473f1e49e6f4 100644 --- a/api_docs/kbn_core_base_browser_mocks.mdx +++ b/api_docs/kbn_core_base_browser_mocks.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-core-base-browser-mocks title: "@kbn/core-base-browser-mocks" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/core-base-browser-mocks plugin -date: 2024-02-19 +date: 2024-02-22 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/core-base-browser-mocks'] --- import kbnCoreBaseBrowserMocksObj from './kbn_core_base_browser_mocks.devdocs.json'; diff --git a/api_docs/kbn_core_base_common.mdx b/api_docs/kbn_core_base_common.mdx index 323768b0e77da..7623cb4f4cecf 100644 --- a/api_docs/kbn_core_base_common.mdx +++ b/api_docs/kbn_core_base_common.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-core-base-common title: "@kbn/core-base-common" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/core-base-common plugin -date: 2024-02-19 +date: 2024-02-22 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/core-base-common'] --- import kbnCoreBaseCommonObj from './kbn_core_base_common.devdocs.json'; diff --git a/api_docs/kbn_core_base_server_internal.mdx b/api_docs/kbn_core_base_server_internal.mdx index e39f15e414137..c49e7a1c2dfb8 100644 --- a/api_docs/kbn_core_base_server_internal.mdx +++ b/api_docs/kbn_core_base_server_internal.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-core-base-server-internal title: "@kbn/core-base-server-internal" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/core-base-server-internal plugin -date: 2024-02-19 +date: 2024-02-22 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/core-base-server-internal'] --- import kbnCoreBaseServerInternalObj from './kbn_core_base_server_internal.devdocs.json'; diff --git a/api_docs/kbn_core_base_server_mocks.mdx b/api_docs/kbn_core_base_server_mocks.mdx index 7f2159a288d0d..2850d92900b9e 100644 --- a/api_docs/kbn_core_base_server_mocks.mdx +++ b/api_docs/kbn_core_base_server_mocks.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-core-base-server-mocks title: "@kbn/core-base-server-mocks" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/core-base-server-mocks plugin -date: 2024-02-19 +date: 2024-02-22 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/core-base-server-mocks'] --- import kbnCoreBaseServerMocksObj from './kbn_core_base_server_mocks.devdocs.json'; diff --git a/api_docs/kbn_core_capabilities_browser_mocks.mdx b/api_docs/kbn_core_capabilities_browser_mocks.mdx index 9a2aa79becca2..cf8aa07d5932c 100644 --- a/api_docs/kbn_core_capabilities_browser_mocks.mdx +++ b/api_docs/kbn_core_capabilities_browser_mocks.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-core-capabilities-browser-mocks title: "@kbn/core-capabilities-browser-mocks" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/core-capabilities-browser-mocks plugin -date: 2024-02-19 +date: 2024-02-22 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/core-capabilities-browser-mocks'] --- import kbnCoreCapabilitiesBrowserMocksObj from './kbn_core_capabilities_browser_mocks.devdocs.json'; diff --git a/api_docs/kbn_core_capabilities_common.mdx b/api_docs/kbn_core_capabilities_common.mdx index aefb1370d0dfe..d7e46e26f9a77 100644 --- a/api_docs/kbn_core_capabilities_common.mdx +++ b/api_docs/kbn_core_capabilities_common.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-core-capabilities-common title: "@kbn/core-capabilities-common" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/core-capabilities-common plugin -date: 2024-02-19 +date: 2024-02-22 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/core-capabilities-common'] --- import kbnCoreCapabilitiesCommonObj from './kbn_core_capabilities_common.devdocs.json'; diff --git a/api_docs/kbn_core_capabilities_server.mdx b/api_docs/kbn_core_capabilities_server.mdx index aab77354f1db2..4ec60b95b99a0 100644 --- a/api_docs/kbn_core_capabilities_server.mdx +++ b/api_docs/kbn_core_capabilities_server.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-core-capabilities-server title: "@kbn/core-capabilities-server" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/core-capabilities-server plugin -date: 2024-02-19 +date: 2024-02-22 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/core-capabilities-server'] --- import kbnCoreCapabilitiesServerObj from './kbn_core_capabilities_server.devdocs.json'; diff --git a/api_docs/kbn_core_capabilities_server_mocks.mdx b/api_docs/kbn_core_capabilities_server_mocks.mdx index a95a56b4633d6..aad8eb56e06d7 100644 --- a/api_docs/kbn_core_capabilities_server_mocks.mdx +++ b/api_docs/kbn_core_capabilities_server_mocks.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-core-capabilities-server-mocks title: "@kbn/core-capabilities-server-mocks" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/core-capabilities-server-mocks plugin -date: 2024-02-19 +date: 2024-02-22 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/core-capabilities-server-mocks'] --- import kbnCoreCapabilitiesServerMocksObj from './kbn_core_capabilities_server_mocks.devdocs.json'; diff --git a/api_docs/kbn_core_chrome_browser.mdx b/api_docs/kbn_core_chrome_browser.mdx index b4a60e51d3398..defb106053dfc 100644 --- a/api_docs/kbn_core_chrome_browser.mdx +++ b/api_docs/kbn_core_chrome_browser.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-core-chrome-browser title: "@kbn/core-chrome-browser" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/core-chrome-browser plugin -date: 2024-02-19 +date: 2024-02-22 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/core-chrome-browser'] --- import kbnCoreChromeBrowserObj from './kbn_core_chrome_browser.devdocs.json'; diff --git a/api_docs/kbn_core_chrome_browser_mocks.mdx b/api_docs/kbn_core_chrome_browser_mocks.mdx index 646a2368724d0..fb051241e755f 100644 --- a/api_docs/kbn_core_chrome_browser_mocks.mdx +++ b/api_docs/kbn_core_chrome_browser_mocks.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-core-chrome-browser-mocks title: "@kbn/core-chrome-browser-mocks" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/core-chrome-browser-mocks plugin -date: 2024-02-19 +date: 2024-02-22 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/core-chrome-browser-mocks'] --- import kbnCoreChromeBrowserMocksObj from './kbn_core_chrome_browser_mocks.devdocs.json'; diff --git a/api_docs/kbn_core_config_server_internal.mdx b/api_docs/kbn_core_config_server_internal.mdx index 5e19ee8a17115..c13460acff27f 100644 --- a/api_docs/kbn_core_config_server_internal.mdx +++ b/api_docs/kbn_core_config_server_internal.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-core-config-server-internal title: "@kbn/core-config-server-internal" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/core-config-server-internal plugin -date: 2024-02-19 +date: 2024-02-22 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/core-config-server-internal'] --- import kbnCoreConfigServerInternalObj from './kbn_core_config_server_internal.devdocs.json'; diff --git a/api_docs/kbn_core_custom_branding_browser.mdx b/api_docs/kbn_core_custom_branding_browser.mdx index 4a3930ae4f6df..e1c3190afd70d 100644 --- a/api_docs/kbn_core_custom_branding_browser.mdx +++ b/api_docs/kbn_core_custom_branding_browser.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-core-custom-branding-browser title: "@kbn/core-custom-branding-browser" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/core-custom-branding-browser plugin -date: 2024-02-19 +date: 2024-02-22 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/core-custom-branding-browser'] --- import kbnCoreCustomBrandingBrowserObj from './kbn_core_custom_branding_browser.devdocs.json'; diff --git a/api_docs/kbn_core_custom_branding_browser_internal.mdx b/api_docs/kbn_core_custom_branding_browser_internal.mdx index dc3425681304f..fdf5a99bf90af 100644 --- a/api_docs/kbn_core_custom_branding_browser_internal.mdx +++ b/api_docs/kbn_core_custom_branding_browser_internal.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-core-custom-branding-browser-internal title: "@kbn/core-custom-branding-browser-internal" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/core-custom-branding-browser-internal plugin -date: 2024-02-19 +date: 2024-02-22 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/core-custom-branding-browser-internal'] --- import kbnCoreCustomBrandingBrowserInternalObj from './kbn_core_custom_branding_browser_internal.devdocs.json'; diff --git a/api_docs/kbn_core_custom_branding_browser_mocks.mdx b/api_docs/kbn_core_custom_branding_browser_mocks.mdx index c71bb0aae06ff..52101d58842c2 100644 --- a/api_docs/kbn_core_custom_branding_browser_mocks.mdx +++ b/api_docs/kbn_core_custom_branding_browser_mocks.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-core-custom-branding-browser-mocks title: "@kbn/core-custom-branding-browser-mocks" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/core-custom-branding-browser-mocks plugin -date: 2024-02-19 +date: 2024-02-22 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/core-custom-branding-browser-mocks'] --- import kbnCoreCustomBrandingBrowserMocksObj from './kbn_core_custom_branding_browser_mocks.devdocs.json'; diff --git a/api_docs/kbn_core_custom_branding_common.mdx b/api_docs/kbn_core_custom_branding_common.mdx index 6202e7132d5df..74f3b39cd6798 100644 --- a/api_docs/kbn_core_custom_branding_common.mdx +++ b/api_docs/kbn_core_custom_branding_common.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-core-custom-branding-common title: "@kbn/core-custom-branding-common" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/core-custom-branding-common plugin -date: 2024-02-19 +date: 2024-02-22 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/core-custom-branding-common'] --- import kbnCoreCustomBrandingCommonObj from './kbn_core_custom_branding_common.devdocs.json'; diff --git a/api_docs/kbn_core_custom_branding_server.mdx b/api_docs/kbn_core_custom_branding_server.mdx index d525b8f56169b..8d8f053d26cf8 100644 --- a/api_docs/kbn_core_custom_branding_server.mdx +++ b/api_docs/kbn_core_custom_branding_server.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-core-custom-branding-server title: "@kbn/core-custom-branding-server" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/core-custom-branding-server plugin -date: 2024-02-19 +date: 2024-02-22 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/core-custom-branding-server'] --- import kbnCoreCustomBrandingServerObj from './kbn_core_custom_branding_server.devdocs.json'; diff --git a/api_docs/kbn_core_custom_branding_server_internal.mdx b/api_docs/kbn_core_custom_branding_server_internal.mdx index 7ff4531fa9bdf..857f0d3251a9d 100644 --- a/api_docs/kbn_core_custom_branding_server_internal.mdx +++ b/api_docs/kbn_core_custom_branding_server_internal.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-core-custom-branding-server-internal title: "@kbn/core-custom-branding-server-internal" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/core-custom-branding-server-internal plugin -date: 2024-02-19 +date: 2024-02-22 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/core-custom-branding-server-internal'] --- import kbnCoreCustomBrandingServerInternalObj from './kbn_core_custom_branding_server_internal.devdocs.json'; diff --git a/api_docs/kbn_core_custom_branding_server_mocks.mdx b/api_docs/kbn_core_custom_branding_server_mocks.mdx index 232b1796aa49b..f60addcbdf066 100644 --- a/api_docs/kbn_core_custom_branding_server_mocks.mdx +++ b/api_docs/kbn_core_custom_branding_server_mocks.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-core-custom-branding-server-mocks title: "@kbn/core-custom-branding-server-mocks" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/core-custom-branding-server-mocks plugin -date: 2024-02-19 +date: 2024-02-22 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/core-custom-branding-server-mocks'] --- import kbnCoreCustomBrandingServerMocksObj from './kbn_core_custom_branding_server_mocks.devdocs.json'; diff --git a/api_docs/kbn_core_deprecations_browser.mdx b/api_docs/kbn_core_deprecations_browser.mdx index ee9dbfe878e36..c334d4cad66ee 100644 --- a/api_docs/kbn_core_deprecations_browser.mdx +++ b/api_docs/kbn_core_deprecations_browser.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-core-deprecations-browser title: "@kbn/core-deprecations-browser" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/core-deprecations-browser plugin -date: 2024-02-19 +date: 2024-02-22 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/core-deprecations-browser'] --- import kbnCoreDeprecationsBrowserObj from './kbn_core_deprecations_browser.devdocs.json'; diff --git a/api_docs/kbn_core_deprecations_browser_internal.mdx b/api_docs/kbn_core_deprecations_browser_internal.mdx index b0e2c532adaba..b144d2b1d49e9 100644 --- a/api_docs/kbn_core_deprecations_browser_internal.mdx +++ b/api_docs/kbn_core_deprecations_browser_internal.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-core-deprecations-browser-internal title: "@kbn/core-deprecations-browser-internal" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/core-deprecations-browser-internal plugin -date: 2024-02-19 +date: 2024-02-22 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/core-deprecations-browser-internal'] --- import kbnCoreDeprecationsBrowserInternalObj from './kbn_core_deprecations_browser_internal.devdocs.json'; diff --git a/api_docs/kbn_core_deprecations_browser_mocks.mdx b/api_docs/kbn_core_deprecations_browser_mocks.mdx index 2b8f9d51201b8..9d9aa13539f97 100644 --- a/api_docs/kbn_core_deprecations_browser_mocks.mdx +++ b/api_docs/kbn_core_deprecations_browser_mocks.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-core-deprecations-browser-mocks title: "@kbn/core-deprecations-browser-mocks" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/core-deprecations-browser-mocks plugin -date: 2024-02-19 +date: 2024-02-22 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/core-deprecations-browser-mocks'] --- import kbnCoreDeprecationsBrowserMocksObj from './kbn_core_deprecations_browser_mocks.devdocs.json'; diff --git a/api_docs/kbn_core_deprecations_common.mdx b/api_docs/kbn_core_deprecations_common.mdx index f8484fc9b244b..b062c6d13101e 100644 --- a/api_docs/kbn_core_deprecations_common.mdx +++ b/api_docs/kbn_core_deprecations_common.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-core-deprecations-common title: "@kbn/core-deprecations-common" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/core-deprecations-common plugin -date: 2024-02-19 +date: 2024-02-22 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/core-deprecations-common'] --- import kbnCoreDeprecationsCommonObj from './kbn_core_deprecations_common.devdocs.json'; diff --git a/api_docs/kbn_core_deprecations_server.mdx b/api_docs/kbn_core_deprecations_server.mdx index 772fdb071ea8a..b3ade3465e999 100644 --- a/api_docs/kbn_core_deprecations_server.mdx +++ b/api_docs/kbn_core_deprecations_server.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-core-deprecations-server title: "@kbn/core-deprecations-server" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/core-deprecations-server plugin -date: 2024-02-19 +date: 2024-02-22 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/core-deprecations-server'] --- import kbnCoreDeprecationsServerObj from './kbn_core_deprecations_server.devdocs.json'; diff --git a/api_docs/kbn_core_deprecations_server_internal.mdx b/api_docs/kbn_core_deprecations_server_internal.mdx index 0e1bd44748c38..dbc9a7a12ed4b 100644 --- a/api_docs/kbn_core_deprecations_server_internal.mdx +++ b/api_docs/kbn_core_deprecations_server_internal.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-core-deprecations-server-internal title: "@kbn/core-deprecations-server-internal" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/core-deprecations-server-internal plugin -date: 2024-02-19 +date: 2024-02-22 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/core-deprecations-server-internal'] --- import kbnCoreDeprecationsServerInternalObj from './kbn_core_deprecations_server_internal.devdocs.json'; diff --git a/api_docs/kbn_core_deprecations_server_mocks.mdx b/api_docs/kbn_core_deprecations_server_mocks.mdx index 90b50df987885..662bdc8866cb7 100644 --- a/api_docs/kbn_core_deprecations_server_mocks.mdx +++ b/api_docs/kbn_core_deprecations_server_mocks.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-core-deprecations-server-mocks title: "@kbn/core-deprecations-server-mocks" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/core-deprecations-server-mocks plugin -date: 2024-02-19 +date: 2024-02-22 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/core-deprecations-server-mocks'] --- import kbnCoreDeprecationsServerMocksObj from './kbn_core_deprecations_server_mocks.devdocs.json'; diff --git a/api_docs/kbn_core_doc_links_browser.mdx b/api_docs/kbn_core_doc_links_browser.mdx index cceab885adc5f..2cbd23108b939 100644 --- a/api_docs/kbn_core_doc_links_browser.mdx +++ b/api_docs/kbn_core_doc_links_browser.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-core-doc-links-browser title: "@kbn/core-doc-links-browser" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/core-doc-links-browser plugin -date: 2024-02-19 +date: 2024-02-22 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/core-doc-links-browser'] --- import kbnCoreDocLinksBrowserObj from './kbn_core_doc_links_browser.devdocs.json'; diff --git a/api_docs/kbn_core_doc_links_browser_mocks.mdx b/api_docs/kbn_core_doc_links_browser_mocks.mdx index 642129644e984..cb88719af9495 100644 --- a/api_docs/kbn_core_doc_links_browser_mocks.mdx +++ b/api_docs/kbn_core_doc_links_browser_mocks.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-core-doc-links-browser-mocks title: "@kbn/core-doc-links-browser-mocks" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/core-doc-links-browser-mocks plugin -date: 2024-02-19 +date: 2024-02-22 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/core-doc-links-browser-mocks'] --- import kbnCoreDocLinksBrowserMocksObj from './kbn_core_doc_links_browser_mocks.devdocs.json'; diff --git a/api_docs/kbn_core_doc_links_server.mdx b/api_docs/kbn_core_doc_links_server.mdx index 4068fb0ad6bad..8150b34ab4f71 100644 --- a/api_docs/kbn_core_doc_links_server.mdx +++ b/api_docs/kbn_core_doc_links_server.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-core-doc-links-server title: "@kbn/core-doc-links-server" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/core-doc-links-server plugin -date: 2024-02-19 +date: 2024-02-22 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/core-doc-links-server'] --- import kbnCoreDocLinksServerObj from './kbn_core_doc_links_server.devdocs.json'; diff --git a/api_docs/kbn_core_doc_links_server_mocks.mdx b/api_docs/kbn_core_doc_links_server_mocks.mdx index 06d76de22ee0e..56f7207fcf105 100644 --- a/api_docs/kbn_core_doc_links_server_mocks.mdx +++ b/api_docs/kbn_core_doc_links_server_mocks.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-core-doc-links-server-mocks title: "@kbn/core-doc-links-server-mocks" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/core-doc-links-server-mocks plugin -date: 2024-02-19 +date: 2024-02-22 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/core-doc-links-server-mocks'] --- import kbnCoreDocLinksServerMocksObj from './kbn_core_doc_links_server_mocks.devdocs.json'; diff --git a/api_docs/kbn_core_elasticsearch_client_server_internal.mdx b/api_docs/kbn_core_elasticsearch_client_server_internal.mdx index 5601ee7528577..63dce4cb8734e 100644 --- a/api_docs/kbn_core_elasticsearch_client_server_internal.mdx +++ b/api_docs/kbn_core_elasticsearch_client_server_internal.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-core-elasticsearch-client-server-internal title: "@kbn/core-elasticsearch-client-server-internal" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/core-elasticsearch-client-server-internal plugin -date: 2024-02-19 +date: 2024-02-22 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/core-elasticsearch-client-server-internal'] --- import kbnCoreElasticsearchClientServerInternalObj from './kbn_core_elasticsearch_client_server_internal.devdocs.json'; diff --git a/api_docs/kbn_core_elasticsearch_client_server_mocks.mdx b/api_docs/kbn_core_elasticsearch_client_server_mocks.mdx index 5ea4d3164fbec..33a12ba502f00 100644 --- a/api_docs/kbn_core_elasticsearch_client_server_mocks.mdx +++ b/api_docs/kbn_core_elasticsearch_client_server_mocks.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-core-elasticsearch-client-server-mocks title: "@kbn/core-elasticsearch-client-server-mocks" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/core-elasticsearch-client-server-mocks plugin -date: 2024-02-19 +date: 2024-02-22 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/core-elasticsearch-client-server-mocks'] --- import kbnCoreElasticsearchClientServerMocksObj from './kbn_core_elasticsearch_client_server_mocks.devdocs.json'; diff --git a/api_docs/kbn_core_elasticsearch_server.mdx b/api_docs/kbn_core_elasticsearch_server.mdx index 6a04e647daa47..43173585fb64e 100644 --- a/api_docs/kbn_core_elasticsearch_server.mdx +++ b/api_docs/kbn_core_elasticsearch_server.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-core-elasticsearch-server title: "@kbn/core-elasticsearch-server" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/core-elasticsearch-server plugin -date: 2024-02-19 +date: 2024-02-22 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/core-elasticsearch-server'] --- import kbnCoreElasticsearchServerObj from './kbn_core_elasticsearch_server.devdocs.json'; diff --git a/api_docs/kbn_core_elasticsearch_server_internal.mdx b/api_docs/kbn_core_elasticsearch_server_internal.mdx index 1c44389c221ce..1bb37bcdad16b 100644 --- a/api_docs/kbn_core_elasticsearch_server_internal.mdx +++ b/api_docs/kbn_core_elasticsearch_server_internal.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-core-elasticsearch-server-internal title: "@kbn/core-elasticsearch-server-internal" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/core-elasticsearch-server-internal plugin -date: 2024-02-19 +date: 2024-02-22 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/core-elasticsearch-server-internal'] --- import kbnCoreElasticsearchServerInternalObj from './kbn_core_elasticsearch_server_internal.devdocs.json'; diff --git a/api_docs/kbn_core_elasticsearch_server_mocks.mdx b/api_docs/kbn_core_elasticsearch_server_mocks.mdx index 802251c9006a9..e0fc87bc2ce02 100644 --- a/api_docs/kbn_core_elasticsearch_server_mocks.mdx +++ b/api_docs/kbn_core_elasticsearch_server_mocks.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-core-elasticsearch-server-mocks title: "@kbn/core-elasticsearch-server-mocks" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/core-elasticsearch-server-mocks plugin -date: 2024-02-19 +date: 2024-02-22 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/core-elasticsearch-server-mocks'] --- import kbnCoreElasticsearchServerMocksObj from './kbn_core_elasticsearch_server_mocks.devdocs.json'; diff --git a/api_docs/kbn_core_environment_server_internal.mdx b/api_docs/kbn_core_environment_server_internal.mdx index a42b409ff4b8e..d645360b1ee37 100644 --- a/api_docs/kbn_core_environment_server_internal.mdx +++ b/api_docs/kbn_core_environment_server_internal.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-core-environment-server-internal title: "@kbn/core-environment-server-internal" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/core-environment-server-internal plugin -date: 2024-02-19 +date: 2024-02-22 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/core-environment-server-internal'] --- import kbnCoreEnvironmentServerInternalObj from './kbn_core_environment_server_internal.devdocs.json'; diff --git a/api_docs/kbn_core_environment_server_mocks.mdx b/api_docs/kbn_core_environment_server_mocks.mdx index 52063e6e5e773..513c0ce1faf12 100644 --- a/api_docs/kbn_core_environment_server_mocks.mdx +++ b/api_docs/kbn_core_environment_server_mocks.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-core-environment-server-mocks title: "@kbn/core-environment-server-mocks" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/core-environment-server-mocks plugin -date: 2024-02-19 +date: 2024-02-22 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/core-environment-server-mocks'] --- import kbnCoreEnvironmentServerMocksObj from './kbn_core_environment_server_mocks.devdocs.json'; diff --git a/api_docs/kbn_core_execution_context_browser.mdx b/api_docs/kbn_core_execution_context_browser.mdx index 43ef889e84708..7fb432bb2bef6 100644 --- a/api_docs/kbn_core_execution_context_browser.mdx +++ b/api_docs/kbn_core_execution_context_browser.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-core-execution-context-browser title: "@kbn/core-execution-context-browser" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/core-execution-context-browser plugin -date: 2024-02-19 +date: 2024-02-22 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/core-execution-context-browser'] --- import kbnCoreExecutionContextBrowserObj from './kbn_core_execution_context_browser.devdocs.json'; diff --git a/api_docs/kbn_core_execution_context_browser_internal.mdx b/api_docs/kbn_core_execution_context_browser_internal.mdx index c9f88a6d577a7..7ff010e1229df 100644 --- a/api_docs/kbn_core_execution_context_browser_internal.mdx +++ b/api_docs/kbn_core_execution_context_browser_internal.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-core-execution-context-browser-internal title: "@kbn/core-execution-context-browser-internal" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/core-execution-context-browser-internal plugin -date: 2024-02-19 +date: 2024-02-22 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/core-execution-context-browser-internal'] --- import kbnCoreExecutionContextBrowserInternalObj from './kbn_core_execution_context_browser_internal.devdocs.json'; diff --git a/api_docs/kbn_core_execution_context_browser_mocks.mdx b/api_docs/kbn_core_execution_context_browser_mocks.mdx index 8e09bc903fade..82316c534b724 100644 --- a/api_docs/kbn_core_execution_context_browser_mocks.mdx +++ b/api_docs/kbn_core_execution_context_browser_mocks.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-core-execution-context-browser-mocks title: "@kbn/core-execution-context-browser-mocks" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/core-execution-context-browser-mocks plugin -date: 2024-02-19 +date: 2024-02-22 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/core-execution-context-browser-mocks'] --- import kbnCoreExecutionContextBrowserMocksObj from './kbn_core_execution_context_browser_mocks.devdocs.json'; diff --git a/api_docs/kbn_core_execution_context_common.mdx b/api_docs/kbn_core_execution_context_common.mdx index 3fc0d002df5ba..b0a7e00b5b964 100644 --- a/api_docs/kbn_core_execution_context_common.mdx +++ b/api_docs/kbn_core_execution_context_common.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-core-execution-context-common title: "@kbn/core-execution-context-common" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/core-execution-context-common plugin -date: 2024-02-19 +date: 2024-02-22 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/core-execution-context-common'] --- import kbnCoreExecutionContextCommonObj from './kbn_core_execution_context_common.devdocs.json'; diff --git a/api_docs/kbn_core_execution_context_server.mdx b/api_docs/kbn_core_execution_context_server.mdx index 8524db0384857..700c0038c45ae 100644 --- a/api_docs/kbn_core_execution_context_server.mdx +++ b/api_docs/kbn_core_execution_context_server.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-core-execution-context-server title: "@kbn/core-execution-context-server" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/core-execution-context-server plugin -date: 2024-02-19 +date: 2024-02-22 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/core-execution-context-server'] --- import kbnCoreExecutionContextServerObj from './kbn_core_execution_context_server.devdocs.json'; diff --git a/api_docs/kbn_core_execution_context_server_internal.mdx b/api_docs/kbn_core_execution_context_server_internal.mdx index 7e130e5d9c6a1..a0c78a1bc1c8e 100644 --- a/api_docs/kbn_core_execution_context_server_internal.mdx +++ b/api_docs/kbn_core_execution_context_server_internal.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-core-execution-context-server-internal title: "@kbn/core-execution-context-server-internal" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/core-execution-context-server-internal plugin -date: 2024-02-19 +date: 2024-02-22 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/core-execution-context-server-internal'] --- import kbnCoreExecutionContextServerInternalObj from './kbn_core_execution_context_server_internal.devdocs.json'; diff --git a/api_docs/kbn_core_execution_context_server_mocks.mdx b/api_docs/kbn_core_execution_context_server_mocks.mdx index 8f0b12a3f5525..ea597018c3ed7 100644 --- a/api_docs/kbn_core_execution_context_server_mocks.mdx +++ b/api_docs/kbn_core_execution_context_server_mocks.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-core-execution-context-server-mocks title: "@kbn/core-execution-context-server-mocks" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/core-execution-context-server-mocks plugin -date: 2024-02-19 +date: 2024-02-22 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/core-execution-context-server-mocks'] --- import kbnCoreExecutionContextServerMocksObj from './kbn_core_execution_context_server_mocks.devdocs.json'; diff --git a/api_docs/kbn_core_fatal_errors_browser.mdx b/api_docs/kbn_core_fatal_errors_browser.mdx index cdc4101e48eba..7adb7f42c6119 100644 --- a/api_docs/kbn_core_fatal_errors_browser.mdx +++ b/api_docs/kbn_core_fatal_errors_browser.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-core-fatal-errors-browser title: "@kbn/core-fatal-errors-browser" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/core-fatal-errors-browser plugin -date: 2024-02-19 +date: 2024-02-22 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/core-fatal-errors-browser'] --- import kbnCoreFatalErrorsBrowserObj from './kbn_core_fatal_errors_browser.devdocs.json'; diff --git a/api_docs/kbn_core_fatal_errors_browser_mocks.mdx b/api_docs/kbn_core_fatal_errors_browser_mocks.mdx index 97285cc88f7e9..4169719341ebf 100644 --- a/api_docs/kbn_core_fatal_errors_browser_mocks.mdx +++ b/api_docs/kbn_core_fatal_errors_browser_mocks.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-core-fatal-errors-browser-mocks title: "@kbn/core-fatal-errors-browser-mocks" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/core-fatal-errors-browser-mocks plugin -date: 2024-02-19 +date: 2024-02-22 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/core-fatal-errors-browser-mocks'] --- import kbnCoreFatalErrorsBrowserMocksObj from './kbn_core_fatal_errors_browser_mocks.devdocs.json'; diff --git a/api_docs/kbn_core_http_browser.mdx b/api_docs/kbn_core_http_browser.mdx index 7345705ad1342..84b03273fe33a 100644 --- a/api_docs/kbn_core_http_browser.mdx +++ b/api_docs/kbn_core_http_browser.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-core-http-browser title: "@kbn/core-http-browser" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/core-http-browser plugin -date: 2024-02-19 +date: 2024-02-22 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/core-http-browser'] --- import kbnCoreHttpBrowserObj from './kbn_core_http_browser.devdocs.json'; diff --git a/api_docs/kbn_core_http_browser_internal.mdx b/api_docs/kbn_core_http_browser_internal.mdx index 87cd192f62fe7..4addd3083a051 100644 --- a/api_docs/kbn_core_http_browser_internal.mdx +++ b/api_docs/kbn_core_http_browser_internal.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-core-http-browser-internal title: "@kbn/core-http-browser-internal" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/core-http-browser-internal plugin -date: 2024-02-19 +date: 2024-02-22 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/core-http-browser-internal'] --- import kbnCoreHttpBrowserInternalObj from './kbn_core_http_browser_internal.devdocs.json'; diff --git a/api_docs/kbn_core_http_browser_mocks.mdx b/api_docs/kbn_core_http_browser_mocks.mdx index 5efd0caf66b95..3dbc34d3a8c3f 100644 --- a/api_docs/kbn_core_http_browser_mocks.mdx +++ b/api_docs/kbn_core_http_browser_mocks.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-core-http-browser-mocks title: "@kbn/core-http-browser-mocks" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/core-http-browser-mocks plugin -date: 2024-02-19 +date: 2024-02-22 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/core-http-browser-mocks'] --- import kbnCoreHttpBrowserMocksObj from './kbn_core_http_browser_mocks.devdocs.json'; diff --git a/api_docs/kbn_core_http_common.mdx b/api_docs/kbn_core_http_common.mdx index 71d1bfe254a5b..50a3b2f780353 100644 --- a/api_docs/kbn_core_http_common.mdx +++ b/api_docs/kbn_core_http_common.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-core-http-common title: "@kbn/core-http-common" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/core-http-common plugin -date: 2024-02-19 +date: 2024-02-22 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/core-http-common'] --- import kbnCoreHttpCommonObj from './kbn_core_http_common.devdocs.json'; diff --git a/api_docs/kbn_core_http_context_server_mocks.mdx b/api_docs/kbn_core_http_context_server_mocks.mdx index d031cc0e265b7..fdbc4d6828347 100644 --- a/api_docs/kbn_core_http_context_server_mocks.mdx +++ b/api_docs/kbn_core_http_context_server_mocks.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-core-http-context-server-mocks title: "@kbn/core-http-context-server-mocks" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/core-http-context-server-mocks plugin -date: 2024-02-19 +date: 2024-02-22 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/core-http-context-server-mocks'] --- import kbnCoreHttpContextServerMocksObj from './kbn_core_http_context_server_mocks.devdocs.json'; diff --git a/api_docs/kbn_core_http_request_handler_context_server.mdx b/api_docs/kbn_core_http_request_handler_context_server.mdx index bdf31d5e4dfbe..c310db29475d2 100644 --- a/api_docs/kbn_core_http_request_handler_context_server.mdx +++ b/api_docs/kbn_core_http_request_handler_context_server.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-core-http-request-handler-context-server title: "@kbn/core-http-request-handler-context-server" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/core-http-request-handler-context-server plugin -date: 2024-02-19 +date: 2024-02-22 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/core-http-request-handler-context-server'] --- import kbnCoreHttpRequestHandlerContextServerObj from './kbn_core_http_request_handler_context_server.devdocs.json'; diff --git a/api_docs/kbn_core_http_resources_server.mdx b/api_docs/kbn_core_http_resources_server.mdx index c11aa9b74bf24..11296b1b0d442 100644 --- a/api_docs/kbn_core_http_resources_server.mdx +++ b/api_docs/kbn_core_http_resources_server.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-core-http-resources-server title: "@kbn/core-http-resources-server" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/core-http-resources-server plugin -date: 2024-02-19 +date: 2024-02-22 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/core-http-resources-server'] --- import kbnCoreHttpResourcesServerObj from './kbn_core_http_resources_server.devdocs.json'; diff --git a/api_docs/kbn_core_http_resources_server_internal.mdx b/api_docs/kbn_core_http_resources_server_internal.mdx index 61de2d0a17e8e..95400d993bdd7 100644 --- a/api_docs/kbn_core_http_resources_server_internal.mdx +++ b/api_docs/kbn_core_http_resources_server_internal.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-core-http-resources-server-internal title: "@kbn/core-http-resources-server-internal" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/core-http-resources-server-internal plugin -date: 2024-02-19 +date: 2024-02-22 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/core-http-resources-server-internal'] --- import kbnCoreHttpResourcesServerInternalObj from './kbn_core_http_resources_server_internal.devdocs.json'; diff --git a/api_docs/kbn_core_http_resources_server_mocks.mdx b/api_docs/kbn_core_http_resources_server_mocks.mdx index a7dd4caf8ad08..c54617f12997b 100644 --- a/api_docs/kbn_core_http_resources_server_mocks.mdx +++ b/api_docs/kbn_core_http_resources_server_mocks.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-core-http-resources-server-mocks title: "@kbn/core-http-resources-server-mocks" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/core-http-resources-server-mocks plugin -date: 2024-02-19 +date: 2024-02-22 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/core-http-resources-server-mocks'] --- import kbnCoreHttpResourcesServerMocksObj from './kbn_core_http_resources_server_mocks.devdocs.json'; diff --git a/api_docs/kbn_core_http_router_server_internal.mdx b/api_docs/kbn_core_http_router_server_internal.mdx index 97d4c166726ff..3aa98cfaaaac6 100644 --- a/api_docs/kbn_core_http_router_server_internal.mdx +++ b/api_docs/kbn_core_http_router_server_internal.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-core-http-router-server-internal title: "@kbn/core-http-router-server-internal" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/core-http-router-server-internal plugin -date: 2024-02-19 +date: 2024-02-22 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/core-http-router-server-internal'] --- import kbnCoreHttpRouterServerInternalObj from './kbn_core_http_router_server_internal.devdocs.json'; diff --git a/api_docs/kbn_core_http_router_server_mocks.mdx b/api_docs/kbn_core_http_router_server_mocks.mdx index e2ba432dabd1f..e640ca30f1d2c 100644 --- a/api_docs/kbn_core_http_router_server_mocks.mdx +++ b/api_docs/kbn_core_http_router_server_mocks.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-core-http-router-server-mocks title: "@kbn/core-http-router-server-mocks" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/core-http-router-server-mocks plugin -date: 2024-02-19 +date: 2024-02-22 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/core-http-router-server-mocks'] --- import kbnCoreHttpRouterServerMocksObj from './kbn_core_http_router_server_mocks.devdocs.json'; diff --git a/api_docs/kbn_core_http_server.devdocs.json b/api_docs/kbn_core_http_server.devdocs.json index d56e5d791e0fe..c16ee3e43d622 100644 --- a/api_docs/kbn_core_http_server.devdocs.json +++ b/api_docs/kbn_core_http_server.devdocs.json @@ -24,9 +24,7 @@ "type": "Class", "tags": [], "label": "RouteValidationError", - "description": [ - "\nError to return when the validation is not successful." - ], + "description": ["\nError to return when the validation is not successful."], "signature": [ { "pluginId": "@kbn/core-http-server", @@ -55,9 +53,7 @@ "tags": [], "label": "Constructor", "description": [], - "signature": [ - "any" - ], + "signature": ["any"], "path": "packages/core/http/core-http-server/src/router/route_validator.ts", "deprecated": false, "trackAdoption": false, @@ -69,9 +65,7 @@ "tags": [], "label": "error", "description": [], - "signature": [ - "string | Error" - ], + "signature": ["string | Error"], "path": "packages/core/http/core-http-server/src/router/route_validator.ts", "deprecated": false, "trackAdoption": false, @@ -84,9 +78,7 @@ "tags": [], "label": "path", "description": [], - "signature": [ - "string[]" - ], + "signature": ["string[]"], "path": "packages/core/http/core-http-server/src/router/route_validator.ts", "deprecated": false, "trackAdoption": false, @@ -130,9 +122,7 @@ "type": "string", "tags": [], "label": "version", - "description": [ - "\nVersion to assign to this route" - ], + "description": ["\nVersion to assign to this route"], "path": "packages/core/http/core-http-server/src/versioning/types.ts", "deprecated": false, "trackAdoption": false @@ -143,9 +133,7 @@ "type": "CompoundType", "tags": [], "label": "validate", - "description": [ - "\nValidation for this version of a route" - ], + "description": ["\nValidation for this version of a route"], "signature": [ "false | ", { @@ -170,9 +158,7 @@ "type": "Interface", "tags": [], "label": "AuthRedirectedParams", - "description": [ - "\nResult of auth redirection." - ], + "description": ["\nResult of auth redirection."], "path": "packages/core/http/core-http-server/src/lifecycle/auth.ts", "deprecated": false, "trackAdoption": false, @@ -296,9 +282,7 @@ "type": "Interface", "tags": [], "label": "AuthResultParams", - "description": [ - "\nResult of successful authentication." - ], + "description": ["\nResult of successful authentication."], "path": "packages/core/http/core-http-server/src/lifecycle/auth.ts", "deprecated": false, "trackAdoption": false, @@ -312,9 +296,7 @@ "description": [ "\nData to associate with an incoming request. Any downstream plugin may get access to the data." ], - "signature": [ - "Record | undefined" - ], + "signature": ["Record | undefined"], "path": "packages/core/http/core-http-server/src/lifecycle/auth.ts", "deprecated": false, "trackAdoption": false @@ -577,9 +559,7 @@ "type": "Interface", "tags": [], "label": "CustomHttpResponseOptions", - "description": [ - "\nHTTP response parameters for a response with adjustable status code." - ], + "description": ["\nHTTP response parameters for a response with adjustable status code."], "signature": [ { "pluginId": "@kbn/core-http-server", @@ -600,12 +580,8 @@ "type": "Uncategorized", "tags": [], "label": "body", - "description": [ - "HTTP message to send to the client" - ], - "signature": [ - "T | undefined" - ], + "description": ["HTTP message to send to the client"], + "signature": ["T | undefined"], "path": "packages/core/http/core-http-server/src/router/response.ts", "deprecated": false, "trackAdoption": false @@ -616,9 +592,7 @@ "type": "CompoundType", "tags": [], "label": "headers", - "description": [ - "HTTP Headers with additional information about response" - ], + "description": ["HTTP Headers with additional information about response"], "signature": [ { "pluginId": "@kbn/core-http-server", @@ -639,12 +613,8 @@ "type": "CompoundType", "tags": [], "label": "bypassErrorFormat", - "description": [ - "Bypass the default error formatting" - ], - "signature": [ - "boolean | undefined" - ], + "description": ["Bypass the default error formatting"], + "signature": ["boolean | undefined"], "path": "packages/core/http/core-http-server/src/router/response.ts", "deprecated": false, "trackAdoption": false @@ -669,9 +639,7 @@ "type": "Interface", "tags": [], "label": "ErrorHttpResponseOptions", - "description": [ - "\nHTTP response parameters" - ], + "description": ["\nHTTP response parameters"], "path": "packages/core/http/core-http-server/src/router/response.ts", "deprecated": false, "trackAdoption": false, @@ -682,9 +650,7 @@ "type": "CompoundType", "tags": [], "label": "body", - "description": [ - "HTTP message to send to the client" - ], + "description": ["HTTP message to send to the client"], "signature": [ { "pluginId": "@kbn/core-http-server", @@ -705,9 +671,7 @@ "type": "CompoundType", "tags": [], "label": "headers", - "description": [ - "HTTP Headers with additional information about response" - ], + "description": ["HTTP Headers with additional information about response"], "signature": [ { "pluginId": "@kbn/core-http-server", @@ -744,9 +708,7 @@ "type": "CompoundType", "tags": [], "label": "headers", - "description": [ - "The headers associated with the request." - ], + "description": ["The headers associated with the request."], "signature": [ "{ date?: string | string[] | undefined; warning?: string | string[] | undefined; location?: string | string[] | undefined; range?: string | string[] | undefined; from?: string | string[] | undefined; etag?: string | string[] | undefined; accept?: string | string[] | undefined; \"accept-language\"?: string | string[] | undefined; \"accept-patch\"?: string | string[] | undefined; \"accept-ranges\"?: string | string[] | undefined; \"access-control-allow-credentials\"?: string | string[] | undefined; \"access-control-allow-headers\"?: string | string[] | undefined; \"access-control-allow-methods\"?: string | string[] | undefined; \"access-control-allow-origin\"?: string | string[] | undefined; \"access-control-expose-headers\"?: string | string[] | undefined; \"access-control-max-age\"?: string | string[] | undefined; \"access-control-request-headers\"?: string | string[] | undefined; \"access-control-request-method\"?: string | string[] | undefined; age?: string | string[] | undefined; allow?: string | string[] | undefined; \"alt-svc\"?: string | string[] | undefined; authorization?: string | string[] | undefined; \"cache-control\"?: string | string[] | undefined; connection?: string | string[] | undefined; \"content-disposition\"?: string | string[] | undefined; \"content-encoding\"?: string | string[] | undefined; \"content-language\"?: string | string[] | undefined; \"content-length\"?: string | string[] | undefined; \"content-location\"?: string | string[] | undefined; \"content-range\"?: string | string[] | undefined; \"content-type\"?: string | string[] | undefined; cookie?: string | string[] | undefined; expect?: string | string[] | undefined; expires?: string | string[] | undefined; forwarded?: string | string[] | undefined; host?: string | string[] | undefined; \"if-match\"?: string | string[] | undefined; \"if-modified-since\"?: string | string[] | undefined; \"if-none-match\"?: string | string[] | undefined; \"if-unmodified-since\"?: string | string[] | undefined; \"last-modified\"?: string | string[] | undefined; origin?: string | string[] | undefined; pragma?: string | string[] | undefined; \"proxy-authenticate\"?: string | string[] | undefined; \"proxy-authorization\"?: string | string[] | undefined; \"public-key-pins\"?: string | string[] | undefined; referer?: string | string[] | undefined; \"retry-after\"?: string | string[] | undefined; \"sec-websocket-accept\"?: string | string[] | undefined; \"sec-websocket-extensions\"?: string | string[] | undefined; \"sec-websocket-key\"?: string | string[] | undefined; \"sec-websocket-protocol\"?: string | string[] | undefined; \"sec-websocket-version\"?: string | string[] | undefined; \"set-cookie\"?: string | string[] | undefined; \"strict-transport-security\"?: string | string[] | undefined; tk?: string | string[] | undefined; trailer?: string | string[] | undefined; \"transfer-encoding\"?: string | string[] | undefined; upgrade?: string | string[] | undefined; \"user-agent\"?: string | string[] | undefined; vary?: string | string[] | undefined; via?: string | string[] | undefined; \"www-authenticate\"?: string | string[] | undefined; } & { [header: string]: string | string[] | undefined; }" ], @@ -760,9 +722,7 @@ "type": "string", "tags": [], "label": "path", - "description": [ - "The path of the request" - ], + "description": ["The path of the request"], "path": "packages/core/http/core-http-server/src/router/raw_request.ts", "deprecated": false, "trackAdoption": false @@ -774,9 +734,7 @@ "tags": [], "label": "method", "description": [], - "signature": [ - "string | undefined" - ], + "signature": ["string | undefined"], "path": "packages/core/http/core-http-server/src/router/raw_request.ts", "deprecated": false, "trackAdoption": false @@ -788,10 +746,7 @@ "tags": [], "label": "url", "description": [], - "signature": [ - "URL", - " | undefined" - ], + "signature": ["URL", " | undefined"], "path": "packages/core/http/core-http-server/src/router/raw_request.ts", "deprecated": false, "trackAdoption": false @@ -803,9 +758,7 @@ "tags": [], "label": "app", "description": [], - "signature": [ - "Record | undefined" - ], + "signature": ["Record | undefined"], "path": "packages/core/http/core-http-server/src/router/raw_request.ts", "deprecated": false, "trackAdoption": false @@ -817,9 +770,7 @@ "tags": [], "label": "auth", "description": [], - "signature": [ - "{ isAuthenticated?: boolean | undefined; } | undefined" - ], + "signature": ["{ isAuthenticated?: boolean | undefined; } | undefined"], "path": "packages/core/http/core-http-server/src/router/raw_request.ts", "deprecated": false, "trackAdoption": false @@ -857,9 +808,7 @@ "type": "Interface", "tags": [], "label": "FileHttpResponseOptions", - "description": [ - "\nHTTP response parameters for a response with adjustable status code." - ], + "description": ["\nHTTP response parameters for a response with adjustable status code."], "signature": [ { "pluginId": "@kbn/core-http-server", @@ -880,12 +829,8 @@ "type": "Uncategorized", "tags": [], "label": "body", - "description": [ - "Attachment content to send to the client" - ], - "signature": [ - "T" - ], + "description": ["Attachment content to send to the client"], + "signature": ["T"], "path": "packages/core/http/core-http-server/src/router/response.ts", "deprecated": false, "trackAdoption": false @@ -912,9 +857,7 @@ "description": [ "Explicitly set the attachment content type. Tries to detect the type based on extension and defaults to application/octet-stream" ], - "signature": [ - "string | null | undefined" - ], + "signature": ["string | null | undefined"], "path": "packages/core/http/core-http-server/src/router/response.ts", "deprecated": false, "trackAdoption": false @@ -928,9 +871,7 @@ "description": [ "Attachment content size in bytes, Tries to detect the content size from body" ], - "signature": [ - "number | undefined" - ], + "signature": ["number | undefined"], "path": "packages/core/http/core-http-server/src/router/response.ts", "deprecated": false, "trackAdoption": false @@ -941,9 +882,7 @@ "type": "CompoundType", "tags": [], "label": "headers", - "description": [ - "HTTP Headers with additional information about response" - ], + "description": ["HTTP Headers with additional information about response"], "signature": [ { "pluginId": "@kbn/core-http-server", @@ -964,12 +903,8 @@ "type": "CompoundType", "tags": [], "label": "bypassErrorFormat", - "description": [ - "Bypass the default error formatting" - ], - "signature": [ - "boolean | undefined" - ], + "description": ["Bypass the default error formatting"], + "signature": ["boolean | undefined"], "path": "packages/core/http/core-http-server/src/router/response.ts", "deprecated": false, "trackAdoption": false @@ -983,9 +918,7 @@ "description": [ "Bypass filename encoding, only set to true if the filename is already encoded" ], - "signature": [ - "boolean | undefined" - ], + "signature": ["boolean | undefined"], "path": "packages/core/http/core-http-server/src/router/response.ts", "deprecated": false, "trackAdoption": false @@ -999,9 +932,7 @@ "type": "Interface", "tags": [], "label": "FullValidationConfig", - "description": [ - "\nVersioned route validation" - ], + "description": ["\nVersioned route validation"], "signature": [ { "pluginId": "@kbn/core-http-server", @@ -1022,9 +953,7 @@ "type": "CompoundType", "tags": [], "label": "request", - "description": [ - "\nValidation to run against route inputs: params, query and body" - ], + "description": ["\nValidation to run against route inputs: params, query and body"], "signature": [ { "pluginId": "@kbn/core-http-server", @@ -1043,13 +972,9 @@ "parentPluginId": "@kbn/core-http-server", "id": "def-common.FullValidationConfig.response", "type": "Object", - "tags": [ - "note" - ], + "tags": ["note"], "label": "response", - "description": [ - "\nValidation to run against route output" - ], + "description": ["\nValidation to run against route output"], "signature": [ { "pluginId": "@kbn/core-http-server", @@ -1191,9 +1116,7 @@ "type": "Interface", "tags": [], "label": "HttpResponseOptions", - "description": [ - "\nHTTP response parameters" - ], + "description": ["\nHTTP response parameters"], "signature": [ { "pluginId": "@kbn/core-http-server", @@ -1214,12 +1137,8 @@ "type": "Uncategorized", "tags": [], "label": "body", - "description": [ - "HTTP message to send to the client" - ], - "signature": [ - "T | undefined" - ], + "description": ["HTTP message to send to the client"], + "signature": ["T | undefined"], "path": "packages/core/http/core-http-server/src/router/response.ts", "deprecated": false, "trackAdoption": false @@ -1230,9 +1149,7 @@ "type": "CompoundType", "tags": [], "label": "headers", - "description": [ - "HTTP Headers with additional information about response" - ], + "description": ["HTTP Headers with additional information about response"], "signature": [ { "pluginId": "@kbn/core-http-server", @@ -1253,12 +1170,8 @@ "type": "CompoundType", "tags": [], "label": "bypassErrorFormat", - "description": [ - "Bypass the default error formatting" - ], - "signature": [ - "boolean | undefined" - ], + "description": ["Bypass the default error formatting"], + "signature": ["boolean | undefined"], "path": "packages/core/http/core-http-server/src/router/response.ts", "deprecated": false, "trackAdoption": false @@ -1285,9 +1198,7 @@ "type": "string", "tags": [], "label": "name", - "description": [ - "The name of the Kibana server" - ], + "description": ["The name of the Kibana server"], "path": "packages/core/http/core-http-server/src/http_contract.ts", "deprecated": false, "trackAdoption": false @@ -1298,9 +1209,7 @@ "type": "string", "tags": [], "label": "hostname", - "description": [ - "The hostname of the server" - ], + "description": ["The hostname of the server"], "path": "packages/core/http/core-http-server/src/http_contract.ts", "deprecated": false, "trackAdoption": false @@ -1311,9 +1220,7 @@ "type": "number", "tags": [], "label": "port", - "description": [ - "The port the server is listening on" - ], + "description": ["The port the server is listening on"], "path": "packages/core/http/core-http-server/src/http_contract.ts", "deprecated": false, "trackAdoption": false @@ -1324,12 +1231,8 @@ "type": "CompoundType", "tags": [], "label": "protocol", - "description": [ - "The protocol used by the server" - ], - "signature": [ - "\"http\" | \"https\" | \"socket\"" - ], + "description": ["The protocol used by the server"], + "signature": ["\"http\" | \"https\" | \"socket\""], "path": "packages/core/http/core-http-server/src/http_contract.ts", "deprecated": false, "trackAdoption": false @@ -1391,9 +1294,7 @@ "tags": [], "label": "path", "description": [], - "signature": [ - "string" - ], + "signature": ["string"], "path": "packages/core/http/core-http-server/src/http_contract.ts", "deprecated": false, "trackAdoption": false, @@ -1431,9 +1332,7 @@ "type": "Object", "tags": [], "label": "basePath", - "description": [ - "\nAccess or manipulate the Kibana base path\nSee {@link IBasePath}." - ], + "description": ["\nAccess or manipulate the Kibana base path\nSee {@link IBasePath}."], "signature": [ { "pluginId": "@kbn/core-http-server", @@ -1587,9 +1486,7 @@ "type": "Function", "tags": [], "label": "handler", - "description": [ - "{@link OnPreRoutingHandler } - function to call." - ], + "description": ["{@link OnPreRoutingHandler } - function to call."], "signature": [ { "pluginId": "@kbn/core-http-server", @@ -1637,9 +1534,7 @@ "type": "Function", "tags": [], "label": "handler", - "description": [ - "{@link OnPreRoutingHandler } - function to call." - ], + "description": ["{@link OnPreRoutingHandler } - function to call."], "signature": [ { "pluginId": "@kbn/core-http-server", @@ -1737,9 +1632,7 @@ "type": "Function", "tags": [], "label": "handler", - "description": [ - "{@link OnPostAuthHandler } - function to call." - ], + "description": ["{@link OnPostAuthHandler } - function to call."], "signature": [ { "pluginId": "@kbn/core-http-server", @@ -1763,9 +1656,7 @@ "type": "Function", "tags": [], "label": "registerOnPreResponse", - "description": [ - "\nTo define custom logic to perform for the server response.\n" - ], + "description": ["\nTo define custom logic to perform for the server response.\n"], "signature": [ "(handler: ", { @@ -1787,9 +1678,7 @@ "type": "Function", "tags": [], "label": "handler", - "description": [ - "{@link OnPreResponseHandler } - function to call." - ], + "description": ["{@link OnPreResponseHandler } - function to call."], "signature": [ { "pluginId": "@kbn/core-http-server", @@ -1813,9 +1702,7 @@ "type": "Object", "tags": [], "label": "basePath", - "description": [ - "\nAccess or manipulate the Kibana base path\nSee {@link IBasePath}." - ], + "description": ["\nAccess or manipulate the Kibana base path\nSee {@link IBasePath}."], "signature": [ { "pluginId": "@kbn/core-http-server", @@ -1857,9 +1744,7 @@ "type": "Object", "tags": [], "label": "csp", - "description": [ - "\nThe CSP config used for Kibana." - ], + "description": ["\nThe CSP config used for Kibana."], "signature": [ { "pluginId": "@kbn/core-http-server", @@ -1905,9 +1790,7 @@ "type": "Function", "tags": [], "label": "registerRouteHandlerContext", - "description": [ - "\nRegister a context provider for a route handler." - ], + "description": ["\nRegister a context provider for a route handler."], "signature": [ ">(contextName: ContextName, provider: ", { @@ -1937,9 +1820,7 @@ "tags": [], "label": "contextName", "description": [], - "signature": [ - "ContextName" - ], + "signature": ["ContextName"], "path": "packages/core/http/core-http-server/src/http_contract.ts", "deprecated": false, "trackAdoption": false, @@ -2015,9 +1896,7 @@ "type": "Object", "tags": [], "label": "basePath", - "description": [ - "\nAccess or manipulate the Kibana base path\nSee {@link IBasePath}." - ], + "description": ["\nAccess or manipulate the Kibana base path\nSee {@link IBasePath}."], "signature": [ { "pluginId": "@kbn/core-http-server", @@ -2059,9 +1938,7 @@ "type": "Object", "tags": [], "label": "auth", - "description": [ - "\nAuth status.\nSee {@link HttpAuth}" - ], + "description": ["\nAuth status.\nSee {@link HttpAuth}"], "signature": [ { "pluginId": "@kbn/core-http-server", @@ -2173,9 +2050,7 @@ "tags": [], "label": "headers", "description": [], - "signature": [ - "{ [x: string]: string | string[]; }" - ], + "signature": ["{ [x: string]: string | string[]; }"], "path": "packages/core/http/core-http-server/src/auth_headers.ts", "deprecated": false, "trackAdoption": false @@ -2245,9 +2120,7 @@ "type": "Interface", "tags": [], "label": "IBasePath", - "description": [ - "\nAccess or manipulate the Kibana base path\n" - ], + "description": ["\nAccess or manipulate the Kibana base path\n"], "path": "packages/core/http/core-http-server/src/base_path.ts", "deprecated": false, "trackAdoption": false, @@ -2274,9 +2147,7 @@ "description": [ "\nThe server's publicly exposed base URL, if configured. Includes protocol, host, port (optional) and the\n{@link IBasePath.serverBasePath}.\n" ], - "signature": [ - "string | undefined" - ], + "signature": ["string | undefined"], "path": "packages/core/http/core-http-server/src/base_path.ts", "deprecated": false, "trackAdoption": false @@ -2287,9 +2158,7 @@ "type": "Function", "tags": [], "label": "get", - "description": [ - "\nreturns `basePath` value, specific for an incoming request." - ], + "description": ["\nreturns `basePath` value, specific for an incoming request."], "signature": [ "(request: ", { @@ -2336,9 +2205,7 @@ "type": "Function", "tags": [], "label": "set", - "description": [ - "\nsets `basePath` value, specific for an incoming request." - ], + "description": ["\nsets `basePath` value, specific for an incoming request."], "signature": [ "(request: ", { @@ -2383,9 +2250,7 @@ "tags": [], "label": "requestSpecificBasePath", "description": [], - "signature": [ - "string" - ], + "signature": ["string"], "path": "packages/core/http/core-http-server/src/base_path.ts", "deprecated": false, "trackAdoption": false, @@ -2400,12 +2265,8 @@ "type": "Function", "tags": [], "label": "prepend", - "description": [ - "\nPrepends `path` with the basePath." - ], - "signature": [ - "(path: string) => string" - ], + "description": ["\nPrepends `path` with the basePath."], + "signature": ["(path: string) => string"], "path": "packages/core/http/core-http-server/src/base_path.ts", "deprecated": false, "trackAdoption": false, @@ -2417,9 +2278,7 @@ "tags": [], "label": "path", "description": [], - "signature": [ - "string" - ], + "signature": ["string"], "path": "packages/core/http/core-http-server/src/base_path.ts", "deprecated": false, "trackAdoption": false, @@ -2434,12 +2293,8 @@ "type": "Function", "tags": [], "label": "remove", - "description": [ - "\nRemoves the prepended basePath from the `path`." - ], - "signature": [ - "(path: string) => string" - ], + "description": ["\nRemoves the prepended basePath from the `path`."], + "signature": ["(path: string) => string"], "path": "packages/core/http/core-http-server/src/base_path.ts", "deprecated": false, "trackAdoption": false, @@ -2451,9 +2306,7 @@ "tags": [], "label": "path", "description": [], - "signature": [ - "string" - ], + "signature": ["string"], "path": "packages/core/http/core-http-server/src/base_path.ts", "deprecated": false, "trackAdoption": false, @@ -2484,9 +2337,7 @@ "type": "Function", "tags": [], "label": "registerContext", - "description": [ - "\nRegister a new context provider.\n" - ], + "description": ["\nRegister a new context provider.\n"], "signature": [ " string | null" - ], + "signature": ["() => string | null"], "path": "packages/core/http/core-http-server/src/router/socket.ts", "deprecated": false, "trackAdoption": false, @@ -3115,9 +2932,7 @@ "tags": [], "label": "rejectUnauthorized", "description": [], - "signature": [ - "boolean | undefined" - ], + "signature": ["boolean | undefined"], "path": "packages/core/http/core-http-server/src/router/socket.ts", "deprecated": false, "trackAdoption": false @@ -3129,9 +2944,7 @@ "tags": [], "label": "requestCert", "description": [], - "signature": [ - "boolean | undefined" - ], + "signature": ["boolean | undefined"], "path": "packages/core/http/core-http-server/src/router/socket.ts", "deprecated": false, "trackAdoption": false @@ -3152,9 +2965,7 @@ "description": [ "\nIndicates whether or not the peer certificate was signed by one of the specified CAs. When TLS\nisn't used the value is `undefined`." ], - "signature": [ - "boolean | undefined" - ], + "signature": ["boolean | undefined"], "path": "packages/core/http/core-http-server/src/router/socket.ts", "deprecated": false, "trackAdoption": false @@ -3168,9 +2979,7 @@ "description": [ "\nThe reason why the peer's certificate has not been verified. This property becomes available\nonly when `authorized` is `false`." ], - "signature": [ - "Error | undefined" - ], + "signature": ["Error | undefined"], "path": "packages/core/http/core-http-server/src/router/socket.ts", "deprecated": false, "trackAdoption": false @@ -3184,9 +2993,7 @@ "description": [ "\nThe string representation of the remote IP address. For example,`'74.125.127.100'` or\n`'2001:4860:a005::68'`. Value may be `undefined` if the socket is destroyed (for example, if\nthe client disconnected)." ], - "signature": [ - "string | undefined" - ], + "signature": ["string | undefined"], "path": "packages/core/http/core-http-server/src/router/socket.ts", "deprecated": false, "trackAdoption": false @@ -3223,9 +3030,7 @@ "type": "string", "tags": [], "label": "routerPath", - "description": [ - "\nResulted path" - ], + "description": ["\nResulted path"], "path": "packages/core/http/core-http-server/src/router/router.ts", "deprecated": false, "trackAdoption": false @@ -3234,13 +3039,9 @@ "parentPluginId": "@kbn/core-http-server", "id": "def-common.IRouter.get", "type": "Function", - "tags": [ - "track-adoption" - ], + "tags": ["track-adoption"], "label": "get", - "description": [ - "\nRegister a route handler for `GET` request." - ], + "description": ["\nRegister a route handler for `GET` request."], "signature": [ "(route: ", { @@ -4358,35 +4159,35 @@ }, { "plugin": "profiling", - "path": "x-pack/plugins/profiling/server/routes/flamechart.ts" + "path": "x-pack/plugins/observability_solution/profiling/server/routes/flamechart.ts" }, { "plugin": "profiling", - "path": "x-pack/plugins/profiling/server/routes/functions.ts" + "path": "x-pack/plugins/observability_solution/profiling/server/routes/functions.ts" }, { "plugin": "profiling", - "path": "x-pack/plugins/profiling/server/routes/setup/route.ts" + "path": "x-pack/plugins/observability_solution/profiling/server/routes/setup/route.ts" }, { "plugin": "profiling", - "path": "x-pack/plugins/profiling/server/routes/setup/route.ts" + "path": "x-pack/plugins/observability_solution/profiling/server/routes/setup/route.ts" }, { "plugin": "profiling", - "path": "x-pack/plugins/profiling/server/routes/storage_explorer/route.ts" + "path": "x-pack/plugins/observability_solution/profiling/server/routes/storage_explorer/route.ts" }, { "plugin": "profiling", - "path": "x-pack/plugins/profiling/server/routes/storage_explorer/route.ts" + "path": "x-pack/plugins/observability_solution/profiling/server/routes/storage_explorer/route.ts" }, { "plugin": "profiling", - "path": "x-pack/plugins/profiling/server/routes/storage_explorer/route.ts" + "path": "x-pack/plugins/observability_solution/profiling/server/routes/storage_explorer/route.ts" }, { "plugin": "profiling", - "path": "x-pack/plugins/profiling/server/routes/topn.ts" + "path": "x-pack/plugins/observability_solution/profiling/server/routes/topn.ts" }, { "plugin": "reporting", @@ -5657,9 +5458,7 @@ "type": "Object", "tags": [], "label": "route", - "description": [ - "{@link RouteConfig } - a route configuration." - ], + "description": ["{@link RouteConfig } - a route configuration."], "signature": [ { "pluginId": "@kbn/core-http-server", @@ -5730,9 +5529,7 @@ "tags": [], "label": "context", "description": [], - "signature": [ - "Context" - ], + "signature": ["Context"], "path": "packages/core/http/core-http-server/src/router/request_handler.ts", "deprecated": false, "trackAdoption": false @@ -5765,9 +5562,7 @@ "tags": [], "label": "response", "description": [], - "signature": [ - "ResponseFactory" - ], + "signature": ["ResponseFactory"], "path": "packages/core/http/core-http-server/src/router/request_handler.ts", "deprecated": false, "trackAdoption": false @@ -5780,13 +5575,9 @@ "parentPluginId": "@kbn/core-http-server", "id": "def-common.IRouter.post", "type": "Function", - "tags": [ - "track-adoption" - ], + "tags": ["track-adoption"], "label": "post", - "description": [ - "\nRegister a route handler for `POST` request." - ], + "description": ["\nRegister a route handler for `POST` request."], "signature": [ "(route: ", { @@ -6816,7 +6607,7 @@ }, { "plugin": "profiling", - "path": "x-pack/plugins/profiling/server/routes/setup/route.ts" + "path": "x-pack/plugins/observability_solution/profiling/server/routes/setup/route.ts" }, { "plugin": "reporting", @@ -7851,9 +7642,7 @@ "type": "Object", "tags": [], "label": "route", - "description": [ - "{@link RouteConfig } - a route configuration." - ], + "description": ["{@link RouteConfig } - a route configuration."], "signature": [ { "pluginId": "@kbn/core-http-server", @@ -7924,9 +7713,7 @@ "tags": [], "label": "context", "description": [], - "signature": [ - "Context" - ], + "signature": ["Context"], "path": "packages/core/http/core-http-server/src/router/request_handler.ts", "deprecated": false, "trackAdoption": false @@ -7959,9 +7746,7 @@ "tags": [], "label": "response", "description": [], - "signature": [ - "ResponseFactory" - ], + "signature": ["ResponseFactory"], "path": "packages/core/http/core-http-server/src/router/request_handler.ts", "deprecated": false, "trackAdoption": false @@ -7974,13 +7759,9 @@ "parentPluginId": "@kbn/core-http-server", "id": "def-common.IRouter.put", "type": "Function", - "tags": [ - "track-adoption" - ], + "tags": ["track-adoption"], "label": "put", - "description": [ - "\nRegister a route handler for `PUT` request." - ], + "description": ["\nRegister a route handler for `PUT` request."], "signature": [ "(route: ", { @@ -8541,9 +8322,7 @@ "type": "Object", "tags": [], "label": "route", - "description": [ - "{@link RouteConfig } - a route configuration." - ], + "description": ["{@link RouteConfig } - a route configuration."], "signature": [ { "pluginId": "@kbn/core-http-server", @@ -8614,9 +8393,7 @@ "tags": [], "label": "context", "description": [], - "signature": [ - "Context" - ], + "signature": ["Context"], "path": "packages/core/http/core-http-server/src/router/request_handler.ts", "deprecated": false, "trackAdoption": false @@ -8649,9 +8426,7 @@ "tags": [], "label": "response", "description": [], - "signature": [ - "ResponseFactory" - ], + "signature": ["ResponseFactory"], "path": "packages/core/http/core-http-server/src/router/request_handler.ts", "deprecated": false, "trackAdoption": false @@ -8664,13 +8439,9 @@ "parentPluginId": "@kbn/core-http-server", "id": "def-common.IRouter.patch", "type": "Function", - "tags": [ - "track-adoption" - ], + "tags": ["track-adoption"], "label": "patch", - "description": [ - "\nRegister a route handler for `PATCH` request." - ], + "description": ["\nRegister a route handler for `PATCH` request."], "signature": [ "(route: ", { @@ -8827,9 +8598,7 @@ "type": "Object", "tags": [], "label": "route", - "description": [ - "{@link RouteConfig } - a route configuration." - ], + "description": ["{@link RouteConfig } - a route configuration."], "signature": [ { "pluginId": "@kbn/core-http-server", @@ -8900,9 +8669,7 @@ "tags": [], "label": "context", "description": [], - "signature": [ - "Context" - ], + "signature": ["Context"], "path": "packages/core/http/core-http-server/src/router/request_handler.ts", "deprecated": false, "trackAdoption": false @@ -8935,9 +8702,7 @@ "tags": [], "label": "response", "description": [], - "signature": [ - "ResponseFactory" - ], + "signature": ["ResponseFactory"], "path": "packages/core/http/core-http-server/src/router/request_handler.ts", "deprecated": false, "trackAdoption": false @@ -8950,13 +8715,9 @@ "parentPluginId": "@kbn/core-http-server", "id": "def-common.IRouter.delete", "type": "Function", - "tags": [ - "track-adoption" - ], + "tags": ["track-adoption"], "label": "delete", - "description": [ - "\nRegister a route handler for `DELETE` request." - ], + "description": ["\nRegister a route handler for `DELETE` request."], "signature": [ "(route: ", { @@ -9437,9 +9198,7 @@ "type": "Object", "tags": [], "label": "route", - "description": [ - "{@link RouteConfig } - a route configuration." - ], + "description": ["{@link RouteConfig } - a route configuration."], "signature": [ { "pluginId": "@kbn/core-http-server", @@ -9510,9 +9269,7 @@ "tags": [], "label": "context", "description": [], - "signature": [ - "Context" - ], + "signature": ["Context"], "path": "packages/core/http/core-http-server/src/router/request_handler.ts", "deprecated": false, "trackAdoption": false @@ -9545,9 +9302,7 @@ "tags": [], "label": "response", "description": [], - "signature": [ - "ResponseFactory" - ], + "signature": ["ResponseFactory"], "path": "packages/core/http/core-http-server/src/router/request_handler.ts", "deprecated": false, "trackAdoption": false @@ -9635,9 +9390,7 @@ "type": "Function", "tags": [], "label": "handler", - "description": [ - "{@link RequestHandler } - a route handler to wrap" - ], + "description": ["{@link RequestHandler } - a route handler to wrap"], "signature": [ "(context: Context, request: ", { @@ -9677,9 +9430,7 @@ "tags": [], "label": "context", "description": [], - "signature": [ - "Context" - ], + "signature": ["Context"], "path": "packages/core/http/core-http-server/src/router/request_handler.ts", "deprecated": false, "trackAdoption": false @@ -9712,9 +9463,7 @@ "tags": [], "label": "response", "description": [], - "signature": [ - "ResponseFactory" - ], + "signature": ["ResponseFactory"], "path": "packages/core/http/core-http-server/src/router/request_handler.ts", "deprecated": false, "trackAdoption": false @@ -9727,9 +9476,7 @@ "parentPluginId": "@kbn/core-http-server", "id": "def-common.IRouter.versioned", "type": "Object", - "tags": [ - "experimental" - ], + "tags": ["experimental"], "label": "versioned", "description": [ "\nAn instance very similar to {@link IRouter} that can be used for versioning HTTP routes\nfollowing the Elastic versioning specification.\n" @@ -9757,9 +9504,7 @@ "type": "Interface", "tags": [], "label": "IStaticAssets", - "description": [ - "\nAPIs for creating hrefs to static assets.\n" - ], + "description": ["\nAPIs for creating hrefs to static assets.\n"], "path": "packages/core/http/core-http-server/src/static_assets.ts", "deprecated": false, "trackAdoption": false, @@ -9773,9 +9518,7 @@ "description": [ "\nGets the full href to the current plugin's asset,\ngiven its path relative to the plugin's `public/assets` folder.\n" ], - "signature": [ - "(assetPath: string) => string" - ], + "signature": ["(assetPath: string) => string"], "path": "packages/core/http/core-http-server/src/static_assets.ts", "deprecated": false, "trackAdoption": false, @@ -9787,9 +9530,7 @@ "tags": [], "label": "assetPath", "description": [], - "signature": [ - "string" - ], + "signature": ["string"], "path": "packages/core/http/core-http-server/src/static_assets.ts", "deprecated": false, "trackAdoption": false, @@ -9802,16 +9543,12 @@ "parentPluginId": "@kbn/core-http-server", "id": "def-common.IStaticAssets.prependPublicUrl", "type": "Function", - "tags": [ - "note" - ], + "tags": ["note"], "label": "prependPublicUrl", "description": [ "\nWill return an href, either a path for or full URL with the provided path\nappended to the static assets public base path.\n\nUseful for instances were you need to render your own HTML page and link to\ncertain static assets.\n" ], - "signature": [ - "(pathname: string) => string" - ], + "signature": ["(pathname: string) => string"], "path": "packages/core/http/core-http-server/src/static_assets.ts", "deprecated": false, "trackAdoption": false, @@ -9823,9 +9560,7 @@ "tags": [], "label": "pathname", "description": [], - "signature": [ - "string" - ], + "signature": ["string"], "path": "packages/core/http/core-http-server/src/static_assets.ts", "deprecated": false, "trackAdoption": false, @@ -9972,9 +9707,7 @@ "type": "Function", "tags": [], "label": "forbidden", - "description": [ - "\nServer cannot grant access to a resource.\nStatus code: `403`." - ], + "description": ["\nServer cannot grant access to a resource.\nStatus code: `403`."], "signature": [ "(options?: ", { @@ -10149,9 +9882,7 @@ "type": "Function", "tags": [], "label": "customError", - "description": [ - "\nCreates an error response with defined status code and payload." - ], + "description": ["\nCreates an error response with defined status code and payload."], "signature": [ "(options: ", { @@ -10242,9 +9973,7 @@ "type": "Function", "tags": [], "label": "notModified", - "description": [ - "\nContent not modified.\nStatus code: `304`." - ], + "description": ["\nContent not modified.\nStatus code: `304`."], "signature": [ "(options: ", { @@ -10315,9 +10044,7 @@ "type": "Function", "tags": [], "label": "redirected", - "description": [ - "\nRedirect to a different URI.\nStatus code: `302`." - ], + "description": ["\nRedirect to a different URI.\nStatus code: `302`."], "signature": [ "(options: ", { @@ -10376,9 +10103,7 @@ "type": "Interface", "tags": [], "label": "KibanaRequest", - "description": [ - "\nKibana specific abstraction for an incoming request." - ], + "description": ["\nKibana specific abstraction for an incoming request."], "signature": [ { "pluginId": "@kbn/core-http-server", @@ -10399,9 +10124,7 @@ "type": "string", "tags": [], "label": "id", - "description": [ - "\nA identifier to identify this request.\n" - ], + "description": ["\nA identifier to identify this request.\n"], "path": "packages/core/http/core-http-server/src/router/request.ts", "deprecated": false, "trackAdoption": false @@ -10412,9 +10135,7 @@ "type": "string", "tags": [], "label": "uuid", - "description": [ - "\nA UUID to identify this request.\n" - ], + "description": ["\nA UUID to identify this request.\n"], "path": "packages/core/http/core-http-server/src/router/request.ts", "deprecated": false, "trackAdoption": false @@ -10425,12 +10146,8 @@ "type": "Object", "tags": [], "label": "url", - "description": [ - "a WHATWG URL standard object." - ], - "signature": [ - "URL" - ], + "description": ["a WHATWG URL standard object."], + "signature": ["URL"], "path": "packages/core/http/core-http-server/src/router/request.ts", "deprecated": false, "trackAdoption": false @@ -10441,9 +10158,7 @@ "type": "Object", "tags": [], "label": "route", - "description": [ - "matched route details" - ], + "description": ["matched route details"], "signature": [ "{ readonly path: string; readonly method: ", { @@ -10481,9 +10196,7 @@ "type": "CompoundType", "tags": [], "label": "headers", - "description": [ - "\nReadonly copy of incoming request headers." - ], + "description": ["\nReadonly copy of incoming request headers."], "signature": [ "{ date?: string | string[] | undefined; warning?: string | string[] | undefined; location?: string | string[] | undefined; range?: string | string[] | undefined; from?: string | string[] | undefined; etag?: string | string[] | undefined; accept?: string | string[] | undefined; \"accept-language\"?: string | string[] | undefined; \"accept-patch\"?: string | string[] | undefined; \"accept-ranges\"?: string | string[] | undefined; \"access-control-allow-credentials\"?: string | string[] | undefined; \"access-control-allow-headers\"?: string | string[] | undefined; \"access-control-allow-methods\"?: string | string[] | undefined; \"access-control-allow-origin\"?: string | string[] | undefined; \"access-control-expose-headers\"?: string | string[] | undefined; \"access-control-max-age\"?: string | string[] | undefined; \"access-control-request-headers\"?: string | string[] | undefined; \"access-control-request-method\"?: string | string[] | undefined; age?: string | string[] | undefined; allow?: string | string[] | undefined; \"alt-svc\"?: string | string[] | undefined; authorization?: string | string[] | undefined; \"cache-control\"?: string | string[] | undefined; connection?: string | string[] | undefined; \"content-disposition\"?: string | string[] | undefined; \"content-encoding\"?: string | string[] | undefined; \"content-language\"?: string | string[] | undefined; \"content-length\"?: string | string[] | undefined; \"content-location\"?: string | string[] | undefined; \"content-range\"?: string | string[] | undefined; \"content-type\"?: string | string[] | undefined; cookie?: string | string[] | undefined; expect?: string | string[] | undefined; expires?: string | string[] | undefined; forwarded?: string | string[] | undefined; host?: string | string[] | undefined; \"if-match\"?: string | string[] | undefined; \"if-modified-since\"?: string | string[] | undefined; \"if-none-match\"?: string | string[] | undefined; \"if-unmodified-since\"?: string | string[] | undefined; \"last-modified\"?: string | string[] | undefined; origin?: string | string[] | undefined; pragma?: string | string[] | undefined; \"proxy-authenticate\"?: string | string[] | undefined; \"proxy-authorization\"?: string | string[] | undefined; \"public-key-pins\"?: string | string[] | undefined; referer?: string | string[] | undefined; \"retry-after\"?: string | string[] | undefined; \"sec-websocket-accept\"?: string | string[] | undefined; \"sec-websocket-extensions\"?: string | string[] | undefined; \"sec-websocket-key\"?: string | string[] | undefined; \"sec-websocket-protocol\"?: string | string[] | undefined; \"sec-websocket-version\"?: string | string[] | undefined; \"set-cookie\"?: string | string[] | undefined; \"strict-transport-security\"?: string | string[] | undefined; tk?: string | string[] | undefined; trailer?: string | string[] | undefined; \"transfer-encoding\"?: string | string[] | undefined; upgrade?: string | string[] | undefined; \"user-agent\"?: string | string[] | undefined; vary?: string | string[] | undefined; via?: string | string[] | undefined; \"www-authenticate\"?: string | string[] | undefined; } & { [header: string]: string | string[] | undefined; }" ], @@ -10521,13 +10234,9 @@ "parentPluginId": "@kbn/core-http-server", "id": "def-common.KibanaRequest.isInternalApiRequest", "type": "boolean", - "tags": [ - "note" - ], + "tags": ["note"], "label": "isInternalApiRequest", - "description": [ - "\nAn internal request has access to internal routes." - ], + "description": ["\nAn internal request has access to internal routes."], "path": "packages/core/http/core-http-server/src/router/request.ts", "deprecated": false, "trackAdoption": false @@ -10582,9 +10291,7 @@ "type": "Object", "tags": [], "label": "auth", - "description": [ - "\nThe auth status of this request.\nSee {@link KibanaRequestAuth}." - ], + "description": ["\nThe auth status of this request.\nSee {@link KibanaRequestAuth}."], "signature": [ { "pluginId": "@kbn/core-http-server", @@ -10604,13 +10311,8 @@ "type": "Object", "tags": [], "label": "rewrittenUrl", - "description": [ - "\nURL rewritten in onPreRouting request interceptor." - ], - "signature": [ - "URL", - " | undefined" - ], + "description": ["\nURL rewritten in onPreRouting request interceptor."], + "signature": ["URL", " | undefined"], "path": "packages/core/http/core-http-server/src/router/request.ts", "deprecated": false, "trackAdoption": false @@ -10621,12 +10323,8 @@ "type": "Uncategorized", "tags": [], "label": "params", - "description": [ - "\nThe path parameter of this request." - ], - "signature": [ - "Params" - ], + "description": ["\nThe path parameter of this request."], + "signature": ["Params"], "path": "packages/core/http/core-http-server/src/router/request.ts", "deprecated": false, "trackAdoption": false @@ -10637,12 +10335,8 @@ "type": "Uncategorized", "tags": [], "label": "query", - "description": [ - "\nThe query parameter of this request." - ], - "signature": [ - "Query" - ], + "description": ["\nThe query parameter of this request."], + "signature": ["Query"], "path": "packages/core/http/core-http-server/src/router/request.ts", "deprecated": false, "trackAdoption": false @@ -10653,12 +10347,8 @@ "type": "Uncategorized", "tags": [], "label": "body", - "description": [ - "\nThe body payload of this request." - ], - "signature": [ - "Body" - ], + "description": ["\nThe body payload of this request."], + "signature": ["Body"], "path": "packages/core/http/core-http-server/src/router/request.ts", "deprecated": false, "trackAdoption": false @@ -10672,9 +10362,7 @@ "type": "Interface", "tags": [], "label": "KibanaRequestAuth", - "description": [ - "\nAuth status for this request." - ], + "description": ["\nAuth status for this request."], "path": "packages/core/http/core-http-server/src/router/request.ts", "deprecated": false, "trackAdoption": false, @@ -10701,9 +10389,7 @@ "type": "Interface", "tags": [], "label": "KibanaRequestEvents", - "description": [ - "\nRequest events." - ], + "description": ["\nRequest events."], "path": "packages/core/http/core-http-server/src/router/request.ts", "deprecated": false, "trackAdoption": false, @@ -10717,10 +10403,7 @@ "description": [ "\nObservable that emits once if and when the request has been aborted." ], - "signature": [ - "Observable", - "" - ], + "signature": ["Observable", ""], "path": "packages/core/http/core-http-server/src/router/request.ts", "deprecated": false, "trackAdoption": false @@ -10734,10 +10417,7 @@ "description": [ "\nObservable that emits once if and when the request has been completely handled.\n" ], - "signature": [ - "Observable", - "" - ], + "signature": ["Observable", ""], "path": "packages/core/http/core-http-server/src/router/request.ts", "deprecated": false, "trackAdoption": false @@ -10751,9 +10431,7 @@ "type": "Interface", "tags": [], "label": "KibanaRequestRoute", - "description": [ - "\nRequest specific route information exposed to a handler." - ], + "description": ["\nRequest specific route information exposed to a handler."], "signature": [ { "pluginId": "@kbn/core-http-server", @@ -10786,9 +10464,7 @@ "tags": [], "label": "method", "description": [], - "signature": [ - "Method" - ], + "signature": ["Method"], "path": "packages/core/http/core-http-server/src/router/request.ts", "deprecated": false, "trackAdoption": false @@ -10877,10 +10553,7 @@ "tags": [], "label": "rewrittenUrl", "description": [], - "signature": [ - "URL", - " | undefined" - ], + "signature": ["URL", " | undefined"], "path": "packages/core/http/core-http-server/src/router/request.ts", "deprecated": false, "trackAdoption": false @@ -10892,9 +10565,7 @@ "tags": [], "label": "traceId", "description": [], - "signature": [ - "string | undefined" - ], + "signature": ["string | undefined"], "path": "packages/core/http/core-http-server/src/router/request.ts", "deprecated": false, "trackAdoption": false @@ -10906,9 +10577,7 @@ "tags": [], "label": "measureElu", "description": [], - "signature": [ - "(() => void) | undefined" - ], + "signature": ["(() => void) | undefined"], "path": "packages/core/http/core-http-server/src/router/request.ts", "deprecated": false, "trackAdoption": false, @@ -10958,9 +10627,7 @@ "tags": [], "label": "access", "description": [], - "signature": [ - "\"public\" | \"internal\"" - ], + "signature": ["\"public\" | \"internal\""], "path": "packages/core/http/core-http-server/src/router/request.ts", "deprecated": false, "trackAdoption": false @@ -10985,9 +10652,7 @@ "type": "Function", "tags": [], "label": "ok", - "description": [ - "\nThe request has succeeded.\nStatus code: `200`." - ], + "description": ["\nThe request has succeeded.\nStatus code: `200`."], "signature": [ " | Error | Buffer | ", "Stream", @@ -11054,9 +10719,7 @@ "type": "Function", "tags": [], "label": "accepted", - "description": [ - "\nThe request has been accepted for processing.\nStatus code: `202`." - ], + "description": ["\nThe request has been accepted for processing.\nStatus code: `202`."], "signature": [ " | Error | Buffer | ", "Stream", @@ -11230,9 +10893,7 @@ "type": "Function", "tags": [], "label": "next", - "description": [ - "To pass request to the next handler" - ], + "description": ["To pass request to the next handler"], "signature": [ "() => ", { @@ -11303,9 +10964,7 @@ "type": "Function", "tags": [], "label": "next", - "description": [ - "To pass request to the next handler" - ], + "description": ["To pass request to the next handler"], "signature": [ "() => ", { @@ -11331,9 +10990,7 @@ "type": "Interface", "tags": [], "label": "OnPreResponseExtensions", - "description": [ - "\nAdditional data to extend a response." - ], + "description": ["\nAdditional data to extend a response."], "path": "packages/core/http/core-http-server/src/lifecycle/on_pre_response.ts", "deprecated": false, "trackAdoption": false, @@ -11344,9 +11001,7 @@ "type": "CompoundType", "tags": [], "label": "headers", - "description": [ - "additional headers to attach to the response" - ], + "description": ["additional headers to attach to the response"], "signature": [ { "pluginId": "@kbn/core-http-server", @@ -11370,9 +11025,7 @@ "type": "Interface", "tags": [], "label": "OnPreResponseInfo", - "description": [ - "\nResponse status code." - ], + "description": ["\nResponse status code."], "path": "packages/core/http/core-http-server/src/lifecycle/on_pre_response.ts", "deprecated": false, "trackAdoption": false, @@ -11397,9 +11050,7 @@ "type": "Interface", "tags": [], "label": "OnPreResponseRender", - "description": [ - "\nAdditional data to extend a response when rendering a new body" - ], + "description": ["\nAdditional data to extend a response when rendering a new body"], "path": "packages/core/http/core-http-server/src/lifecycle/on_pre_response.ts", "deprecated": false, "trackAdoption": false, @@ -11410,9 +11061,7 @@ "type": "CompoundType", "tags": [], "label": "headers", - "description": [ - "additional headers to attach to the response" - ], + "description": ["additional headers to attach to the response"], "signature": [ { "pluginId": "@kbn/core-http-server", @@ -11433,9 +11082,7 @@ "type": "string", "tags": [], "label": "body", - "description": [ - "the body to use in the response" - ], + "description": ["the body to use in the response"], "path": "packages/core/http/core-http-server/src/lifecycle/on_pre_response.ts", "deprecated": false, "trackAdoption": false @@ -11585,9 +11232,7 @@ "type": "Function", "tags": [], "label": "render", - "description": [ - "To override the response with a different body" - ], + "description": ["To override the response with a different body"], "signature": [ "(responseRender: ", { @@ -11640,9 +11285,7 @@ "type": "Function", "tags": [], "label": "next", - "description": [ - "To pass request to the next handler" - ], + "description": ["To pass request to the next handler"], "signature": [ "(responseExtensions?: ", { @@ -11791,9 +11434,7 @@ "type": "Function", "tags": [], "label": "next", - "description": [ - "To pass request to the next handler" - ], + "description": ["To pass request to the next handler"], "signature": [ "() => ", { @@ -11840,9 +11481,7 @@ "tags": [], "label": "url", "description": [], - "signature": [ - "string" - ], + "signature": ["string"], "path": "packages/core/http/core-http-server/src/lifecycle/on_pre_routing.ts", "deprecated": false, "trackAdoption": false, @@ -11860,9 +11499,7 @@ "type": "Interface", "tags": [], "label": "RequestHandlerContextBase", - "description": [ - "\nBase, abstract type for request handler contexts." - ], + "description": ["\nBase, abstract type for request handler contexts."], "path": "packages/core/http/core-http-server/src/router/request_handler_context.ts", "deprecated": false, "trackAdoption": false, @@ -11873,9 +11510,7 @@ "type": "Function", "tags": [], "label": "resolve", - "description": [ - "\nAwait all the specified context parts and return them.\n" - ], + "description": ["\nAwait all the specified context parts and return them.\n"], "signature": [ ">(parts: T[]) => Promise<", { @@ -11898,9 +11533,7 @@ "tags": [], "label": "parts", "description": [], - "signature": [ - "T[]" - ], + "signature": ["T[]"], "path": "packages/core/http/core-http-server/src/router/request_handler_context.ts", "deprecated": false, "trackAdoption": false, @@ -11918,9 +11551,7 @@ "type": "Interface", "tags": [], "label": "RouteConfig", - "description": [ - "\nRoute specific configuration." - ], + "description": ["\nRoute specific configuration."], "signature": [ { "pluginId": "@kbn/core-http-server", @@ -11941,9 +11572,7 @@ "type": "string", "tags": [], "label": "path", - "description": [ - "\nThe endpoint _within_ the router path to register the route.\n" - ], + "description": ["\nThe endpoint _within_ the router path to register the route.\n"], "path": "packages/core/http/core-http-server/src/router/route.ts", "deprecated": false, "trackAdoption": false @@ -11978,9 +11607,7 @@ "type": "Object", "tags": [], "label": "options", - "description": [ - "\nAdditional route options {@link RouteConfigOptions}." - ], + "description": ["\nAdditional route options {@link RouteConfigOptions}."], "signature": [ { "pluginId": "@kbn/core-http-server", @@ -12004,9 +11631,7 @@ "type": "Interface", "tags": [], "label": "RouteConfigOptions", - "description": [ - "\nAdditional route options." - ], + "description": ["\nAdditional route options."], "signature": [ { "pluginId": "@kbn/core-http-server", @@ -12030,9 +11655,7 @@ "description": [ "\nDefines authentication mode for a route:\n- true. A user has to have valid credentials to access a resource\n- false. A user can access a resource without any credentials.\n- 'optional'. A user can access a resource, and will be authenticated if provided credentials are valid.\n Can be useful when we grant access to a resource but want to identify a user if possible.\n\nDefaults to `true` if an auth mechanism is registered." ], - "signature": [ - "boolean | \"optional\" | undefined" - ], + "signature": ["boolean | \"optional\" | undefined"], "path": "packages/core/http/core-http-server/src/router/route.ts", "deprecated": false, "trackAdoption": false @@ -12046,9 +11669,7 @@ "description": [ "\nDefines xsrf protection requirements for a route:\n- true. Requires an incoming POST/PUT/DELETE request to contain `kbn-xsrf` header.\n- false. Disables xsrf protection.\n\nSet to true by default" ], - "signature": [ - "(Method extends \"get\" ? never : boolean) | undefined" - ], + "signature": ["(Method extends \"get\" ? never : boolean) | undefined"], "path": "packages/core/http/core-http-server/src/router/route.ts", "deprecated": false, "trackAdoption": false @@ -12062,9 +11683,7 @@ "description": [ "\nDefines intended request origin of the route:\n- public. The route is public, declared stable and intended for external access.\n In the future, may require an incomming request to contain a specified header.\n- internal. The route is internal and intended for internal access only.\n\nDefaults to 'internal' If not declared," ], - "signature": [ - "\"public\" | \"internal\" | undefined" - ], + "signature": ["\"public\" | \"internal\" | undefined"], "path": "packages/core/http/core-http-server/src/router/route.ts", "deprecated": false, "trackAdoption": false @@ -12075,12 +11694,8 @@ "type": "Object", "tags": [], "label": "tags", - "description": [ - "\nAdditional metadata tag strings to attach to the route." - ], - "signature": [ - "readonly string[] | undefined" - ], + "description": ["\nAdditional metadata tag strings to attach to the route."], + "signature": ["readonly string[] | undefined"], "path": "packages/core/http/core-http-server/src/router/route.ts", "deprecated": false, "trackAdoption": false @@ -12091,9 +11706,7 @@ "type": "Uncategorized", "tags": [], "label": "body", - "description": [ - "\nAdditional body options {@link RouteConfigOptionsBody}." - ], + "description": ["\nAdditional body options {@link RouteConfigOptionsBody}."], "signature": [ "(Method extends \"get\" | \"options\" ? undefined : ", { @@ -12115,9 +11728,7 @@ "type": "Object", "tags": [], "label": "timeout", - "description": [ - "\nDefines per-route timeouts." - ], + "description": ["\nDefines per-route timeouts."], "signature": [ "{ payload?: (Method extends \"get\" | \"options\" ? undefined : number) | undefined; idleSocket?: number | undefined; } | undefined" ], @@ -12134,9 +11745,7 @@ "type": "Interface", "tags": [], "label": "RouteConfigOptionsBody", - "description": [ - "\nAdditional body options for a route" - ], + "description": ["\nAdditional body options for a route"], "path": "packages/core/http/core-http-server/src/router/route.ts", "deprecated": false, "trackAdoption": false, @@ -12174,9 +11783,7 @@ "description": [ "\nA mime type string overriding the 'Content-Type' header value received." ], - "signature": [ - "string | undefined" - ], + "signature": ["string | undefined"], "path": "packages/core/http/core-http-server/src/router/route.ts", "deprecated": false, "trackAdoption": false @@ -12190,9 +11797,7 @@ "description": [ "\nLimits the size of incoming payloads to the specified byte count. Allowing very large payloads may cause the server to run out of memory.\n\nDefault value: The one set in the kibana.yml config file under the parameter `server.maxPayload`." ], - "signature": [ - "number | undefined" - ], + "signature": ["number | undefined"], "path": "packages/core/http/core-http-server/src/router/route.ts", "deprecated": false, "trackAdoption": false @@ -12206,9 +11811,7 @@ "description": [ "\nThe processed payload format. The value must be one of:\n* 'data' - the incoming payload is read fully into memory. If parse is true, the payload is parsed (JSON, form-decoded, multipart) based on the 'Content-Type' header. If parse is false, a raw\nBuffer is returned.\n* 'stream' - the incoming payload is made available via a Stream.Readable interface. If the payload is 'multipart/form-data' and parse is true, field values are presented as text while files\nare provided as streams. File streams from a 'multipart/form-data' upload will also have a hapi property containing the filename and headers properties. Note that payload streams for multipart\npayloads are a synthetic interface created on top of the entire multipart content loaded into memory. To avoid loading large multipart payloads into memory, set parse to false and handle the\nmultipart payload in the handler using a streaming parser (e.g. pez).\n\nDefault value: 'data', unless no validation.body is provided in the route definition. In that case the default is 'stream' to alleviate memory pressure." ], - "signature": [ - "\"data\" | \"stream\" | undefined" - ], + "signature": ["\"data\" | \"stream\" | undefined"], "path": "packages/core/http/core-http-server/src/router/route.ts", "deprecated": false, "trackAdoption": false @@ -12222,9 +11825,7 @@ "description": [ "\nDetermines if the incoming payload is processed or presented raw. Available values:\n* true - if the request 'Content-Type' matches the allowed mime types set by allow (for the whole payload as well as parts), the payload is converted into an object when possible. If the\nformat is unknown, a Bad Request (400) error response is sent. Any known content encoding is decoded.\n* false - the raw payload is returned unmodified.\n* 'gunzip' - the raw payload is returned unmodified after any known content encoding is decoded.\n\nDefault value: true, unless no validation.body is provided in the route definition. In that case the default is false to alleviate memory pressure." ], - "signature": [ - "boolean | \"gunzip\" | undefined" - ], + "signature": ["boolean | \"gunzip\" | undefined"], "path": "packages/core/http/core-http-server/src/router/route.ts", "deprecated": false, "trackAdoption": false @@ -12340,9 +11941,7 @@ "tags": [], "label": "req", "description": [], - "signature": [ - "Request" - ], + "signature": ["Request"], "path": "packages/core/http/core-http-server/src/router/router.ts", "deprecated": false, "trackAdoption": false, @@ -12355,9 +11954,7 @@ "tags": [], "label": "responseToolkit", "description": [], - "signature": [ - "ResponseToolkit" - ], + "signature": ["ResponseToolkit"], "path": "packages/core/http/core-http-server/src/router/router.ts", "deprecated": false, "trackAdoption": false, @@ -12389,9 +11986,7 @@ "tags": [], "label": "ok", "description": [], - "signature": [ - "(value: T) => { value: T; }" - ], + "signature": ["(value: T) => { value: T; }"], "path": "packages/core/http/core-http-server/src/router/route_validator.ts", "deprecated": false, "trackAdoption": false, @@ -12403,9 +11998,7 @@ "tags": [], "label": "value", "description": [], - "signature": [ - "T" - ], + "signature": ["T"], "path": "packages/core/http/core-http-server/src/router/route_validator.ts", "deprecated": false, "trackAdoption": false, @@ -12443,9 +12036,7 @@ "tags": [], "label": "error", "description": [], - "signature": [ - "string | Error" - ], + "signature": ["string | Error"], "path": "packages/core/http/core-http-server/src/router/route_validator.ts", "deprecated": false, "trackAdoption": false, @@ -12458,9 +12049,7 @@ "tags": [], "label": "path", "description": [], - "signature": [ - "string[] | undefined" - ], + "signature": ["string[] | undefined"], "path": "packages/core/http/core-http-server/src/router/route_validator.ts", "deprecated": false, "trackAdoption": false, @@ -12501,9 +12090,7 @@ "type": "CompoundType", "tags": [], "label": "params", - "description": [ - "\nValidation logic for the URL params" - ], + "description": ["\nValidation logic for the URL params"], "signature": [ { "pluginId": "@kbn/core-http-server", @@ -12524,9 +12111,7 @@ "type": "CompoundType", "tags": [], "label": "query", - "description": [ - "\nValidation logic for the Query params" - ], + "description": ["\nValidation logic for the Query params"], "signature": [ { "pluginId": "@kbn/core-http-server", @@ -12547,9 +12132,7 @@ "type": "CompoundType", "tags": [], "label": "body", - "description": [ - "\nValidation logic for the body payload" - ], + "description": ["\nValidation logic for the body payload"], "signature": [ { "pluginId": "@kbn/core-http-server", @@ -12605,9 +12188,7 @@ "type": "Interface", "tags": [], "label": "SessionCookieValidationResult", - "description": [ - "\nReturn type from a function to validate cookie contents." - ], + "description": ["\nReturn type from a function to validate cookie contents."], "path": "packages/core/http/core-http-server/src/session_storage.ts", "deprecated": false, "trackAdoption": false, @@ -12618,9 +12199,7 @@ "type": "boolean", "tags": [], "label": "isValid", - "description": [ - "\nWhether the cookie is valid or not." - ], + "description": ["\nWhether the cookie is valid or not."], "path": "packages/core/http/core-http-server/src/session_storage.ts", "deprecated": false, "trackAdoption": false @@ -12634,9 +12213,7 @@ "description": [ "\nThe \"Path\" attribute of the cookie; if the cookie is invalid, this is used to clear it." ], - "signature": [ - "string | undefined" - ], + "signature": ["string | undefined"], "path": "packages/core/http/core-http-server/src/session_storage.ts", "deprecated": false, "trackAdoption": false @@ -12650,9 +12227,7 @@ "type": "Interface", "tags": [], "label": "SessionStorage", - "description": [ - "\nProvides an interface to store and retrieve data across requests." - ], + "description": ["\nProvides an interface to store and retrieve data across requests."], "signature": [ { "pluginId": "@kbn/core-http-server", @@ -12673,12 +12248,8 @@ "type": "Function", "tags": [], "label": "get", - "description": [ - "\nRetrieves session value from the session storage." - ], - "signature": [ - "() => Promise" - ], + "description": ["\nRetrieves session value from the session storage."], + "signature": ["() => Promise"], "path": "packages/core/http/core-http-server/src/session_storage.ts", "deprecated": false, "trackAdoption": false, @@ -12691,12 +12262,8 @@ "type": "Function", "tags": [], "label": "set", - "description": [ - "\nPuts current session value into the session storage." - ], - "signature": [ - "(sessionValue: T) => void" - ], + "description": ["\nPuts current session value into the session storage."], + "signature": ["(sessionValue: T) => void"], "path": "packages/core/http/core-http-server/src/session_storage.ts", "deprecated": false, "trackAdoption": false, @@ -12707,12 +12274,8 @@ "type": "Uncategorized", "tags": [], "label": "sessionValue", - "description": [ - "- value to put" - ], - "signature": [ - "T" - ], + "description": ["- value to put"], + "signature": ["T"], "path": "packages/core/http/core-http-server/src/session_storage.ts", "deprecated": false, "trackAdoption": false, @@ -12727,12 +12290,8 @@ "type": "Function", "tags": [], "label": "clear", - "description": [ - "\nClears current session." - ], - "signature": [ - "() => void" - ], + "description": ["\nClears current session."], + "signature": ["() => void"], "path": "packages/core/http/core-http-server/src/session_storage.ts", "deprecated": false, "trackAdoption": false, @@ -12771,9 +12330,7 @@ "type": "string", "tags": [], "label": "name", - "description": [ - "\nName of the session cookie." - ], + "description": ["\nName of the session cookie."], "path": "packages/core/http/core-http-server/src/session_storage.ts", "deprecated": false, "trackAdoption": false @@ -12797,9 +12354,7 @@ "type": "Function", "tags": [], "label": "validate", - "description": [ - "\nFunction called to validate a cookie's decrypted value." - ], + "description": ["\nFunction called to validate a cookie's decrypted value."], "signature": [ "(sessionValue: T | T[]) => ", { @@ -12821,9 +12376,7 @@ "tags": [], "label": "sessionValue", "description": [], - "signature": [ - "T | T[]" - ], + "signature": ["T | T[]"], "path": "packages/core/http/core-http-server/src/session_storage.ts", "deprecated": false, "trackAdoption": false, @@ -12854,9 +12407,7 @@ "description": [ "\nDefines SameSite attribute of the Set-Cookie Header.\nhttps://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/Set-Cookie/SameSite" ], - "signature": [ - "\"None\" | \"Strict\" | \"Lax\" | undefined" - ], + "signature": ["\"None\" | \"Strict\" | \"Lax\" | undefined"], "path": "packages/core/http/core-http-server/src/session_storage.ts", "deprecated": false, "trackAdoption": false @@ -12870,9 +12421,7 @@ "type": "Interface", "tags": [], "label": "SessionStorageFactory", - "description": [ - "\nSessionStorage factory to bind one to an incoming request" - ], + "description": ["\nSessionStorage factory to bind one to an incoming request"], "signature": [ { "pluginId": "@kbn/core-http-server", @@ -12951,9 +12500,7 @@ "type": "Interface", "tags": [], "label": "VersionedRoute", - "description": [ - "\nA versioned route" - ], + "description": ["\nA versioned route"], "signature": [ { "pluginId": "@kbn/core-http-server", @@ -12974,9 +12521,7 @@ "type": "Function", "tags": [], "label": "addVersion", - "description": [ - "\nAdd a new version of this route" - ], + "description": ["\nAdd a new version of this route"], "signature": [ "

(options: ", { @@ -13060,9 +12605,7 @@ "type": "Function", "tags": [], "label": "handler", - "description": [ - "The request handler for this version of a route" - ], + "description": ["The request handler for this version of a route"], "signature": [ "(context: Ctx, request: ", { @@ -13138,9 +12681,7 @@ "parentPluginId": "@kbn/core-http-server", "id": "def-common.VersionedRouter.get", "type": "Function", - "tags": [ - "track-adoption" - ], + "tags": ["track-adoption"], "label": "get", "description": [], "signature": [ @@ -13458,10 +12999,6 @@ "plugin": "ml", "path": "x-pack/plugins/ml/server/routes/management.ts" }, - { - "plugin": "fleet", - "path": "x-pack/plugins/fleet/server/services/security/fleet_router.ts" - }, { "plugin": "telemetry", "path": "src/plugins/telemetry/server/routes/telemetry_config.ts" @@ -13474,6 +13011,10 @@ "plugin": "telemetry", "path": "src/plugins/telemetry/server/routes/telemetry_last_reported.ts" }, + { + "plugin": "fleet", + "path": "x-pack/plugins/fleet/server/services/security/fleet_router.ts" + }, { "plugin": "metricsDataAccess", "path": "x-pack/plugins/metrics_data_access/server/lib/adapters/framework/kibana_framework_adapter.ts" @@ -14145,9 +13686,7 @@ "parentPluginId": "@kbn/core-http-server", "id": "def-common.VersionedRouter.put", "type": "Function", - "tags": [ - "track-adoption" - ], + "tags": ["track-adoption"], "label": "put", "description": [], "signature": [ @@ -14245,10 +13784,6 @@ "plugin": "ml", "path": "x-pack/plugins/ml/server/routes/anomaly_detectors.ts" }, - { - "plugin": "fleet", - "path": "x-pack/plugins/fleet/server/services/security/fleet_router.ts" - }, { "plugin": "telemetry", "path": "src/plugins/telemetry/server/routes/telemetry_user_has_seen_notice.ts" @@ -14257,6 +13792,10 @@ "plugin": "telemetry", "path": "src/plugins/telemetry/server/routes/telemetry_last_reported.ts" }, + { + "plugin": "fleet", + "path": "x-pack/plugins/fleet/server/services/security/fleet_router.ts" + }, { "plugin": "metricsDataAccess", "path": "x-pack/plugins/metrics_data_access/server/lib/adapters/framework/kibana_framework_adapter.ts" @@ -14420,9 +13959,7 @@ "parentPluginId": "@kbn/core-http-server", "id": "def-common.VersionedRouter.post", "type": "Function", - "tags": [ - "track-adoption" - ], + "tags": ["track-adoption"], "label": "post", "description": [], "signature": [ @@ -14844,10 +14381,6 @@ "plugin": "ml", "path": "x-pack/plugins/ml/server/routes/alerting.ts" }, - { - "plugin": "fleet", - "path": "x-pack/plugins/fleet/server/services/security/fleet_router.ts" - }, { "plugin": "telemetry", "path": "src/plugins/telemetry/server/routes/telemetry_opt_in_stats.ts" @@ -14860,6 +14393,10 @@ "plugin": "telemetry", "path": "src/plugins/telemetry/server/routes/telemetry_usage_stats.ts" }, + { + "plugin": "fleet", + "path": "x-pack/plugins/fleet/server/services/security/fleet_router.ts" + }, { "plugin": "metricsDataAccess", "path": "x-pack/plugins/metrics_data_access/server/lib/adapters/framework/kibana_framework_adapter.ts" @@ -15371,9 +14908,7 @@ "parentPluginId": "@kbn/core-http-server", "id": "def-common.VersionedRouter.patch", "type": "Function", - "tags": [ - "track-adoption" - ], + "tags": ["track-adoption"], "label": "patch", "description": [], "signature": [ @@ -15498,9 +15033,7 @@ "parentPluginId": "@kbn/core-http-server", "id": "def-common.VersionedRouter.delete", "type": "Function", - "tags": [ - "track-adoption" - ], + "tags": ["track-adoption"], "label": "delete", "description": [], "signature": [ @@ -15792,9 +15325,7 @@ "tags": [], "label": "unsafe", "description": [], - "signature": [ - "{ body?: boolean | undefined; } | undefined" - ], + "signature": ["{ body?: boolean | undefined; } | undefined"], "path": "packages/core/http/core-http-server/src/versioning/types.ts", "deprecated": false, "trackAdoption": false @@ -15822,9 +15353,7 @@ "type": "Enum", "tags": [], "label": "AuthStatus", - "description": [ - "\nStatus indicating an outcome of the authentication." - ], + "description": ["\nStatus indicating an outcome of the authentication."], "path": "packages/core/http/core-http-server/src/auth_state.ts", "deprecated": false, "trackAdoption": false, @@ -15860,18 +15389,10 @@ "parentPluginId": "@kbn/core-http-server", "id": "def-common.ApiVersion", "type": "Type", - "tags": [ - "note", - "note", - "experimental" - ], + "tags": ["note", "note", "experimental"], "label": "ApiVersion", - "description": [ - "\nA Kibana HTTP API version\n" - ], - "signature": [ - "string" - ], + "description": ["\nA Kibana HTTP API version\n"], + "signature": ["string"], "path": "packages/core/http/core-http-common/src/versioning.ts", "deprecated": false, "trackAdoption": false, @@ -15883,9 +15404,7 @@ "type": "Type", "tags": [], "label": "AuthenticationHandler", - "description": [ - "\nSee {@link AuthToolkit}." - ], + "description": ["\nSee {@link AuthToolkit}."], "signature": [ "(request: ", { @@ -16029,9 +15548,7 @@ "tags": [], "label": "AuthHeaders", "description": [], - "signature": [ - "{ [x: string]: string | string[]; }" - ], + "signature": ["{ [x: string]: string | string[]; }"], "path": "packages/core/http/core-http-server/src/lifecycle/auth.ts", "deprecated": false, "trackAdoption": false, @@ -16080,12 +15597,8 @@ "type": "Type", "tags": [], "label": "DestructiveRouteMethod", - "description": [ - "\nSet of HTTP methods changing the state of the server." - ], - "signature": [ - "\"delete\" | \"post\" | \"put\" | \"patch\"" - ], + "description": ["\nSet of HTTP methods changing the state of the server."], + "signature": ["\"delete\" | \"post\" | \"put\" | \"patch\""], "path": "packages/core/http/core-http-server/src/router/route.ts", "deprecated": false, "trackAdoption": false, @@ -16095,13 +15608,9 @@ "parentPluginId": "@kbn/core-http-server", "id": "def-common.GetAuthHeaders", "type": "Type", - "tags": [ - "return" - ], + "tags": ["return"], "label": "GetAuthHeaders", - "description": [ - "\nGet headers to authenticate a user against Elasticsearch." - ], + "description": ["\nGet headers to authenticate a user against Elasticsearch."], "signature": [ "(request: ", { @@ -16124,9 +15633,7 @@ "path": "packages/core/http/core-http-server/src/auth_headers.ts", "deprecated": false, "trackAdoption": false, - "returnComment": [ - "authentication headers {@link AuthHeaders } for - an incoming request." - ], + "returnComment": ["authentication headers {@link AuthHeaders } for - an incoming request."], "children": [ { "parentPluginId": "@kbn/core-http-server", @@ -16134,9 +15641,7 @@ "type": "Object", "tags": [], "label": "request", - "description": [ - "{@link KibanaRequest } - an incoming request." - ], + "description": ["{@link KibanaRequest } - an incoming request."], "signature": [ { "pluginId": "@kbn/core-http-server", @@ -16193,9 +15698,7 @@ "type": "Object", "tags": [], "label": "request", - "description": [ - "{@link KibanaRequest } - an incoming request." - ], + "description": ["{@link KibanaRequest } - an incoming request."], "signature": [ { "pluginId": "@kbn/core-http-server", @@ -16247,9 +15750,7 @@ "description": [ "\nA function that accepts a context object and an optional number of additional arguments. Used for the generic types\nin {@link IContextContainer}\n" ], - "signature": [ - "(context: T, ...args: any[]) => any" - ], + "signature": ["(context: T, ...args: any[]) => any"], "path": "packages/core/http/core-http-server/src/router/context_provider.ts", "deprecated": false, "trackAdoption": false, @@ -16262,9 +15763,7 @@ "tags": [], "label": "context", "description": [], - "signature": [ - "T" - ], + "signature": ["T"], "path": "packages/core/http/core-http-server/src/router/context_provider.ts", "deprecated": false, "trackAdoption": false @@ -16276,9 +15775,7 @@ "tags": [], "label": "args", "description": [], - "signature": [ - "any[]" - ], + "signature": ["any[]"], "path": "packages/core/http/core-http-server/src/router/context_provider.ts", "deprecated": false, "trackAdoption": false @@ -16295,9 +15792,7 @@ "description": [ "\nExtracts the types of the additional arguments of a {@link HandlerFunction}, excluding the\n{@link HandlerContextType}.\n" ], - "signature": [ - "T extends (context: any, ...args: infer U) => any ? U : never" - ], + "signature": ["T extends (context: any, ...args: infer U) => any ? U : never"], "path": "packages/core/http/core-http-server/src/router/context_provider.ts", "deprecated": false, "trackAdoption": false, @@ -16309,9 +15804,7 @@ "type": "Type", "tags": [], "label": "Headers", - "description": [ - "\nHttp request headers to read." - ], + "description": ["\nHttp request headers to read."], "signature": [ "{ date?: string | string[] | undefined; warning?: string | string[] | undefined; location?: string | string[] | undefined; range?: string | string[] | undefined; from?: string | string[] | undefined; etag?: string | string[] | undefined; accept?: string | string[] | undefined; \"accept-language\"?: string | string[] | undefined; \"accept-patch\"?: string | string[] | undefined; \"accept-ranges\"?: string | string[] | undefined; \"access-control-allow-credentials\"?: string | string[] | undefined; \"access-control-allow-headers\"?: string | string[] | undefined; \"access-control-allow-methods\"?: string | string[] | undefined; \"access-control-allow-origin\"?: string | string[] | undefined; \"access-control-expose-headers\"?: string | string[] | undefined; \"access-control-max-age\"?: string | string[] | undefined; \"access-control-request-headers\"?: string | string[] | undefined; \"access-control-request-method\"?: string | string[] | undefined; age?: string | string[] | undefined; allow?: string | string[] | undefined; \"alt-svc\"?: string | string[] | undefined; authorization?: string | string[] | undefined; \"cache-control\"?: string | string[] | undefined; connection?: string | string[] | undefined; \"content-disposition\"?: string | string[] | undefined; \"content-encoding\"?: string | string[] | undefined; \"content-language\"?: string | string[] | undefined; \"content-length\"?: string | string[] | undefined; \"content-location\"?: string | string[] | undefined; \"content-range\"?: string | string[] | undefined; \"content-type\"?: string | string[] | undefined; cookie?: string | string[] | undefined; expect?: string | string[] | undefined; expires?: string | string[] | undefined; forwarded?: string | string[] | undefined; host?: string | string[] | undefined; \"if-match\"?: string | string[] | undefined; \"if-modified-since\"?: string | string[] | undefined; \"if-none-match\"?: string | string[] | undefined; \"if-unmodified-since\"?: string | string[] | undefined; \"last-modified\"?: string | string[] | undefined; origin?: string | string[] | undefined; pragma?: string | string[] | undefined; \"proxy-authenticate\"?: string | string[] | undefined; \"proxy-authorization\"?: string | string[] | undefined; \"public-key-pins\"?: string | string[] | undefined; referer?: string | string[] | undefined; \"retry-after\"?: string | string[] | undefined; \"sec-websocket-accept\"?: string | string[] | undefined; \"sec-websocket-extensions\"?: string | string[] | undefined; \"sec-websocket-key\"?: string | string[] | undefined; \"sec-websocket-protocol\"?: string | string[] | undefined; \"sec-websocket-version\"?: string | string[] | undefined; \"set-cookie\"?: string | string[] | undefined; \"strict-transport-security\"?: string | string[] | undefined; tk?: string | string[] | undefined; trailer?: string | string[] | undefined; \"transfer-encoding\"?: string | string[] | undefined; upgrade?: string | string[] | undefined; \"user-agent\"?: string | string[] | undefined; vary?: string | string[] | undefined; via?: string | string[] | undefined; \"www-authenticate\"?: string | string[] | undefined; } & { [header: string]: string | string[] | undefined; }" ], @@ -16326,14 +15819,8 @@ "type": "Type", "tags": [], "label": "HttpResponsePayload", - "description": [ - "\nData send to the client as a response payload." - ], - "signature": [ - "string | Record | Buffer | ", - "Stream", - " | undefined" - ], + "description": ["\nData send to the client as a response payload."], + "signature": ["string | Record | Buffer | ", "Stream", " | undefined"], "path": "packages/core/http/core-http-server/src/router/response.ts", "deprecated": false, "trackAdoption": false, @@ -16391,9 +15878,7 @@ "description": [ "- A partial context object containing only the keys for values provided by plugin dependencies" ], - "signature": [ - "{ [P in Exclude]: Context[P]; }" - ], + "signature": ["{ [P in Exclude]: Context[P]; }"], "path": "packages/core/http/core-http-server/src/router/context_provider.ts", "deprecated": false, "trackAdoption": false @@ -16439,9 +15924,7 @@ "type": "Type", "tags": [], "label": "IsAuthenticated", - "description": [ - "\nReturns authentication status for a request." - ], + "description": ["\nReturns authentication status for a request."], "signature": [ "(request: ", { @@ -16464,9 +15947,7 @@ "type": "Object", "tags": [], "label": "request", - "description": [ - "{@link KibanaRequest } - an incoming request." - ], + "description": ["{@link KibanaRequest } - an incoming request."], "signature": [ { "pluginId": "@kbn/core-http-server", @@ -16623,9 +16104,7 @@ "type": "Type", "tags": [], "label": "KnownHeaders", - "description": [ - "\nSet of well-known HTTP headers." - ], + "description": ["\nSet of well-known HTTP headers."], "signature": [ "\"date\" | \"warning\" | \"location\" | \"range\" | \"from\" | \"etag\" | \"accept\" | \"accept-language\" | \"accept-patch\" | \"accept-ranges\" | \"access-control-allow-credentials\" | \"access-control-allow-headers\" | \"access-control-allow-methods\" | \"access-control-allow-origin\" | \"access-control-expose-headers\" | \"access-control-max-age\" | \"access-control-request-headers\" | \"access-control-request-method\" | \"age\" | \"allow\" | \"alt-svc\" | \"authorization\" | \"cache-control\" | \"connection\" | \"content-disposition\" | \"content-encoding\" | \"content-language\" | \"content-length\" | \"content-location\" | \"content-range\" | \"content-type\" | \"cookie\" | \"expect\" | \"expires\" | \"forwarded\" | \"host\" | \"if-match\" | \"if-modified-since\" | \"if-none-match\" | \"if-unmodified-since\" | \"last-modified\" | \"origin\" | \"pragma\" | \"proxy-authenticate\" | \"proxy-authorization\" | \"public-key-pins\" | \"referer\" | \"retry-after\" | \"sec-websocket-accept\" | \"sec-websocket-extensions\" | \"sec-websocket-key\" | \"sec-websocket-protocol\" | \"sec-websocket-version\" | \"set-cookie\" | \"strict-transport-security\" | \"tk\" | \"trailer\" | \"transfer-encoding\" | \"upgrade\" | \"user-agent\" | \"vary\" | \"via\" | \"www-authenticate\"" ], @@ -16640,9 +16119,7 @@ "type": "Type", "tags": [], "label": "KnownKeys", - "description": [ - "\nCreates a Union type of all known keys of a given interface." - ], + "description": ["\nCreates a Union type of all known keys of a given interface."], "signature": [ { "pluginId": "@kbn/core-http-server", @@ -16695,9 +16172,7 @@ "type": "Type", "tags": [], "label": "OnPostAuthHandler", - "description": [ - "\nSee {@link OnPostAuthToolkit}." - ], + "description": ["\nSee {@link OnPostAuthToolkit}."], "signature": [ "(request: ", { @@ -16873,9 +16348,7 @@ "type": "Type", "tags": [], "label": "OnPreAuthHandler", - "description": [ - "\nSee {@link OnPreAuthToolkit}." - ], + "description": ["\nSee {@link OnPreAuthToolkit}."], "signature": [ "(request: ", { @@ -17051,9 +16524,7 @@ "type": "Type", "tags": [], "label": "OnPreResponseHandler", - "description": [ - "\nSee {@link OnPreResponseToolkit}." - ], + "description": ["\nSee {@link OnPreResponseToolkit}."], "signature": [ "(request: ", { @@ -17201,9 +16672,7 @@ "type": "Type", "tags": [], "label": "OnPreRoutingHandler", - "description": [ - "\nSee {@link OnPreRoutingToolkit}." - ], + "description": ["\nSee {@link OnPreRoutingToolkit}."], "signature": [ "(request: ", { @@ -17398,9 +16867,7 @@ "type": "Type", "tags": [], "label": "RedirectResponseOptions", - "description": [ - "\nHTTP response parameters for redirection response" - ], + "description": ["\nHTTP response parameters for redirection response"], "signature": [ { "pluginId": "@kbn/core-http-server", @@ -17474,9 +16941,7 @@ "description": [ "{@link RequestHandlerContext } - the core context exposed for this request." ], - "signature": [ - "Context" - ], + "signature": ["Context"], "path": "packages/core/http/core-http-server/src/router/request_handler.ts", "deprecated": false, "trackAdoption": false @@ -17513,9 +16978,7 @@ "description": [ "{@link KibanaResponseFactory } - a set of helper functions used to respond to a request." ], - "signature": [ - "ResponseFactory" - ], + "signature": ["ResponseFactory"], "path": "packages/core/http/core-http-server/src/router/request_handler.ts", "deprecated": false, "trackAdoption": false @@ -17529,9 +16992,7 @@ "type": "Type", "tags": [], "label": "RequestHandlerWrapper", - "description": [ - "\nType-safe wrapper for {@link RequestHandler} function." - ], + "description": ["\nType-safe wrapper for {@link RequestHandler} function."], "signature": [ " | Record<\"date\" | \"warning\" | \"location\" | \"range\" | \"from\" | \"etag\" | \"accept\" | \"accept-language\" | \"accept-patch\" | \"accept-ranges\" | \"access-control-allow-credentials\" | \"access-control-allow-headers\" | \"access-control-allow-methods\" | \"access-control-allow-origin\" | \"access-control-expose-headers\" | \"access-control-max-age\" | \"access-control-request-headers\" | \"access-control-request-method\" | \"age\" | \"allow\" | \"alt-svc\" | \"authorization\" | \"cache-control\" | \"connection\" | \"content-disposition\" | \"content-encoding\" | \"content-language\" | \"content-length\" | \"content-location\" | \"content-range\" | \"content-type\" | \"cookie\" | \"expect\" | \"expires\" | \"forwarded\" | \"host\" | \"if-match\" | \"if-modified-since\" | \"if-none-match\" | \"if-unmodified-since\" | \"last-modified\" | \"origin\" | \"pragma\" | \"proxy-authenticate\" | \"proxy-authorization\" | \"public-key-pins\" | \"referer\" | \"retry-after\" | \"sec-websocket-accept\" | \"sec-websocket-extensions\" | \"sec-websocket-key\" | \"sec-websocket-protocol\" | \"sec-websocket-version\" | \"set-cookie\" | \"strict-transport-security\" | \"tk\" | \"trailer\" | \"transfer-encoding\" | \"upgrade\" | \"user-agent\" | \"vary\" | \"via\" | \"www-authenticate\", string | string[]>" ], @@ -17754,9 +17203,7 @@ "type": "Type", "tags": [], "label": "RouteContentType", - "description": [ - "\nThe set of supported parseable Content-Types" - ], + "description": ["\nThe set of supported parseable Content-Types"], "signature": [ "\"application/json\" | \"multipart/form-data\" | \"application/*+json\" | \"application/octet-stream\" | \"application/x-www-form-urlencoded\" | \"text/*\"" ], @@ -17771,9 +17218,7 @@ "type": "Type", "tags": [], "label": "RouteMethod", - "description": [ - "\nThe set of common HTTP methods supported by Kibana routing." - ], + "description": ["\nThe set of common HTTP methods supported by Kibana routing."], "signature": [ { "pluginId": "@kbn/core-http-server", @@ -17802,9 +17247,7 @@ "type": "Type", "tags": [], "label": "RouteRegistrar", - "description": [ - "\nRoute handler common definition\n" - ], + "description": ["\nRoute handler common definition\n"], "signature": [ "(route: ", { @@ -17912,9 +17355,7 @@ "tags": [], "label": "context", "description": [], - "signature": [ - "Context" - ], + "signature": ["Context"], "path": "packages/core/http/core-http-server/src/router/request_handler.ts", "deprecated": false, "trackAdoption": false @@ -17947,9 +17388,7 @@ "tags": [], "label": "response", "description": [], - "signature": [ - "ResponseFactory" - ], + "signature": ["ResponseFactory"], "path": "packages/core/http/core-http-server/src/router/request_handler.ts", "deprecated": false, "trackAdoption": false @@ -17999,9 +17438,7 @@ "tags": [], "label": "data", "description": [], - "signature": [ - "any" - ], + "signature": ["any"], "path": "packages/core/http/core-http-server/src/router/route_validator.ts", "deprecated": false, "trackAdoption": false @@ -18075,9 +17512,7 @@ "type": "Type", "tags": [], "label": "RouteValidatorFullConfig", - "description": [ - "\nRoute validations config and options merged into one object" - ], + "description": ["\nRoute validations config and options merged into one object"], "signature": [ { "pluginId": "@kbn/core-http-server", @@ -18106,12 +17541,8 @@ "type": "Type", "tags": [], "label": "SafeRouteMethod", - "description": [ - "\nSet of HTTP methods not changing the state of the server." - ], - "signature": [ - "\"get\" | \"options\"" - ], + "description": ["\nSet of HTTP methods not changing the state of the server."], + "signature": ["\"get\" | \"options\""], "path": "packages/core/http/core-http-server/src/router/route.ts", "deprecated": false, "trackAdoption": false, @@ -18176,9 +17607,7 @@ "tags": [], "label": "headers", "description": [], - "signature": [ - "{ [x: string]: string | string[]; }" - ], + "signature": ["{ [x: string]: string | string[]; }"], "path": "packages/core/http/core-http-server/src/auth_headers.ts", "deprecated": false, "trackAdoption": false @@ -18209,9 +17638,7 @@ "type": "Type", "tags": [], "label": "VersionedRouteConfig", - "description": [ - "\nConfiguration for a versioned route" - ], + "description": ["\nConfiguration for a versioned route"], "signature": [ "Omit<", { @@ -18242,9 +17669,7 @@ "type": "Type", "tags": [], "label": "VersionedRouteRegistrar", - "description": [ - "\nCreate an {@link VersionedRoute | versioned route}.\n" - ], + "description": ["\nCreate an {@link VersionedRoute | versioned route}.\n"], "signature": [ "(config: ", { @@ -18267,9 +17692,7 @@ "path": "packages/core/http/core-http-server/src/versioning/types.ts", "deprecated": false, "trackAdoption": false, - "returnComment": [ - "A versioned route" - ], + "returnComment": ["A versioned route"], "children": [ { "parentPluginId": "@kbn/core-http-server", @@ -18277,9 +17700,7 @@ "type": "CompoundType", "tags": [], "label": "config", - "description": [ - "- The route configuration" - ], + "description": ["- The route configuration"], "signature": [ "Omit<", { @@ -18343,12 +17764,8 @@ "type": "Object", "tags": [], "label": "validBodyOutput", - "description": [ - "\nThe set of valid body.output" - ], - "signature": [ - "readonly [\"data\", \"stream\"]" - ], + "description": ["\nThe set of valid body.output"], + "signature": ["readonly [\"data\", \"stream\"]"], "path": "packages/core/http/core-http-server/src/router/route.ts", "deprecated": false, "trackAdoption": false, @@ -18356,4 +17773,4 @@ } ] } -} \ No newline at end of file +} diff --git a/api_docs/kbn_core_http_server.mdx b/api_docs/kbn_core_http_server.mdx index 37f7191b18491..e962ec48e7bc4 100644 --- a/api_docs/kbn_core_http_server.mdx +++ b/api_docs/kbn_core_http_server.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-core-http-server title: "@kbn/core-http-server" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/core-http-server plugin -date: 2024-02-19 +date: 2024-02-22 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/core-http-server'] --- import kbnCoreHttpServerObj from './kbn_core_http_server.devdocs.json'; diff --git a/api_docs/kbn_core_http_server_internal.mdx b/api_docs/kbn_core_http_server_internal.mdx index 3fc37fb6cce16..151ca3d8be352 100644 --- a/api_docs/kbn_core_http_server_internal.mdx +++ b/api_docs/kbn_core_http_server_internal.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-core-http-server-internal title: "@kbn/core-http-server-internal" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/core-http-server-internal plugin -date: 2024-02-19 +date: 2024-02-22 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/core-http-server-internal'] --- import kbnCoreHttpServerInternalObj from './kbn_core_http_server_internal.devdocs.json'; diff --git a/api_docs/kbn_core_http_server_mocks.mdx b/api_docs/kbn_core_http_server_mocks.mdx index 25913bc171452..fd570a7050def 100644 --- a/api_docs/kbn_core_http_server_mocks.mdx +++ b/api_docs/kbn_core_http_server_mocks.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-core-http-server-mocks title: "@kbn/core-http-server-mocks" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/core-http-server-mocks plugin -date: 2024-02-19 +date: 2024-02-22 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/core-http-server-mocks'] --- import kbnCoreHttpServerMocksObj from './kbn_core_http_server_mocks.devdocs.json'; diff --git a/api_docs/kbn_core_i18n_browser.mdx b/api_docs/kbn_core_i18n_browser.mdx index 3176d91cddbeb..d08ed12a3230e 100644 --- a/api_docs/kbn_core_i18n_browser.mdx +++ b/api_docs/kbn_core_i18n_browser.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-core-i18n-browser title: "@kbn/core-i18n-browser" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/core-i18n-browser plugin -date: 2024-02-19 +date: 2024-02-22 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/core-i18n-browser'] --- import kbnCoreI18nBrowserObj from './kbn_core_i18n_browser.devdocs.json'; diff --git a/api_docs/kbn_core_i18n_browser_mocks.mdx b/api_docs/kbn_core_i18n_browser_mocks.mdx index 0cd83bf41925f..44bd729589888 100644 --- a/api_docs/kbn_core_i18n_browser_mocks.mdx +++ b/api_docs/kbn_core_i18n_browser_mocks.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-core-i18n-browser-mocks title: "@kbn/core-i18n-browser-mocks" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/core-i18n-browser-mocks plugin -date: 2024-02-19 +date: 2024-02-22 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/core-i18n-browser-mocks'] --- import kbnCoreI18nBrowserMocksObj from './kbn_core_i18n_browser_mocks.devdocs.json'; diff --git a/api_docs/kbn_core_i18n_server.mdx b/api_docs/kbn_core_i18n_server.mdx index 7d8076da8a034..f596ef32739e8 100644 --- a/api_docs/kbn_core_i18n_server.mdx +++ b/api_docs/kbn_core_i18n_server.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-core-i18n-server title: "@kbn/core-i18n-server" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/core-i18n-server plugin -date: 2024-02-19 +date: 2024-02-22 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/core-i18n-server'] --- import kbnCoreI18nServerObj from './kbn_core_i18n_server.devdocs.json'; diff --git a/api_docs/kbn_core_i18n_server_internal.mdx b/api_docs/kbn_core_i18n_server_internal.mdx index 1acc5925c43d4..64728f37c5be0 100644 --- a/api_docs/kbn_core_i18n_server_internal.mdx +++ b/api_docs/kbn_core_i18n_server_internal.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-core-i18n-server-internal title: "@kbn/core-i18n-server-internal" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/core-i18n-server-internal plugin -date: 2024-02-19 +date: 2024-02-22 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/core-i18n-server-internal'] --- import kbnCoreI18nServerInternalObj from './kbn_core_i18n_server_internal.devdocs.json'; diff --git a/api_docs/kbn_core_i18n_server_mocks.mdx b/api_docs/kbn_core_i18n_server_mocks.mdx index 92f2d9cd590cd..6bf55de5a9a6b 100644 --- a/api_docs/kbn_core_i18n_server_mocks.mdx +++ b/api_docs/kbn_core_i18n_server_mocks.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-core-i18n-server-mocks title: "@kbn/core-i18n-server-mocks" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/core-i18n-server-mocks plugin -date: 2024-02-19 +date: 2024-02-22 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/core-i18n-server-mocks'] --- import kbnCoreI18nServerMocksObj from './kbn_core_i18n_server_mocks.devdocs.json'; diff --git a/api_docs/kbn_core_injected_metadata_browser_mocks.mdx b/api_docs/kbn_core_injected_metadata_browser_mocks.mdx index bdb66865eec2c..dd3513ce325fd 100644 --- a/api_docs/kbn_core_injected_metadata_browser_mocks.mdx +++ b/api_docs/kbn_core_injected_metadata_browser_mocks.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-core-injected-metadata-browser-mocks title: "@kbn/core-injected-metadata-browser-mocks" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/core-injected-metadata-browser-mocks plugin -date: 2024-02-19 +date: 2024-02-22 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/core-injected-metadata-browser-mocks'] --- import kbnCoreInjectedMetadataBrowserMocksObj from './kbn_core_injected_metadata_browser_mocks.devdocs.json'; diff --git a/api_docs/kbn_core_integrations_browser_internal.mdx b/api_docs/kbn_core_integrations_browser_internal.mdx index 952af6620961c..8b5b7ee2ad2fe 100644 --- a/api_docs/kbn_core_integrations_browser_internal.mdx +++ b/api_docs/kbn_core_integrations_browser_internal.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-core-integrations-browser-internal title: "@kbn/core-integrations-browser-internal" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/core-integrations-browser-internal plugin -date: 2024-02-19 +date: 2024-02-22 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/core-integrations-browser-internal'] --- import kbnCoreIntegrationsBrowserInternalObj from './kbn_core_integrations_browser_internal.devdocs.json'; diff --git a/api_docs/kbn_core_integrations_browser_mocks.mdx b/api_docs/kbn_core_integrations_browser_mocks.mdx index a8061c897dc44..df26008878f23 100644 --- a/api_docs/kbn_core_integrations_browser_mocks.mdx +++ b/api_docs/kbn_core_integrations_browser_mocks.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-core-integrations-browser-mocks title: "@kbn/core-integrations-browser-mocks" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/core-integrations-browser-mocks plugin -date: 2024-02-19 +date: 2024-02-22 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/core-integrations-browser-mocks'] --- import kbnCoreIntegrationsBrowserMocksObj from './kbn_core_integrations_browser_mocks.devdocs.json'; diff --git a/api_docs/kbn_core_lifecycle_browser.mdx b/api_docs/kbn_core_lifecycle_browser.mdx index f8c684cc14a3d..4a842a805e58c 100644 --- a/api_docs/kbn_core_lifecycle_browser.mdx +++ b/api_docs/kbn_core_lifecycle_browser.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-core-lifecycle-browser title: "@kbn/core-lifecycle-browser" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/core-lifecycle-browser plugin -date: 2024-02-19 +date: 2024-02-22 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/core-lifecycle-browser'] --- import kbnCoreLifecycleBrowserObj from './kbn_core_lifecycle_browser.devdocs.json'; diff --git a/api_docs/kbn_core_lifecycle_browser_mocks.mdx b/api_docs/kbn_core_lifecycle_browser_mocks.mdx index 5a39a5bf54f42..4b4a4c748d129 100644 --- a/api_docs/kbn_core_lifecycle_browser_mocks.mdx +++ b/api_docs/kbn_core_lifecycle_browser_mocks.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-core-lifecycle-browser-mocks title: "@kbn/core-lifecycle-browser-mocks" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/core-lifecycle-browser-mocks plugin -date: 2024-02-19 +date: 2024-02-22 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/core-lifecycle-browser-mocks'] --- import kbnCoreLifecycleBrowserMocksObj from './kbn_core_lifecycle_browser_mocks.devdocs.json'; diff --git a/api_docs/kbn_core_lifecycle_server.mdx b/api_docs/kbn_core_lifecycle_server.mdx index afbcc50b05eb7..44e88b34fc0bd 100644 --- a/api_docs/kbn_core_lifecycle_server.mdx +++ b/api_docs/kbn_core_lifecycle_server.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-core-lifecycle-server title: "@kbn/core-lifecycle-server" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/core-lifecycle-server plugin -date: 2024-02-19 +date: 2024-02-22 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/core-lifecycle-server'] --- import kbnCoreLifecycleServerObj from './kbn_core_lifecycle_server.devdocs.json'; diff --git a/api_docs/kbn_core_lifecycle_server_mocks.mdx b/api_docs/kbn_core_lifecycle_server_mocks.mdx index cc2c4a2ba9f96..fb934a5b59902 100644 --- a/api_docs/kbn_core_lifecycle_server_mocks.mdx +++ b/api_docs/kbn_core_lifecycle_server_mocks.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-core-lifecycle-server-mocks title: "@kbn/core-lifecycle-server-mocks" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/core-lifecycle-server-mocks plugin -date: 2024-02-19 +date: 2024-02-22 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/core-lifecycle-server-mocks'] --- import kbnCoreLifecycleServerMocksObj from './kbn_core_lifecycle_server_mocks.devdocs.json'; diff --git a/api_docs/kbn_core_logging_browser_mocks.mdx b/api_docs/kbn_core_logging_browser_mocks.mdx index 4547262addfc9..33936bf3ee4f6 100644 --- a/api_docs/kbn_core_logging_browser_mocks.mdx +++ b/api_docs/kbn_core_logging_browser_mocks.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-core-logging-browser-mocks title: "@kbn/core-logging-browser-mocks" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/core-logging-browser-mocks plugin -date: 2024-02-19 +date: 2024-02-22 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/core-logging-browser-mocks'] --- import kbnCoreLoggingBrowserMocksObj from './kbn_core_logging_browser_mocks.devdocs.json'; diff --git a/api_docs/kbn_core_logging_common_internal.mdx b/api_docs/kbn_core_logging_common_internal.mdx index 7422b691db8e2..ee1b331bdcc2a 100644 --- a/api_docs/kbn_core_logging_common_internal.mdx +++ b/api_docs/kbn_core_logging_common_internal.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-core-logging-common-internal title: "@kbn/core-logging-common-internal" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/core-logging-common-internal plugin -date: 2024-02-19 +date: 2024-02-22 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/core-logging-common-internal'] --- import kbnCoreLoggingCommonInternalObj from './kbn_core_logging_common_internal.devdocs.json'; diff --git a/api_docs/kbn_core_logging_server.mdx b/api_docs/kbn_core_logging_server.mdx index d1fe65c9fcf7b..de709c2e22d4d 100644 --- a/api_docs/kbn_core_logging_server.mdx +++ b/api_docs/kbn_core_logging_server.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-core-logging-server title: "@kbn/core-logging-server" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/core-logging-server plugin -date: 2024-02-19 +date: 2024-02-22 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/core-logging-server'] --- import kbnCoreLoggingServerObj from './kbn_core_logging_server.devdocs.json'; diff --git a/api_docs/kbn_core_logging_server_internal.mdx b/api_docs/kbn_core_logging_server_internal.mdx index a26a495e3bcd8..84c443aa6b58b 100644 --- a/api_docs/kbn_core_logging_server_internal.mdx +++ b/api_docs/kbn_core_logging_server_internal.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-core-logging-server-internal title: "@kbn/core-logging-server-internal" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/core-logging-server-internal plugin -date: 2024-02-19 +date: 2024-02-22 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/core-logging-server-internal'] --- import kbnCoreLoggingServerInternalObj from './kbn_core_logging_server_internal.devdocs.json'; diff --git a/api_docs/kbn_core_logging_server_mocks.mdx b/api_docs/kbn_core_logging_server_mocks.mdx index f0dde5f886da8..85c916ece1b6a 100644 --- a/api_docs/kbn_core_logging_server_mocks.mdx +++ b/api_docs/kbn_core_logging_server_mocks.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-core-logging-server-mocks title: "@kbn/core-logging-server-mocks" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/core-logging-server-mocks plugin -date: 2024-02-19 +date: 2024-02-22 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/core-logging-server-mocks'] --- import kbnCoreLoggingServerMocksObj from './kbn_core_logging_server_mocks.devdocs.json'; diff --git a/api_docs/kbn_core_metrics_collectors_server_internal.mdx b/api_docs/kbn_core_metrics_collectors_server_internal.mdx index 5793b31f98c8c..7007a8bf03081 100644 --- a/api_docs/kbn_core_metrics_collectors_server_internal.mdx +++ b/api_docs/kbn_core_metrics_collectors_server_internal.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-core-metrics-collectors-server-internal title: "@kbn/core-metrics-collectors-server-internal" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/core-metrics-collectors-server-internal plugin -date: 2024-02-19 +date: 2024-02-22 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/core-metrics-collectors-server-internal'] --- import kbnCoreMetricsCollectorsServerInternalObj from './kbn_core_metrics_collectors_server_internal.devdocs.json'; diff --git a/api_docs/kbn_core_metrics_collectors_server_mocks.mdx b/api_docs/kbn_core_metrics_collectors_server_mocks.mdx index d4311763380dc..bc1ecc3d306a3 100644 --- a/api_docs/kbn_core_metrics_collectors_server_mocks.mdx +++ b/api_docs/kbn_core_metrics_collectors_server_mocks.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-core-metrics-collectors-server-mocks title: "@kbn/core-metrics-collectors-server-mocks" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/core-metrics-collectors-server-mocks plugin -date: 2024-02-19 +date: 2024-02-22 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/core-metrics-collectors-server-mocks'] --- import kbnCoreMetricsCollectorsServerMocksObj from './kbn_core_metrics_collectors_server_mocks.devdocs.json'; diff --git a/api_docs/kbn_core_metrics_server.devdocs.json b/api_docs/kbn_core_metrics_server.devdocs.json index 1d18b5552b80b..94105c95f94cd 100644 --- a/api_docs/kbn_core_metrics_server.devdocs.json +++ b/api_docs/kbn_core_metrics_server.devdocs.json @@ -774,7 +774,7 @@ "tags": [], "label": "event_loop_delay", "description": [ - "mean event loop delay since last collection" + "max event loop delay since last collection" ], "path": "packages/core/metrics/core-metrics-server/src/metrics.ts", "deprecated": false, diff --git a/api_docs/kbn_core_metrics_server.mdx b/api_docs/kbn_core_metrics_server.mdx index e1b20174b418d..2e6cacd3c3655 100644 --- a/api_docs/kbn_core_metrics_server.mdx +++ b/api_docs/kbn_core_metrics_server.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-core-metrics-server title: "@kbn/core-metrics-server" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/core-metrics-server plugin -date: 2024-02-19 +date: 2024-02-22 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/core-metrics-server'] --- import kbnCoreMetricsServerObj from './kbn_core_metrics_server.devdocs.json'; diff --git a/api_docs/kbn_core_metrics_server_internal.mdx b/api_docs/kbn_core_metrics_server_internal.mdx index 5665b61fe4ca9..57485a52870bc 100644 --- a/api_docs/kbn_core_metrics_server_internal.mdx +++ b/api_docs/kbn_core_metrics_server_internal.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-core-metrics-server-internal title: "@kbn/core-metrics-server-internal" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/core-metrics-server-internal plugin -date: 2024-02-19 +date: 2024-02-22 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/core-metrics-server-internal'] --- import kbnCoreMetricsServerInternalObj from './kbn_core_metrics_server_internal.devdocs.json'; diff --git a/api_docs/kbn_core_metrics_server_mocks.mdx b/api_docs/kbn_core_metrics_server_mocks.mdx index 852028a83ba28..a1213f8c961f3 100644 --- a/api_docs/kbn_core_metrics_server_mocks.mdx +++ b/api_docs/kbn_core_metrics_server_mocks.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-core-metrics-server-mocks title: "@kbn/core-metrics-server-mocks" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/core-metrics-server-mocks plugin -date: 2024-02-19 +date: 2024-02-22 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/core-metrics-server-mocks'] --- import kbnCoreMetricsServerMocksObj from './kbn_core_metrics_server_mocks.devdocs.json'; diff --git a/api_docs/kbn_core_mount_utils_browser.mdx b/api_docs/kbn_core_mount_utils_browser.mdx index 01588d1779dc4..24a4cfb36a904 100644 --- a/api_docs/kbn_core_mount_utils_browser.mdx +++ b/api_docs/kbn_core_mount_utils_browser.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-core-mount-utils-browser title: "@kbn/core-mount-utils-browser" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/core-mount-utils-browser plugin -date: 2024-02-19 +date: 2024-02-22 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/core-mount-utils-browser'] --- import kbnCoreMountUtilsBrowserObj from './kbn_core_mount_utils_browser.devdocs.json'; diff --git a/api_docs/kbn_core_node_server.mdx b/api_docs/kbn_core_node_server.mdx index 3c922aecbfcc0..821d18d3e8fdc 100644 --- a/api_docs/kbn_core_node_server.mdx +++ b/api_docs/kbn_core_node_server.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-core-node-server title: "@kbn/core-node-server" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/core-node-server plugin -date: 2024-02-19 +date: 2024-02-22 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/core-node-server'] --- import kbnCoreNodeServerObj from './kbn_core_node_server.devdocs.json'; diff --git a/api_docs/kbn_core_node_server_internal.mdx b/api_docs/kbn_core_node_server_internal.mdx index 7c983162cc84f..58711aeb5ad2b 100644 --- a/api_docs/kbn_core_node_server_internal.mdx +++ b/api_docs/kbn_core_node_server_internal.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-core-node-server-internal title: "@kbn/core-node-server-internal" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/core-node-server-internal plugin -date: 2024-02-19 +date: 2024-02-22 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/core-node-server-internal'] --- import kbnCoreNodeServerInternalObj from './kbn_core_node_server_internal.devdocs.json'; diff --git a/api_docs/kbn_core_node_server_mocks.mdx b/api_docs/kbn_core_node_server_mocks.mdx index b74726656c740..319f6cf5aabd1 100644 --- a/api_docs/kbn_core_node_server_mocks.mdx +++ b/api_docs/kbn_core_node_server_mocks.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-core-node-server-mocks title: "@kbn/core-node-server-mocks" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/core-node-server-mocks plugin -date: 2024-02-19 +date: 2024-02-22 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/core-node-server-mocks'] --- import kbnCoreNodeServerMocksObj from './kbn_core_node_server_mocks.devdocs.json'; diff --git a/api_docs/kbn_core_notifications_browser.mdx b/api_docs/kbn_core_notifications_browser.mdx index 81e3d42e67d41..ff42936fb3f76 100644 --- a/api_docs/kbn_core_notifications_browser.mdx +++ b/api_docs/kbn_core_notifications_browser.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-core-notifications-browser title: "@kbn/core-notifications-browser" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/core-notifications-browser plugin -date: 2024-02-19 +date: 2024-02-22 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/core-notifications-browser'] --- import kbnCoreNotificationsBrowserObj from './kbn_core_notifications_browser.devdocs.json'; diff --git a/api_docs/kbn_core_notifications_browser_internal.mdx b/api_docs/kbn_core_notifications_browser_internal.mdx index 25e7adabe9247..a0b6c1e3ec21b 100644 --- a/api_docs/kbn_core_notifications_browser_internal.mdx +++ b/api_docs/kbn_core_notifications_browser_internal.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-core-notifications-browser-internal title: "@kbn/core-notifications-browser-internal" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/core-notifications-browser-internal plugin -date: 2024-02-19 +date: 2024-02-22 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/core-notifications-browser-internal'] --- import kbnCoreNotificationsBrowserInternalObj from './kbn_core_notifications_browser_internal.devdocs.json'; diff --git a/api_docs/kbn_core_notifications_browser_mocks.mdx b/api_docs/kbn_core_notifications_browser_mocks.mdx index f82c7ed4202c0..5456c92a44f98 100644 --- a/api_docs/kbn_core_notifications_browser_mocks.mdx +++ b/api_docs/kbn_core_notifications_browser_mocks.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-core-notifications-browser-mocks title: "@kbn/core-notifications-browser-mocks" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/core-notifications-browser-mocks plugin -date: 2024-02-19 +date: 2024-02-22 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/core-notifications-browser-mocks'] --- import kbnCoreNotificationsBrowserMocksObj from './kbn_core_notifications_browser_mocks.devdocs.json'; diff --git a/api_docs/kbn_core_overlays_browser.mdx b/api_docs/kbn_core_overlays_browser.mdx index 1f5efebeb5fac..58d1307e2f2d0 100644 --- a/api_docs/kbn_core_overlays_browser.mdx +++ b/api_docs/kbn_core_overlays_browser.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-core-overlays-browser title: "@kbn/core-overlays-browser" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/core-overlays-browser plugin -date: 2024-02-19 +date: 2024-02-22 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/core-overlays-browser'] --- import kbnCoreOverlaysBrowserObj from './kbn_core_overlays_browser.devdocs.json'; diff --git a/api_docs/kbn_core_overlays_browser_internal.mdx b/api_docs/kbn_core_overlays_browser_internal.mdx index 937664dffe6e7..0e6a8f98798c9 100644 --- a/api_docs/kbn_core_overlays_browser_internal.mdx +++ b/api_docs/kbn_core_overlays_browser_internal.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-core-overlays-browser-internal title: "@kbn/core-overlays-browser-internal" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/core-overlays-browser-internal plugin -date: 2024-02-19 +date: 2024-02-22 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/core-overlays-browser-internal'] --- import kbnCoreOverlaysBrowserInternalObj from './kbn_core_overlays_browser_internal.devdocs.json'; diff --git a/api_docs/kbn_core_overlays_browser_mocks.mdx b/api_docs/kbn_core_overlays_browser_mocks.mdx index cfaa2d00fe7e9..e2a488f9e93fb 100644 --- a/api_docs/kbn_core_overlays_browser_mocks.mdx +++ b/api_docs/kbn_core_overlays_browser_mocks.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-core-overlays-browser-mocks title: "@kbn/core-overlays-browser-mocks" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/core-overlays-browser-mocks plugin -date: 2024-02-19 +date: 2024-02-22 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/core-overlays-browser-mocks'] --- import kbnCoreOverlaysBrowserMocksObj from './kbn_core_overlays_browser_mocks.devdocs.json'; diff --git a/api_docs/kbn_core_plugins_browser.mdx b/api_docs/kbn_core_plugins_browser.mdx index 0f305e00c2d2d..cd193e9e066e2 100644 --- a/api_docs/kbn_core_plugins_browser.mdx +++ b/api_docs/kbn_core_plugins_browser.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-core-plugins-browser title: "@kbn/core-plugins-browser" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/core-plugins-browser plugin -date: 2024-02-19 +date: 2024-02-22 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/core-plugins-browser'] --- import kbnCorePluginsBrowserObj from './kbn_core_plugins_browser.devdocs.json'; diff --git a/api_docs/kbn_core_plugins_browser_mocks.mdx b/api_docs/kbn_core_plugins_browser_mocks.mdx index b4db4c8de8a27..2746f389ae639 100644 --- a/api_docs/kbn_core_plugins_browser_mocks.mdx +++ b/api_docs/kbn_core_plugins_browser_mocks.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-core-plugins-browser-mocks title: "@kbn/core-plugins-browser-mocks" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/core-plugins-browser-mocks plugin -date: 2024-02-19 +date: 2024-02-22 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/core-plugins-browser-mocks'] --- import kbnCorePluginsBrowserMocksObj from './kbn_core_plugins_browser_mocks.devdocs.json'; diff --git a/api_docs/kbn_core_plugins_contracts_browser.mdx b/api_docs/kbn_core_plugins_contracts_browser.mdx index 8ac36c2f7632a..5316a08f4ad9e 100644 --- a/api_docs/kbn_core_plugins_contracts_browser.mdx +++ b/api_docs/kbn_core_plugins_contracts_browser.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-core-plugins-contracts-browser title: "@kbn/core-plugins-contracts-browser" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/core-plugins-contracts-browser plugin -date: 2024-02-19 +date: 2024-02-22 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/core-plugins-contracts-browser'] --- import kbnCorePluginsContractsBrowserObj from './kbn_core_plugins_contracts_browser.devdocs.json'; diff --git a/api_docs/kbn_core_plugins_contracts_server.mdx b/api_docs/kbn_core_plugins_contracts_server.mdx index d7af9a27b00a6..324e7a7df8587 100644 --- a/api_docs/kbn_core_plugins_contracts_server.mdx +++ b/api_docs/kbn_core_plugins_contracts_server.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-core-plugins-contracts-server title: "@kbn/core-plugins-contracts-server" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/core-plugins-contracts-server plugin -date: 2024-02-19 +date: 2024-02-22 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/core-plugins-contracts-server'] --- import kbnCorePluginsContractsServerObj from './kbn_core_plugins_contracts_server.devdocs.json'; diff --git a/api_docs/kbn_core_plugins_server.mdx b/api_docs/kbn_core_plugins_server.mdx index ba2859105a7c9..ba78a8b8a0f15 100644 --- a/api_docs/kbn_core_plugins_server.mdx +++ b/api_docs/kbn_core_plugins_server.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-core-plugins-server title: "@kbn/core-plugins-server" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/core-plugins-server plugin -date: 2024-02-19 +date: 2024-02-22 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/core-plugins-server'] --- import kbnCorePluginsServerObj from './kbn_core_plugins_server.devdocs.json'; diff --git a/api_docs/kbn_core_plugins_server_mocks.mdx b/api_docs/kbn_core_plugins_server_mocks.mdx index e7d3ccf9a4ff4..d5e96f34c8ebc 100644 --- a/api_docs/kbn_core_plugins_server_mocks.mdx +++ b/api_docs/kbn_core_plugins_server_mocks.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-core-plugins-server-mocks title: "@kbn/core-plugins-server-mocks" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/core-plugins-server-mocks plugin -date: 2024-02-19 +date: 2024-02-22 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/core-plugins-server-mocks'] --- import kbnCorePluginsServerMocksObj from './kbn_core_plugins_server_mocks.devdocs.json'; diff --git a/api_docs/kbn_core_preboot_server.mdx b/api_docs/kbn_core_preboot_server.mdx index 0c3f3cb32a2b5..bd96097269bb1 100644 --- a/api_docs/kbn_core_preboot_server.mdx +++ b/api_docs/kbn_core_preboot_server.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-core-preboot-server title: "@kbn/core-preboot-server" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/core-preboot-server plugin -date: 2024-02-19 +date: 2024-02-22 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/core-preboot-server'] --- import kbnCorePrebootServerObj from './kbn_core_preboot_server.devdocs.json'; diff --git a/api_docs/kbn_core_preboot_server_mocks.mdx b/api_docs/kbn_core_preboot_server_mocks.mdx index af0717c6bc597..533b7c6b6fa4e 100644 --- a/api_docs/kbn_core_preboot_server_mocks.mdx +++ b/api_docs/kbn_core_preboot_server_mocks.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-core-preboot-server-mocks title: "@kbn/core-preboot-server-mocks" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/core-preboot-server-mocks plugin -date: 2024-02-19 +date: 2024-02-22 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/core-preboot-server-mocks'] --- import kbnCorePrebootServerMocksObj from './kbn_core_preboot_server_mocks.devdocs.json'; diff --git a/api_docs/kbn_core_rendering_browser_mocks.mdx b/api_docs/kbn_core_rendering_browser_mocks.mdx index 5874b037ddc11..4cef00ffe9ea3 100644 --- a/api_docs/kbn_core_rendering_browser_mocks.mdx +++ b/api_docs/kbn_core_rendering_browser_mocks.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-core-rendering-browser-mocks title: "@kbn/core-rendering-browser-mocks" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/core-rendering-browser-mocks plugin -date: 2024-02-19 +date: 2024-02-22 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/core-rendering-browser-mocks'] --- import kbnCoreRenderingBrowserMocksObj from './kbn_core_rendering_browser_mocks.devdocs.json'; diff --git a/api_docs/kbn_core_rendering_server_internal.mdx b/api_docs/kbn_core_rendering_server_internal.mdx index 15ed875325bbe..8b09b5d9fed50 100644 --- a/api_docs/kbn_core_rendering_server_internal.mdx +++ b/api_docs/kbn_core_rendering_server_internal.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-core-rendering-server-internal title: "@kbn/core-rendering-server-internal" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/core-rendering-server-internal plugin -date: 2024-02-19 +date: 2024-02-22 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/core-rendering-server-internal'] --- import kbnCoreRenderingServerInternalObj from './kbn_core_rendering_server_internal.devdocs.json'; diff --git a/api_docs/kbn_core_rendering_server_mocks.mdx b/api_docs/kbn_core_rendering_server_mocks.mdx index 84ca15d445fc0..727e460ab91cc 100644 --- a/api_docs/kbn_core_rendering_server_mocks.mdx +++ b/api_docs/kbn_core_rendering_server_mocks.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-core-rendering-server-mocks title: "@kbn/core-rendering-server-mocks" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/core-rendering-server-mocks plugin -date: 2024-02-19 +date: 2024-02-22 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/core-rendering-server-mocks'] --- import kbnCoreRenderingServerMocksObj from './kbn_core_rendering_server_mocks.devdocs.json'; diff --git a/api_docs/kbn_core_root_server_internal.mdx b/api_docs/kbn_core_root_server_internal.mdx index 3ab0e4f82db21..c55174cbec847 100644 --- a/api_docs/kbn_core_root_server_internal.mdx +++ b/api_docs/kbn_core_root_server_internal.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-core-root-server-internal title: "@kbn/core-root-server-internal" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/core-root-server-internal plugin -date: 2024-02-19 +date: 2024-02-22 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/core-root-server-internal'] --- import kbnCoreRootServerInternalObj from './kbn_core_root_server_internal.devdocs.json'; diff --git a/api_docs/kbn_core_saved_objects_api_browser.mdx b/api_docs/kbn_core_saved_objects_api_browser.mdx index 28134ae64a90d..b9d7dbf86b88e 100644 --- a/api_docs/kbn_core_saved_objects_api_browser.mdx +++ b/api_docs/kbn_core_saved_objects_api_browser.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-core-saved-objects-api-browser title: "@kbn/core-saved-objects-api-browser" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/core-saved-objects-api-browser plugin -date: 2024-02-19 +date: 2024-02-22 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/core-saved-objects-api-browser'] --- import kbnCoreSavedObjectsApiBrowserObj from './kbn_core_saved_objects_api_browser.devdocs.json'; diff --git a/api_docs/kbn_core_saved_objects_api_server.mdx b/api_docs/kbn_core_saved_objects_api_server.mdx index bdf3bc95ea6fd..8d4d382d5bb58 100644 --- a/api_docs/kbn_core_saved_objects_api_server.mdx +++ b/api_docs/kbn_core_saved_objects_api_server.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-core-saved-objects-api-server title: "@kbn/core-saved-objects-api-server" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/core-saved-objects-api-server plugin -date: 2024-02-19 +date: 2024-02-22 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/core-saved-objects-api-server'] --- import kbnCoreSavedObjectsApiServerObj from './kbn_core_saved_objects_api_server.devdocs.json'; diff --git a/api_docs/kbn_core_saved_objects_api_server_mocks.mdx b/api_docs/kbn_core_saved_objects_api_server_mocks.mdx index c78c9e61422be..60deabe050952 100644 --- a/api_docs/kbn_core_saved_objects_api_server_mocks.mdx +++ b/api_docs/kbn_core_saved_objects_api_server_mocks.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-core-saved-objects-api-server-mocks title: "@kbn/core-saved-objects-api-server-mocks" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/core-saved-objects-api-server-mocks plugin -date: 2024-02-19 +date: 2024-02-22 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/core-saved-objects-api-server-mocks'] --- import kbnCoreSavedObjectsApiServerMocksObj from './kbn_core_saved_objects_api_server_mocks.devdocs.json'; diff --git a/api_docs/kbn_core_saved_objects_base_server_internal.mdx b/api_docs/kbn_core_saved_objects_base_server_internal.mdx index 02cb043dd2de3..c05fa69fc9011 100644 --- a/api_docs/kbn_core_saved_objects_base_server_internal.mdx +++ b/api_docs/kbn_core_saved_objects_base_server_internal.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-core-saved-objects-base-server-internal title: "@kbn/core-saved-objects-base-server-internal" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/core-saved-objects-base-server-internal plugin -date: 2024-02-19 +date: 2024-02-22 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/core-saved-objects-base-server-internal'] --- import kbnCoreSavedObjectsBaseServerInternalObj from './kbn_core_saved_objects_base_server_internal.devdocs.json'; diff --git a/api_docs/kbn_core_saved_objects_base_server_mocks.mdx b/api_docs/kbn_core_saved_objects_base_server_mocks.mdx index ca53cb11b38d4..0518177101090 100644 --- a/api_docs/kbn_core_saved_objects_base_server_mocks.mdx +++ b/api_docs/kbn_core_saved_objects_base_server_mocks.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-core-saved-objects-base-server-mocks title: "@kbn/core-saved-objects-base-server-mocks" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/core-saved-objects-base-server-mocks plugin -date: 2024-02-19 +date: 2024-02-22 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/core-saved-objects-base-server-mocks'] --- import kbnCoreSavedObjectsBaseServerMocksObj from './kbn_core_saved_objects_base_server_mocks.devdocs.json'; diff --git a/api_docs/kbn_core_saved_objects_browser.devdocs.json b/api_docs/kbn_core_saved_objects_browser.devdocs.json index fbf650f94ae43..dbe31bb01a038 100644 --- a/api_docs/kbn_core_saved_objects_browser.devdocs.json +++ b/api_docs/kbn_core_saved_objects_browser.devdocs.json @@ -24,9 +24,7 @@ "parentPluginId": "@kbn/core-saved-objects-browser", "id": "def-common.SavedObjectsStart", "type": "Interface", - "tags": [ - "deprecated" - ], + "tags": ["deprecated"], "label": "SavedObjectsStart", "description": [], "path": "packages/core/saved-objects/core-saved-objects-browser/src/contracts.ts", @@ -71,11 +69,11 @@ }, { "plugin": "exploratoryView", - "path": "x-pack/plugins/exploratory_view/public/application/types.ts" + "path": "x-pack/plugins/observability_solution/exploratory_view/public/application/types.ts" }, { "plugin": "exploratoryView", - "path": "x-pack/plugins/exploratory_view/public/application/types.ts" + "path": "x-pack/plugins/observability_solution/exploratory_view/public/application/types.ts" }, { "plugin": "transform", @@ -105,9 +103,7 @@ "type": "Object", "tags": [], "label": "client", - "description": [ - "{@link SavedObjectsClientContract}" - ], + "description": ["{@link SavedObjectsClientContract}"], "signature": [ { "pluginId": "@kbn/core-saved-objects-api-browser", @@ -129,4 +125,4 @@ "misc": [], "objects": [] } -} \ No newline at end of file +} diff --git a/api_docs/kbn_core_saved_objects_browser.mdx b/api_docs/kbn_core_saved_objects_browser.mdx index 7b4d5f3d3c71c..998d8a0279f6d 100644 --- a/api_docs/kbn_core_saved_objects_browser.mdx +++ b/api_docs/kbn_core_saved_objects_browser.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-core-saved-objects-browser title: "@kbn/core-saved-objects-browser" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/core-saved-objects-browser plugin -date: 2024-02-19 +date: 2024-02-22 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/core-saved-objects-browser'] --- import kbnCoreSavedObjectsBrowserObj from './kbn_core_saved_objects_browser.devdocs.json'; diff --git a/api_docs/kbn_core_saved_objects_browser_internal.mdx b/api_docs/kbn_core_saved_objects_browser_internal.mdx index 7f1e6c20b5d18..6e1e7a2decf25 100644 --- a/api_docs/kbn_core_saved_objects_browser_internal.mdx +++ b/api_docs/kbn_core_saved_objects_browser_internal.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-core-saved-objects-browser-internal title: "@kbn/core-saved-objects-browser-internal" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/core-saved-objects-browser-internal plugin -date: 2024-02-19 +date: 2024-02-22 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/core-saved-objects-browser-internal'] --- import kbnCoreSavedObjectsBrowserInternalObj from './kbn_core_saved_objects_browser_internal.devdocs.json'; diff --git a/api_docs/kbn_core_saved_objects_browser_mocks.mdx b/api_docs/kbn_core_saved_objects_browser_mocks.mdx index 99b72e6544512..818832e9c387e 100644 --- a/api_docs/kbn_core_saved_objects_browser_mocks.mdx +++ b/api_docs/kbn_core_saved_objects_browser_mocks.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-core-saved-objects-browser-mocks title: "@kbn/core-saved-objects-browser-mocks" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/core-saved-objects-browser-mocks plugin -date: 2024-02-19 +date: 2024-02-22 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/core-saved-objects-browser-mocks'] --- import kbnCoreSavedObjectsBrowserMocksObj from './kbn_core_saved_objects_browser_mocks.devdocs.json'; diff --git a/api_docs/kbn_core_saved_objects_common.mdx b/api_docs/kbn_core_saved_objects_common.mdx index 2869e76c8a1ab..0dc4278f9e3eb 100644 --- a/api_docs/kbn_core_saved_objects_common.mdx +++ b/api_docs/kbn_core_saved_objects_common.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-core-saved-objects-common title: "@kbn/core-saved-objects-common" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/core-saved-objects-common plugin -date: 2024-02-19 +date: 2024-02-22 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/core-saved-objects-common'] --- import kbnCoreSavedObjectsCommonObj from './kbn_core_saved_objects_common.devdocs.json'; diff --git a/api_docs/kbn_core_saved_objects_import_export_server_internal.mdx b/api_docs/kbn_core_saved_objects_import_export_server_internal.mdx index 3be5750bd3b3d..c43c676fd2104 100644 --- a/api_docs/kbn_core_saved_objects_import_export_server_internal.mdx +++ b/api_docs/kbn_core_saved_objects_import_export_server_internal.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-core-saved-objects-import-export-server-internal title: "@kbn/core-saved-objects-import-export-server-internal" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/core-saved-objects-import-export-server-internal plugin -date: 2024-02-19 +date: 2024-02-22 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/core-saved-objects-import-export-server-internal'] --- import kbnCoreSavedObjectsImportExportServerInternalObj from './kbn_core_saved_objects_import_export_server_internal.devdocs.json'; diff --git a/api_docs/kbn_core_saved_objects_import_export_server_mocks.mdx b/api_docs/kbn_core_saved_objects_import_export_server_mocks.mdx index 6e40b9302e077..f0551d712f045 100644 --- a/api_docs/kbn_core_saved_objects_import_export_server_mocks.mdx +++ b/api_docs/kbn_core_saved_objects_import_export_server_mocks.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-core-saved-objects-import-export-server-mocks title: "@kbn/core-saved-objects-import-export-server-mocks" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/core-saved-objects-import-export-server-mocks plugin -date: 2024-02-19 +date: 2024-02-22 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/core-saved-objects-import-export-server-mocks'] --- import kbnCoreSavedObjectsImportExportServerMocksObj from './kbn_core_saved_objects_import_export_server_mocks.devdocs.json'; diff --git a/api_docs/kbn_core_saved_objects_migration_server_internal.mdx b/api_docs/kbn_core_saved_objects_migration_server_internal.mdx index ba6c00474f73e..eec7db6f0a660 100644 --- a/api_docs/kbn_core_saved_objects_migration_server_internal.mdx +++ b/api_docs/kbn_core_saved_objects_migration_server_internal.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-core-saved-objects-migration-server-internal title: "@kbn/core-saved-objects-migration-server-internal" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/core-saved-objects-migration-server-internal plugin -date: 2024-02-19 +date: 2024-02-22 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/core-saved-objects-migration-server-internal'] --- import kbnCoreSavedObjectsMigrationServerInternalObj from './kbn_core_saved_objects_migration_server_internal.devdocs.json'; diff --git a/api_docs/kbn_core_saved_objects_migration_server_mocks.mdx b/api_docs/kbn_core_saved_objects_migration_server_mocks.mdx index 8784471837e07..384f97925484d 100644 --- a/api_docs/kbn_core_saved_objects_migration_server_mocks.mdx +++ b/api_docs/kbn_core_saved_objects_migration_server_mocks.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-core-saved-objects-migration-server-mocks title: "@kbn/core-saved-objects-migration-server-mocks" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/core-saved-objects-migration-server-mocks plugin -date: 2024-02-19 +date: 2024-02-22 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/core-saved-objects-migration-server-mocks'] --- import kbnCoreSavedObjectsMigrationServerMocksObj from './kbn_core_saved_objects_migration_server_mocks.devdocs.json'; diff --git a/api_docs/kbn_core_saved_objects_server.mdx b/api_docs/kbn_core_saved_objects_server.mdx index db0af309d0afd..93d0ac67cd9f9 100644 --- a/api_docs/kbn_core_saved_objects_server.mdx +++ b/api_docs/kbn_core_saved_objects_server.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-core-saved-objects-server title: "@kbn/core-saved-objects-server" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/core-saved-objects-server plugin -date: 2024-02-19 +date: 2024-02-22 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/core-saved-objects-server'] --- import kbnCoreSavedObjectsServerObj from './kbn_core_saved_objects_server.devdocs.json'; diff --git a/api_docs/kbn_core_saved_objects_server_internal.mdx b/api_docs/kbn_core_saved_objects_server_internal.mdx index dadf694ede7a5..68792cdeb1a3f 100644 --- a/api_docs/kbn_core_saved_objects_server_internal.mdx +++ b/api_docs/kbn_core_saved_objects_server_internal.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-core-saved-objects-server-internal title: "@kbn/core-saved-objects-server-internal" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/core-saved-objects-server-internal plugin -date: 2024-02-19 +date: 2024-02-22 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/core-saved-objects-server-internal'] --- import kbnCoreSavedObjectsServerInternalObj from './kbn_core_saved_objects_server_internal.devdocs.json'; diff --git a/api_docs/kbn_core_saved_objects_server_mocks.mdx b/api_docs/kbn_core_saved_objects_server_mocks.mdx index dbf49368e6046..b5de5eba3aef6 100644 --- a/api_docs/kbn_core_saved_objects_server_mocks.mdx +++ b/api_docs/kbn_core_saved_objects_server_mocks.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-core-saved-objects-server-mocks title: "@kbn/core-saved-objects-server-mocks" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/core-saved-objects-server-mocks plugin -date: 2024-02-19 +date: 2024-02-22 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/core-saved-objects-server-mocks'] --- import kbnCoreSavedObjectsServerMocksObj from './kbn_core_saved_objects_server_mocks.devdocs.json'; diff --git a/api_docs/kbn_core_saved_objects_utils_server.mdx b/api_docs/kbn_core_saved_objects_utils_server.mdx index 4c187f17802b1..5a2b1a086517f 100644 --- a/api_docs/kbn_core_saved_objects_utils_server.mdx +++ b/api_docs/kbn_core_saved_objects_utils_server.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-core-saved-objects-utils-server title: "@kbn/core-saved-objects-utils-server" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/core-saved-objects-utils-server plugin -date: 2024-02-19 +date: 2024-02-22 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/core-saved-objects-utils-server'] --- import kbnCoreSavedObjectsUtilsServerObj from './kbn_core_saved_objects_utils_server.devdocs.json'; diff --git a/api_docs/kbn_core_status_common.mdx b/api_docs/kbn_core_status_common.mdx index 09e60392297db..df69d9b81ac64 100644 --- a/api_docs/kbn_core_status_common.mdx +++ b/api_docs/kbn_core_status_common.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-core-status-common title: "@kbn/core-status-common" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/core-status-common plugin -date: 2024-02-19 +date: 2024-02-22 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/core-status-common'] --- import kbnCoreStatusCommonObj from './kbn_core_status_common.devdocs.json'; diff --git a/api_docs/kbn_core_status_common_internal.mdx b/api_docs/kbn_core_status_common_internal.mdx index a4b55f5af4e4c..2695d67ae0db1 100644 --- a/api_docs/kbn_core_status_common_internal.mdx +++ b/api_docs/kbn_core_status_common_internal.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-core-status-common-internal title: "@kbn/core-status-common-internal" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/core-status-common-internal plugin -date: 2024-02-19 +date: 2024-02-22 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/core-status-common-internal'] --- import kbnCoreStatusCommonInternalObj from './kbn_core_status_common_internal.devdocs.json'; diff --git a/api_docs/kbn_core_status_server.mdx b/api_docs/kbn_core_status_server.mdx index 18ffbfc385739..efedd03007587 100644 --- a/api_docs/kbn_core_status_server.mdx +++ b/api_docs/kbn_core_status_server.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-core-status-server title: "@kbn/core-status-server" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/core-status-server plugin -date: 2024-02-19 +date: 2024-02-22 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/core-status-server'] --- import kbnCoreStatusServerObj from './kbn_core_status_server.devdocs.json'; diff --git a/api_docs/kbn_core_status_server_internal.mdx b/api_docs/kbn_core_status_server_internal.mdx index 583b2e06b7ea3..5a3ce6fcdac50 100644 --- a/api_docs/kbn_core_status_server_internal.mdx +++ b/api_docs/kbn_core_status_server_internal.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-core-status-server-internal title: "@kbn/core-status-server-internal" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/core-status-server-internal plugin -date: 2024-02-19 +date: 2024-02-22 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/core-status-server-internal'] --- import kbnCoreStatusServerInternalObj from './kbn_core_status_server_internal.devdocs.json'; diff --git a/api_docs/kbn_core_status_server_mocks.mdx b/api_docs/kbn_core_status_server_mocks.mdx index 23ef8fab43651..af52b4d5fde7b 100644 --- a/api_docs/kbn_core_status_server_mocks.mdx +++ b/api_docs/kbn_core_status_server_mocks.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-core-status-server-mocks title: "@kbn/core-status-server-mocks" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/core-status-server-mocks plugin -date: 2024-02-19 +date: 2024-02-22 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/core-status-server-mocks'] --- import kbnCoreStatusServerMocksObj from './kbn_core_status_server_mocks.devdocs.json'; diff --git a/api_docs/kbn_core_test_helpers_deprecations_getters.mdx b/api_docs/kbn_core_test_helpers_deprecations_getters.mdx index dba46af4a838d..bc7f8fa4ea132 100644 --- a/api_docs/kbn_core_test_helpers_deprecations_getters.mdx +++ b/api_docs/kbn_core_test_helpers_deprecations_getters.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-core-test-helpers-deprecations-getters title: "@kbn/core-test-helpers-deprecations-getters" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/core-test-helpers-deprecations-getters plugin -date: 2024-02-19 +date: 2024-02-22 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/core-test-helpers-deprecations-getters'] --- import kbnCoreTestHelpersDeprecationsGettersObj from './kbn_core_test_helpers_deprecations_getters.devdocs.json'; diff --git a/api_docs/kbn_core_test_helpers_http_setup_browser.devdocs.json b/api_docs/kbn_core_test_helpers_http_setup_browser.devdocs.json index 745890bc75129..5ea942cf9cb21 100644 --- a/api_docs/kbn_core_test_helpers_http_setup_browser.devdocs.json +++ b/api_docs/kbn_core_test_helpers_http_setup_browser.devdocs.json @@ -125,7 +125,9 @@ "signature": [ "{ getBasePath: jest.MockInstance; getServerBasePath: jest.MockInstance; getPublicBaseUrl: jest.MockInstance; getAssetsHrefBase: jest.MockInstance; getKibanaBuildNumber: jest.MockInstance; getKibanaBranch: jest.MockInstance; getKibanaVersion: jest.MockInstance; getCspConfig: jest.MockInstance<{ warnLegacyBrowsers: boolean; }, [], unknown>; getExternalUrlConfig: jest.MockInstance<{ policy: ", "InjectedMetadataExternalUrlPolicy", - "[]; }, [], unknown>; getTheme: jest.MockInstance<{ darkMode: boolean; version: \"v8\"; }, [], unknown>; getElasticsearchInfo: jest.MockInstance<", + "[]; }, [], unknown>; getTheme: jest.MockInstance<", + "InjectedMetadataTheme", + ", [], unknown>; getElasticsearchInfo: jest.MockInstance<", "InjectedMetadataClusterInfo", ", [], unknown>; getPlugins: jest.MockInstance<", "InjectedMetadataPlugin", diff --git a/api_docs/kbn_core_test_helpers_http_setup_browser.mdx b/api_docs/kbn_core_test_helpers_http_setup_browser.mdx index 812b329c8e0c6..de43cba3a225c 100644 --- a/api_docs/kbn_core_test_helpers_http_setup_browser.mdx +++ b/api_docs/kbn_core_test_helpers_http_setup_browser.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-core-test-helpers-http-setup-browser title: "@kbn/core-test-helpers-http-setup-browser" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/core-test-helpers-http-setup-browser plugin -date: 2024-02-19 +date: 2024-02-22 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/core-test-helpers-http-setup-browser'] --- import kbnCoreTestHelpersHttpSetupBrowserObj from './kbn_core_test_helpers_http_setup_browser.devdocs.json'; diff --git a/api_docs/kbn_core_test_helpers_kbn_server.mdx b/api_docs/kbn_core_test_helpers_kbn_server.mdx index 5c654e3baed82..c6fdca93172ee 100644 --- a/api_docs/kbn_core_test_helpers_kbn_server.mdx +++ b/api_docs/kbn_core_test_helpers_kbn_server.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-core-test-helpers-kbn-server title: "@kbn/core-test-helpers-kbn-server" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/core-test-helpers-kbn-server plugin -date: 2024-02-19 +date: 2024-02-22 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/core-test-helpers-kbn-server'] --- import kbnCoreTestHelpersKbnServerObj from './kbn_core_test_helpers_kbn_server.devdocs.json'; diff --git a/api_docs/kbn_core_test_helpers_model_versions.mdx b/api_docs/kbn_core_test_helpers_model_versions.mdx index 5473f6c55bdc0..06e8aa26d41d6 100644 --- a/api_docs/kbn_core_test_helpers_model_versions.mdx +++ b/api_docs/kbn_core_test_helpers_model_versions.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-core-test-helpers-model-versions title: "@kbn/core-test-helpers-model-versions" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/core-test-helpers-model-versions plugin -date: 2024-02-19 +date: 2024-02-22 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/core-test-helpers-model-versions'] --- import kbnCoreTestHelpersModelVersionsObj from './kbn_core_test_helpers_model_versions.devdocs.json'; diff --git a/api_docs/kbn_core_test_helpers_so_type_serializer.mdx b/api_docs/kbn_core_test_helpers_so_type_serializer.mdx index adc7ce056f38d..08235d24c4303 100644 --- a/api_docs/kbn_core_test_helpers_so_type_serializer.mdx +++ b/api_docs/kbn_core_test_helpers_so_type_serializer.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-core-test-helpers-so-type-serializer title: "@kbn/core-test-helpers-so-type-serializer" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/core-test-helpers-so-type-serializer plugin -date: 2024-02-19 +date: 2024-02-22 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/core-test-helpers-so-type-serializer'] --- import kbnCoreTestHelpersSoTypeSerializerObj from './kbn_core_test_helpers_so_type_serializer.devdocs.json'; diff --git a/api_docs/kbn_core_test_helpers_test_utils.mdx b/api_docs/kbn_core_test_helpers_test_utils.mdx index 2e84f1b126cf9..1a39d0e703839 100644 --- a/api_docs/kbn_core_test_helpers_test_utils.mdx +++ b/api_docs/kbn_core_test_helpers_test_utils.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-core-test-helpers-test-utils title: "@kbn/core-test-helpers-test-utils" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/core-test-helpers-test-utils plugin -date: 2024-02-19 +date: 2024-02-22 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/core-test-helpers-test-utils'] --- import kbnCoreTestHelpersTestUtilsObj from './kbn_core_test_helpers_test_utils.devdocs.json'; diff --git a/api_docs/kbn_core_theme_browser.mdx b/api_docs/kbn_core_theme_browser.mdx index 4986c24dd3142..d862258bcb9ac 100644 --- a/api_docs/kbn_core_theme_browser.mdx +++ b/api_docs/kbn_core_theme_browser.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-core-theme-browser title: "@kbn/core-theme-browser" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/core-theme-browser plugin -date: 2024-02-19 +date: 2024-02-22 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/core-theme-browser'] --- import kbnCoreThemeBrowserObj from './kbn_core_theme_browser.devdocs.json'; diff --git a/api_docs/kbn_core_theme_browser_mocks.mdx b/api_docs/kbn_core_theme_browser_mocks.mdx index 98e0c30778b4f..5abd6c544c12b 100644 --- a/api_docs/kbn_core_theme_browser_mocks.mdx +++ b/api_docs/kbn_core_theme_browser_mocks.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-core-theme-browser-mocks title: "@kbn/core-theme-browser-mocks" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/core-theme-browser-mocks plugin -date: 2024-02-19 +date: 2024-02-22 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/core-theme-browser-mocks'] --- import kbnCoreThemeBrowserMocksObj from './kbn_core_theme_browser_mocks.devdocs.json'; diff --git a/api_docs/kbn_core_ui_settings_browser.mdx b/api_docs/kbn_core_ui_settings_browser.mdx index 8c8e0881e8a89..419edcbc6d3ec 100644 --- a/api_docs/kbn_core_ui_settings_browser.mdx +++ b/api_docs/kbn_core_ui_settings_browser.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-core-ui-settings-browser title: "@kbn/core-ui-settings-browser" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/core-ui-settings-browser plugin -date: 2024-02-19 +date: 2024-02-22 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/core-ui-settings-browser'] --- import kbnCoreUiSettingsBrowserObj from './kbn_core_ui_settings_browser.devdocs.json'; diff --git a/api_docs/kbn_core_ui_settings_browser_internal.mdx b/api_docs/kbn_core_ui_settings_browser_internal.mdx index bc2c63bbe7d7e..7111f0400d504 100644 --- a/api_docs/kbn_core_ui_settings_browser_internal.mdx +++ b/api_docs/kbn_core_ui_settings_browser_internal.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-core-ui-settings-browser-internal title: "@kbn/core-ui-settings-browser-internal" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/core-ui-settings-browser-internal plugin -date: 2024-02-19 +date: 2024-02-22 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/core-ui-settings-browser-internal'] --- import kbnCoreUiSettingsBrowserInternalObj from './kbn_core_ui_settings_browser_internal.devdocs.json'; diff --git a/api_docs/kbn_core_ui_settings_browser_mocks.mdx b/api_docs/kbn_core_ui_settings_browser_mocks.mdx index 1f6ca016aab1c..b040b3dcb580f 100644 --- a/api_docs/kbn_core_ui_settings_browser_mocks.mdx +++ b/api_docs/kbn_core_ui_settings_browser_mocks.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-core-ui-settings-browser-mocks title: "@kbn/core-ui-settings-browser-mocks" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/core-ui-settings-browser-mocks plugin -date: 2024-02-19 +date: 2024-02-22 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/core-ui-settings-browser-mocks'] --- import kbnCoreUiSettingsBrowserMocksObj from './kbn_core_ui_settings_browser_mocks.devdocs.json'; diff --git a/api_docs/kbn_core_ui_settings_common.devdocs.json b/api_docs/kbn_core_ui_settings_common.devdocs.json index ec91de536fbbe..6d75b9f2ec730 100644 --- a/api_docs/kbn_core_ui_settings_common.devdocs.json +++ b/api_docs/kbn_core_ui_settings_common.devdocs.json @@ -18,7 +18,48 @@ }, "common": { "classes": [], - "functions": [], + "functions": [ + { + "parentPluginId": "@kbn/core-ui-settings-common", + "id": "def-common.parseDarkModeValue", + "type": "Function", + "tags": [], + "label": "parseDarkModeValue", + "description": [], + "signature": [ + "(rawValue: unknown) => ", + { + "pluginId": "@kbn/core-ui-settings-common", + "scope": "common", + "docId": "kibKbnCoreUiSettingsCommonPluginApi", + "section": "def-common.DarkModeValue", + "text": "DarkModeValue" + } + ], + "path": "packages/core/ui-settings/core-ui-settings-common/src/dark_mode.ts", + "deprecated": false, + "trackAdoption": false, + "children": [ + { + "parentPluginId": "@kbn/core-ui-settings-common", + "id": "def-common.parseDarkModeValue.$1", + "type": "Unknown", + "tags": [], + "label": "rawValue", + "description": [], + "signature": [ + "unknown" + ], + "path": "packages/core/ui-settings/core-ui-settings-common/src/dark_mode.ts", + "deprecated": false, + "trackAdoption": false, + "isRequired": true + } + ], + "returnComment": [], + "initialIsOpen": false + } + ], "interfaces": [ { "parentPluginId": "@kbn/core-ui-settings-common", @@ -454,6 +495,23 @@ ], "enums": [], "misc": [ + { + "parentPluginId": "@kbn/core-ui-settings-common", + "id": "def-common.DarkModeValue", + "type": "Type", + "tags": [], + "label": "DarkModeValue", + "description": [ + "\nThe list of possible values for the dark mode UI setting.\n- false: dark mode is disabled\n- true: dark mode is enabled\n- \"system\": dark mode will follow the user system preference." + ], + "signature": [ + "boolean | \"system\"" + ], + "path": "packages/core/ui-settings/core-ui-settings-common/src/dark_mode.ts", + "deprecated": false, + "trackAdoption": false, + "initialIsOpen": false + }, { "parentPluginId": "@kbn/core-ui-settings-common", "id": "def-common.ReadonlyModeType", diff --git a/api_docs/kbn_core_ui_settings_common.mdx b/api_docs/kbn_core_ui_settings_common.mdx index 187588d2bc5a3..8760d852526b0 100644 --- a/api_docs/kbn_core_ui_settings_common.mdx +++ b/api_docs/kbn_core_ui_settings_common.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-core-ui-settings-common title: "@kbn/core-ui-settings-common" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/core-ui-settings-common plugin -date: 2024-02-19 +date: 2024-02-22 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/core-ui-settings-common'] --- import kbnCoreUiSettingsCommonObj from './kbn_core_ui_settings_common.devdocs.json'; @@ -21,10 +21,13 @@ Contact [@elastic/appex-sharedux](https://github.com/orgs/elastic/teams/appex-sh | Public API count | Any count | Items lacking comments | Missing exports | |-------------------|-----------|------------------------|-----------------| -| 27 | 0 | 4 | 0 | +| 30 | 0 | 6 | 0 | ## Common +### Functions + + ### Interfaces diff --git a/api_docs/kbn_core_ui_settings_server.mdx b/api_docs/kbn_core_ui_settings_server.mdx index e0fe3cfb183bd..43cf2e7d94878 100644 --- a/api_docs/kbn_core_ui_settings_server.mdx +++ b/api_docs/kbn_core_ui_settings_server.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-core-ui-settings-server title: "@kbn/core-ui-settings-server" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/core-ui-settings-server plugin -date: 2024-02-19 +date: 2024-02-22 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/core-ui-settings-server'] --- import kbnCoreUiSettingsServerObj from './kbn_core_ui_settings_server.devdocs.json'; diff --git a/api_docs/kbn_core_ui_settings_server_internal.mdx b/api_docs/kbn_core_ui_settings_server_internal.mdx index 6bdf31da5419b..1553a23ce5083 100644 --- a/api_docs/kbn_core_ui_settings_server_internal.mdx +++ b/api_docs/kbn_core_ui_settings_server_internal.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-core-ui-settings-server-internal title: "@kbn/core-ui-settings-server-internal" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/core-ui-settings-server-internal plugin -date: 2024-02-19 +date: 2024-02-22 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/core-ui-settings-server-internal'] --- import kbnCoreUiSettingsServerInternalObj from './kbn_core_ui_settings_server_internal.devdocs.json'; diff --git a/api_docs/kbn_core_ui_settings_server_mocks.mdx b/api_docs/kbn_core_ui_settings_server_mocks.mdx index 0515552488e9a..f2b81e3291e72 100644 --- a/api_docs/kbn_core_ui_settings_server_mocks.mdx +++ b/api_docs/kbn_core_ui_settings_server_mocks.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-core-ui-settings-server-mocks title: "@kbn/core-ui-settings-server-mocks" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/core-ui-settings-server-mocks plugin -date: 2024-02-19 +date: 2024-02-22 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/core-ui-settings-server-mocks'] --- import kbnCoreUiSettingsServerMocksObj from './kbn_core_ui_settings_server_mocks.devdocs.json'; diff --git a/api_docs/kbn_core_usage_data_server.mdx b/api_docs/kbn_core_usage_data_server.mdx index a8fd5771c15f0..daf138d249f89 100644 --- a/api_docs/kbn_core_usage_data_server.mdx +++ b/api_docs/kbn_core_usage_data_server.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-core-usage-data-server title: "@kbn/core-usage-data-server" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/core-usage-data-server plugin -date: 2024-02-19 +date: 2024-02-22 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/core-usage-data-server'] --- import kbnCoreUsageDataServerObj from './kbn_core_usage_data_server.devdocs.json'; diff --git a/api_docs/kbn_core_usage_data_server_internal.mdx b/api_docs/kbn_core_usage_data_server_internal.mdx index 748d12e8ab9a8..7675cdbfb6951 100644 --- a/api_docs/kbn_core_usage_data_server_internal.mdx +++ b/api_docs/kbn_core_usage_data_server_internal.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-core-usage-data-server-internal title: "@kbn/core-usage-data-server-internal" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/core-usage-data-server-internal plugin -date: 2024-02-19 +date: 2024-02-22 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/core-usage-data-server-internal'] --- import kbnCoreUsageDataServerInternalObj from './kbn_core_usage_data_server_internal.devdocs.json'; diff --git a/api_docs/kbn_core_usage_data_server_mocks.mdx b/api_docs/kbn_core_usage_data_server_mocks.mdx index c28a9dc9b91bb..4f0170db01348 100644 --- a/api_docs/kbn_core_usage_data_server_mocks.mdx +++ b/api_docs/kbn_core_usage_data_server_mocks.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-core-usage-data-server-mocks title: "@kbn/core-usage-data-server-mocks" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/core-usage-data-server-mocks plugin -date: 2024-02-19 +date: 2024-02-22 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/core-usage-data-server-mocks'] --- import kbnCoreUsageDataServerMocksObj from './kbn_core_usage_data_server_mocks.devdocs.json'; diff --git a/api_docs/kbn_core_user_settings_server.mdx b/api_docs/kbn_core_user_settings_server.mdx index 303c4c7fd4cfb..ba9d3c62cb087 100644 --- a/api_docs/kbn_core_user_settings_server.mdx +++ b/api_docs/kbn_core_user_settings_server.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-core-user-settings-server title: "@kbn/core-user-settings-server" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/core-user-settings-server plugin -date: 2024-02-19 +date: 2024-02-22 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/core-user-settings-server'] --- import kbnCoreUserSettingsServerObj from './kbn_core_user_settings_server.devdocs.json'; diff --git a/api_docs/kbn_core_user_settings_server_internal.mdx b/api_docs/kbn_core_user_settings_server_internal.mdx index 98ab2b89d3dba..f7d2c71d2408e 100644 --- a/api_docs/kbn_core_user_settings_server_internal.mdx +++ b/api_docs/kbn_core_user_settings_server_internal.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-core-user-settings-server-internal title: "@kbn/core-user-settings-server-internal" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/core-user-settings-server-internal plugin -date: 2024-02-19 +date: 2024-02-22 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/core-user-settings-server-internal'] --- import kbnCoreUserSettingsServerInternalObj from './kbn_core_user_settings_server_internal.devdocs.json'; diff --git a/api_docs/kbn_core_user_settings_server_mocks.mdx b/api_docs/kbn_core_user_settings_server_mocks.mdx index 239ddafcb2624..0b455a8a2c54d 100644 --- a/api_docs/kbn_core_user_settings_server_mocks.mdx +++ b/api_docs/kbn_core_user_settings_server_mocks.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-core-user-settings-server-mocks title: "@kbn/core-user-settings-server-mocks" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/core-user-settings-server-mocks plugin -date: 2024-02-19 +date: 2024-02-22 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/core-user-settings-server-mocks'] --- import kbnCoreUserSettingsServerMocksObj from './kbn_core_user_settings_server_mocks.devdocs.json'; diff --git a/api_docs/kbn_crypto.mdx b/api_docs/kbn_crypto.mdx index 8b3d833cf536d..6b09bf8949b76 100644 --- a/api_docs/kbn_crypto.mdx +++ b/api_docs/kbn_crypto.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-crypto title: "@kbn/crypto" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/crypto plugin -date: 2024-02-19 +date: 2024-02-22 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/crypto'] --- import kbnCryptoObj from './kbn_crypto.devdocs.json'; diff --git a/api_docs/kbn_crypto_browser.mdx b/api_docs/kbn_crypto_browser.mdx index c4c9cb58458fa..0376717ba5828 100644 --- a/api_docs/kbn_crypto_browser.mdx +++ b/api_docs/kbn_crypto_browser.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-crypto-browser title: "@kbn/crypto-browser" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/crypto-browser plugin -date: 2024-02-19 +date: 2024-02-22 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/crypto-browser'] --- import kbnCryptoBrowserObj from './kbn_crypto_browser.devdocs.json'; diff --git a/api_docs/kbn_custom_icons.mdx b/api_docs/kbn_custom_icons.mdx index f636ec3e8e282..a6088895f62bb 100644 --- a/api_docs/kbn_custom_icons.mdx +++ b/api_docs/kbn_custom_icons.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-custom-icons title: "@kbn/custom-icons" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/custom-icons plugin -date: 2024-02-19 +date: 2024-02-22 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/custom-icons'] --- import kbnCustomIconsObj from './kbn_custom_icons.devdocs.json'; diff --git a/api_docs/kbn_custom_integrations.mdx b/api_docs/kbn_custom_integrations.mdx index 003067057d3c1..dd0c3f8956de6 100644 --- a/api_docs/kbn_custom_integrations.mdx +++ b/api_docs/kbn_custom_integrations.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-custom-integrations title: "@kbn/custom-integrations" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/custom-integrations plugin -date: 2024-02-19 +date: 2024-02-22 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/custom-integrations'] --- import kbnCustomIntegrationsObj from './kbn_custom_integrations.devdocs.json'; diff --git a/api_docs/kbn_cypress_config.mdx b/api_docs/kbn_cypress_config.mdx index 2fa2e8356b094..c1dbbaf63b9a3 100644 --- a/api_docs/kbn_cypress_config.mdx +++ b/api_docs/kbn_cypress_config.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-cypress-config title: "@kbn/cypress-config" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/cypress-config plugin -date: 2024-02-19 +date: 2024-02-22 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/cypress-config'] --- import kbnCypressConfigObj from './kbn_cypress_config.devdocs.json'; diff --git a/api_docs/kbn_data_forge.mdx b/api_docs/kbn_data_forge.mdx index 984596fc272c5..94cefa8973e1e 100644 --- a/api_docs/kbn_data_forge.mdx +++ b/api_docs/kbn_data_forge.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-data-forge title: "@kbn/data-forge" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/data-forge plugin -date: 2024-02-19 +date: 2024-02-22 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/data-forge'] --- import kbnDataForgeObj from './kbn_data_forge.devdocs.json'; diff --git a/api_docs/kbn_data_service.mdx b/api_docs/kbn_data_service.mdx index 9819ba356279a..3125031f7e18b 100644 --- a/api_docs/kbn_data_service.mdx +++ b/api_docs/kbn_data_service.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-data-service title: "@kbn/data-service" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/data-service plugin -date: 2024-02-19 +date: 2024-02-22 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/data-service'] --- import kbnDataServiceObj from './kbn_data_service.devdocs.json'; diff --git a/api_docs/kbn_data_stream_adapter.mdx b/api_docs/kbn_data_stream_adapter.mdx index f5b198e3a48b5..9a844a17a423b 100644 --- a/api_docs/kbn_data_stream_adapter.mdx +++ b/api_docs/kbn_data_stream_adapter.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-data-stream-adapter title: "@kbn/data-stream-adapter" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/data-stream-adapter plugin -date: 2024-02-19 +date: 2024-02-22 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/data-stream-adapter'] --- import kbnDataStreamAdapterObj from './kbn_data_stream_adapter.devdocs.json'; diff --git a/api_docs/kbn_data_view_utils.mdx b/api_docs/kbn_data_view_utils.mdx index 72c261895988c..6a439e2eb3b42 100644 --- a/api_docs/kbn_data_view_utils.mdx +++ b/api_docs/kbn_data_view_utils.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-data-view-utils title: "@kbn/data-view-utils" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/data-view-utils plugin -date: 2024-02-19 +date: 2024-02-22 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/data-view-utils'] --- import kbnDataViewUtilsObj from './kbn_data_view_utils.devdocs.json'; diff --git a/api_docs/kbn_datemath.mdx b/api_docs/kbn_datemath.mdx index e9fffd73a0d7b..5d69dd6666c02 100644 --- a/api_docs/kbn_datemath.mdx +++ b/api_docs/kbn_datemath.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-datemath title: "@kbn/datemath" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/datemath plugin -date: 2024-02-19 +date: 2024-02-22 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/datemath'] --- import kbnDatemathObj from './kbn_datemath.devdocs.json'; diff --git a/api_docs/kbn_deeplinks_analytics.mdx b/api_docs/kbn_deeplinks_analytics.mdx index 4a05b2bf3d87b..061421568dd8d 100644 --- a/api_docs/kbn_deeplinks_analytics.mdx +++ b/api_docs/kbn_deeplinks_analytics.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-deeplinks-analytics title: "@kbn/deeplinks-analytics" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/deeplinks-analytics plugin -date: 2024-02-19 +date: 2024-02-22 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/deeplinks-analytics'] --- import kbnDeeplinksAnalyticsObj from './kbn_deeplinks_analytics.devdocs.json'; diff --git a/api_docs/kbn_deeplinks_devtools.mdx b/api_docs/kbn_deeplinks_devtools.mdx index 896a607ce4c28..24815fcd94a1f 100644 --- a/api_docs/kbn_deeplinks_devtools.mdx +++ b/api_docs/kbn_deeplinks_devtools.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-deeplinks-devtools title: "@kbn/deeplinks-devtools" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/deeplinks-devtools plugin -date: 2024-02-19 +date: 2024-02-22 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/deeplinks-devtools'] --- import kbnDeeplinksDevtoolsObj from './kbn_deeplinks_devtools.devdocs.json'; diff --git a/api_docs/kbn_deeplinks_management.mdx b/api_docs/kbn_deeplinks_management.mdx index 9fb95d8f21eb7..417b2f6ad18b7 100644 --- a/api_docs/kbn_deeplinks_management.mdx +++ b/api_docs/kbn_deeplinks_management.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-deeplinks-management title: "@kbn/deeplinks-management" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/deeplinks-management plugin -date: 2024-02-19 +date: 2024-02-22 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/deeplinks-management'] --- import kbnDeeplinksManagementObj from './kbn_deeplinks_management.devdocs.json'; diff --git a/api_docs/kbn_deeplinks_ml.mdx b/api_docs/kbn_deeplinks_ml.mdx index 8a5c1e6fda02a..4aa423eee611f 100644 --- a/api_docs/kbn_deeplinks_ml.mdx +++ b/api_docs/kbn_deeplinks_ml.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-deeplinks-ml title: "@kbn/deeplinks-ml" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/deeplinks-ml plugin -date: 2024-02-19 +date: 2024-02-22 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/deeplinks-ml'] --- import kbnDeeplinksMlObj from './kbn_deeplinks_ml.devdocs.json'; diff --git a/api_docs/kbn_deeplinks_observability.devdocs.json b/api_docs/kbn_deeplinks_observability.devdocs.json index 8283e29631a8a..87bd7314368bd 100644 --- a/api_docs/kbn_deeplinks_observability.devdocs.json +++ b/api_docs/kbn_deeplinks_observability.devdocs.json @@ -336,6 +336,50 @@ ], "initialIsOpen": false }, + { + "parentPluginId": "@kbn/deeplinks-observability", + "id": "def-common.ObsLogsExplorerDataViewLocatorParams", + "type": "Interface", + "tags": [], + "label": "ObsLogsExplorerDataViewLocatorParams", + "description": [], + "signature": [ + { + "pluginId": "@kbn/deeplinks-observability", + "scope": "common", + "docId": "kibKbnDeeplinksObservabilityPluginApi", + "section": "def-common.ObsLogsExplorerDataViewLocatorParams", + "text": "ObsLogsExplorerDataViewLocatorParams" + }, + " extends ", + { + "pluginId": "@kbn/deeplinks-observability", + "scope": "common", + "docId": "kibKbnDeeplinksObservabilityPluginApi", + "section": "def-common.DatasetLocatorParams", + "text": "DatasetLocatorParams" + } + ], + "path": "packages/deeplinks/observability/locators/observability_logs_explorer.ts", + "deprecated": false, + "trackAdoption": false, + "children": [ + { + "parentPluginId": "@kbn/deeplinks-observability", + "id": "def-common.ObsLogsExplorerDataViewLocatorParams.id", + "type": "string", + "tags": [], + "label": "id", + "description": [ + "\nData view id to select" + ], + "path": "packages/deeplinks/observability/locators/observability_logs_explorer.ts", + "deprecated": false, + "trackAdoption": false + } + ], + "initialIsOpen": false + }, { "parentPluginId": "@kbn/deeplinks-observability", "id": "def-common.SingleDatasetLocatorParams", @@ -621,6 +665,21 @@ "trackAdoption": false, "initialIsOpen": false }, + { + "parentPluginId": "@kbn/deeplinks-observability", + "id": "def-common.OBS_LOGS_EXPLORER_DATA_VIEW_LOCATOR_ID", + "type": "string", + "tags": [], + "label": "OBS_LOGS_EXPLORER_DATA_VIEW_LOCATOR_ID", + "description": [], + "signature": [ + "\"OBS_LOGS_EXPLORER_DATA_VIEW_LOCATOR\"" + ], + "path": "packages/deeplinks/observability/locators/observability_logs_explorer.ts", + "deprecated": false, + "trackAdoption": false, + "initialIsOpen": false + }, { "parentPluginId": "@kbn/deeplinks-observability", "id": "def-common.OBSERVABILITY_LOGS_EXPLORER_APP_ID", diff --git a/api_docs/kbn_deeplinks_observability.mdx b/api_docs/kbn_deeplinks_observability.mdx index 97bfae2e44c7c..8c055e6a6eed1 100644 --- a/api_docs/kbn_deeplinks_observability.mdx +++ b/api_docs/kbn_deeplinks_observability.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-deeplinks-observability title: "@kbn/deeplinks-observability" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/deeplinks-observability plugin -date: 2024-02-19 +date: 2024-02-22 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/deeplinks-observability'] --- import kbnDeeplinksObservabilityObj from './kbn_deeplinks_observability.devdocs.json'; @@ -21,7 +21,7 @@ Contact [@elastic/obs-ux-logs-team](https://github.com/orgs/elastic/teams/obs-ux | Public API count | Any count | Items lacking comments | Missing exports | |-------------------|-----------|------------------------|-----------------| -| 34 | 0 | 24 | 0 | +| 37 | 0 | 26 | 0 | ## Common diff --git a/api_docs/kbn_deeplinks_search.mdx b/api_docs/kbn_deeplinks_search.mdx index d8b725ec926e1..64a7ace265ecd 100644 --- a/api_docs/kbn_deeplinks_search.mdx +++ b/api_docs/kbn_deeplinks_search.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-deeplinks-search title: "@kbn/deeplinks-search" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/deeplinks-search plugin -date: 2024-02-19 +date: 2024-02-22 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/deeplinks-search'] --- import kbnDeeplinksSearchObj from './kbn_deeplinks_search.devdocs.json'; diff --git a/api_docs/kbn_default_nav_analytics.mdx b/api_docs/kbn_default_nav_analytics.mdx index e03823a47ca2b..208e3acb8f98a 100644 --- a/api_docs/kbn_default_nav_analytics.mdx +++ b/api_docs/kbn_default_nav_analytics.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-default-nav-analytics title: "@kbn/default-nav-analytics" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/default-nav-analytics plugin -date: 2024-02-19 +date: 2024-02-22 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/default-nav-analytics'] --- import kbnDefaultNavAnalyticsObj from './kbn_default_nav_analytics.devdocs.json'; diff --git a/api_docs/kbn_default_nav_devtools.mdx b/api_docs/kbn_default_nav_devtools.mdx index 0295a0859635d..e0531f2efdcb8 100644 --- a/api_docs/kbn_default_nav_devtools.mdx +++ b/api_docs/kbn_default_nav_devtools.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-default-nav-devtools title: "@kbn/default-nav-devtools" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/default-nav-devtools plugin -date: 2024-02-19 +date: 2024-02-22 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/default-nav-devtools'] --- import kbnDefaultNavDevtoolsObj from './kbn_default_nav_devtools.devdocs.json'; diff --git a/api_docs/kbn_default_nav_management.mdx b/api_docs/kbn_default_nav_management.mdx index fb0a5671c8e6f..c984516492c54 100644 --- a/api_docs/kbn_default_nav_management.mdx +++ b/api_docs/kbn_default_nav_management.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-default-nav-management title: "@kbn/default-nav-management" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/default-nav-management plugin -date: 2024-02-19 +date: 2024-02-22 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/default-nav-management'] --- import kbnDefaultNavManagementObj from './kbn_default_nav_management.devdocs.json'; diff --git a/api_docs/kbn_default_nav_ml.mdx b/api_docs/kbn_default_nav_ml.mdx index 65f2ad6374478..a7ffc6459a489 100644 --- a/api_docs/kbn_default_nav_ml.mdx +++ b/api_docs/kbn_default_nav_ml.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-default-nav-ml title: "@kbn/default-nav-ml" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/default-nav-ml plugin -date: 2024-02-19 +date: 2024-02-22 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/default-nav-ml'] --- import kbnDefaultNavMlObj from './kbn_default_nav_ml.devdocs.json'; diff --git a/api_docs/kbn_dev_cli_errors.mdx b/api_docs/kbn_dev_cli_errors.mdx index e56d905e7f6dd..73258b29dd3e9 100644 --- a/api_docs/kbn_dev_cli_errors.mdx +++ b/api_docs/kbn_dev_cli_errors.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-dev-cli-errors title: "@kbn/dev-cli-errors" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/dev-cli-errors plugin -date: 2024-02-19 +date: 2024-02-22 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/dev-cli-errors'] --- import kbnDevCliErrorsObj from './kbn_dev_cli_errors.devdocs.json'; diff --git a/api_docs/kbn_dev_cli_runner.mdx b/api_docs/kbn_dev_cli_runner.mdx index c323cd0621e43..f90d40a25fb4c 100644 --- a/api_docs/kbn_dev_cli_runner.mdx +++ b/api_docs/kbn_dev_cli_runner.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-dev-cli-runner title: "@kbn/dev-cli-runner" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/dev-cli-runner plugin -date: 2024-02-19 +date: 2024-02-22 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/dev-cli-runner'] --- import kbnDevCliRunnerObj from './kbn_dev_cli_runner.devdocs.json'; diff --git a/api_docs/kbn_dev_proc_runner.mdx b/api_docs/kbn_dev_proc_runner.mdx index 086bc156c4962..9e73021b1b090 100644 --- a/api_docs/kbn_dev_proc_runner.mdx +++ b/api_docs/kbn_dev_proc_runner.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-dev-proc-runner title: "@kbn/dev-proc-runner" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/dev-proc-runner plugin -date: 2024-02-19 +date: 2024-02-22 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/dev-proc-runner'] --- import kbnDevProcRunnerObj from './kbn_dev_proc_runner.devdocs.json'; diff --git a/api_docs/kbn_dev_utils.mdx b/api_docs/kbn_dev_utils.mdx index 38caf1620fee0..f154e7b4e5fa4 100644 --- a/api_docs/kbn_dev_utils.mdx +++ b/api_docs/kbn_dev_utils.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-dev-utils title: "@kbn/dev-utils" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/dev-utils plugin -date: 2024-02-19 +date: 2024-02-22 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/dev-utils'] --- import kbnDevUtilsObj from './kbn_dev_utils.devdocs.json'; diff --git a/api_docs/kbn_discover_utils.mdx b/api_docs/kbn_discover_utils.mdx index c9171bb1205f3..6da816a17ad0e 100644 --- a/api_docs/kbn_discover_utils.mdx +++ b/api_docs/kbn_discover_utils.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-discover-utils title: "@kbn/discover-utils" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/discover-utils plugin -date: 2024-02-19 +date: 2024-02-22 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/discover-utils'] --- import kbnDiscoverUtilsObj from './kbn_discover_utils.devdocs.json'; diff --git a/api_docs/kbn_doc_links.devdocs.json b/api_docs/kbn_doc_links.devdocs.json index 9b772c4ce3b2e..ce27411085185 100644 --- a/api_docs/kbn_doc_links.devdocs.json +++ b/api_docs/kbn_doc_links.devdocs.json @@ -300,7 +300,7 @@ "label": "enterpriseSearch", "description": [], "signature": [ - "{ readonly aiSearchDoc: string; readonly aiSearchHelp: string; readonly apiKeys: string; readonly behavioralAnalytics: string; readonly behavioralAnalyticsCORS: string; readonly behavioralAnalyticsEvents: string; readonly buildConnector: string; readonly bulkApi: string; readonly configuration: string; readonly connectors: string; readonly connectorsAzureBlobStorage: string; readonly connectorsBox: string; readonly connectorsClients: string; readonly connectorsConfluence: string; readonly connectorsContentExtraction: string; readonly connectorsDropbox: string; readonly connectorsGithub: string; readonly connectorsGoogleCloudStorage: string; readonly connectorsGoogleDrive: string; readonly connectorsGmail: string; readonly connectorsJira: string; readonly connectorsMicrosoftSQL: string; readonly connectorsMongoDB: string; readonly connectorsMySQL: string; readonly connectorsNative: string; readonly connectorsNetworkDrive: string; readonly connectorsOneDrive: string; readonly connectorsOracle: string; readonly connectorsOutlook: string; readonly connectorsPostgreSQL: string; readonly connectorsS3: string; readonly connectorsSalesforce: string; readonly connectorsServiceNow: string; readonly connectorsSharepoint: string; readonly connectorsSharepointOnline: string; readonly connectorsTeams: string; readonly connectorsSlack: string; readonly connectorsZoom: string; readonly crawlerExtractionRules: string; readonly crawlerManaging: string; readonly crawlerOverview: string; readonly deployTrainedModels: string; readonly documentLevelSecurity: string; readonly elser: string; readonly engines: string; readonly indexApi: string; readonly ingestionApis: string; readonly ingestPipelines: string; readonly knnSearch: string; readonly knnSearchCombine: string; readonly languageAnalyzers: string; readonly languageClients: string; readonly licenseManagement: string; readonly machineLearningStart: string; readonly mailService: string; readonly mlDocumentEnrichment: string; readonly searchApplicationsTemplates: string; readonly searchApplicationsSearchApi: string; readonly searchApplications: string; readonly searchApplicationsSearch: string; readonly searchLabs: string; readonly searchLabsRepo: string; readonly searchTemplates: string; readonly start: string; readonly supportedNlpModels: string; readonly syncRules: string; readonly trainedModels: string; readonly textEmbedding: string; readonly troubleshootSetup: string; readonly usersAccess: string; }" + "{ readonly aiSearchDoc: string; readonly aiSearchHelp: string; readonly apiKeys: string; readonly behavioralAnalytics: string; readonly behavioralAnalyticsCORS: string; readonly behavioralAnalyticsEvents: string; readonly buildConnector: string; readonly bulkApi: string; readonly configuration: string; readonly connectors: string; readonly connectorsAzureBlobStorage: string; readonly connectorsBox: string; readonly connectorsClients: string; readonly connectorsConfluence: string; readonly connectorsContentExtraction: string; readonly connectorsDropbox: string; readonly connectorsGithub: string; readonly connectorsGoogleCloudStorage: string; readonly connectorsGoogleDrive: string; readonly connectorsGmail: string; readonly connectorsJira: string; readonly connectorsMicrosoftSQL: string; readonly connectorsMongoDB: string; readonly connectorsMySQL: string; readonly connectorsNative: string; readonly connectorsNetworkDrive: string; readonly connectorsNotion: string; readonly connectorsOneDrive: string; readonly connectorsOracle: string; readonly connectorsOutlook: string; readonly connectorsPostgreSQL: string; readonly connectorsRedis: string; readonly connectorsS3: string; readonly connectorsSalesforce: string; readonly connectorsServiceNow: string; readonly connectorsSharepoint: string; readonly connectorsSharepointOnline: string; readonly connectorsTeams: string; readonly connectorsSlack: string; readonly connectorsZoom: string; readonly crawlerExtractionRules: string; readonly crawlerManaging: string; readonly crawlerOverview: string; readonly deployTrainedModels: string; readonly documentLevelSecurity: string; readonly elser: string; readonly engines: string; readonly indexApi: string; readonly ingestionApis: string; readonly ingestPipelines: string; readonly knnSearch: string; readonly knnSearchCombine: string; readonly languageAnalyzers: string; readonly languageClients: string; readonly licenseManagement: string; readonly machineLearningStart: string; readonly mailService: string; readonly mlDocumentEnrichment: string; readonly searchApplicationsTemplates: string; readonly searchApplicationsSearchApi: string; readonly searchApplications: string; readonly searchApplicationsSearch: string; readonly searchLabs: string; readonly searchLabsRepo: string; readonly searchTemplates: string; readonly start: string; readonly supportedNlpModels: string; readonly syncRules: string; readonly trainedModels: string; readonly textEmbedding: string; readonly troubleshootSetup: string; readonly usersAccess: string; }" ], "path": "packages/kbn-doc-links/src/types.ts", "deprecated": false, diff --git a/api_docs/kbn_doc_links.mdx b/api_docs/kbn_doc_links.mdx index 9a514fd45bdf5..a968931c735bb 100644 --- a/api_docs/kbn_doc_links.mdx +++ b/api_docs/kbn_doc_links.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-doc-links title: "@kbn/doc-links" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/doc-links plugin -date: 2024-02-19 +date: 2024-02-22 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/doc-links'] --- import kbnDocLinksObj from './kbn_doc_links.devdocs.json'; diff --git a/api_docs/kbn_docs_utils.mdx b/api_docs/kbn_docs_utils.mdx index a7d8716b233b9..95d5e515d316a 100644 --- a/api_docs/kbn_docs_utils.mdx +++ b/api_docs/kbn_docs_utils.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-docs-utils title: "@kbn/docs-utils" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/docs-utils plugin -date: 2024-02-19 +date: 2024-02-22 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/docs-utils'] --- import kbnDocsUtilsObj from './kbn_docs_utils.devdocs.json'; diff --git a/api_docs/kbn_dom_drag_drop.mdx b/api_docs/kbn_dom_drag_drop.mdx index e26db14bf190f..4533b94fdfe8f 100644 --- a/api_docs/kbn_dom_drag_drop.mdx +++ b/api_docs/kbn_dom_drag_drop.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-dom-drag-drop title: "@kbn/dom-drag-drop" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/dom-drag-drop plugin -date: 2024-02-19 +date: 2024-02-22 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/dom-drag-drop'] --- import kbnDomDragDropObj from './kbn_dom_drag_drop.devdocs.json'; diff --git a/api_docs/kbn_ebt_tools.mdx b/api_docs/kbn_ebt_tools.mdx index 696a5ef2e14a3..13d6e5f2d5ecc 100644 --- a/api_docs/kbn_ebt_tools.mdx +++ b/api_docs/kbn_ebt_tools.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-ebt-tools title: "@kbn/ebt-tools" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/ebt-tools plugin -date: 2024-02-19 +date: 2024-02-22 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/ebt-tools'] --- import kbnEbtToolsObj from './kbn_ebt_tools.devdocs.json'; diff --git a/api_docs/kbn_ecs_data_quality_dashboard.mdx b/api_docs/kbn_ecs_data_quality_dashboard.mdx index 29a9c4b9fd241..2b2a8f730847b 100644 --- a/api_docs/kbn_ecs_data_quality_dashboard.mdx +++ b/api_docs/kbn_ecs_data_quality_dashboard.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-ecs-data-quality-dashboard title: "@kbn/ecs-data-quality-dashboard" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/ecs-data-quality-dashboard plugin -date: 2024-02-19 +date: 2024-02-22 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/ecs-data-quality-dashboard'] --- import kbnEcsDataQualityDashboardObj from './kbn_ecs_data_quality_dashboard.devdocs.json'; diff --git a/api_docs/kbn_elastic_agent_utils.mdx b/api_docs/kbn_elastic_agent_utils.mdx index cab94979ca8f2..0fab8ba499554 100644 --- a/api_docs/kbn_elastic_agent_utils.mdx +++ b/api_docs/kbn_elastic_agent_utils.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-elastic-agent-utils title: "@kbn/elastic-agent-utils" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/elastic-agent-utils plugin -date: 2024-02-19 +date: 2024-02-22 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/elastic-agent-utils'] --- import kbnElasticAgentUtilsObj from './kbn_elastic_agent_utils.devdocs.json'; diff --git a/api_docs/kbn_elastic_assistant.mdx b/api_docs/kbn_elastic_assistant.mdx index 95cddc9df0ddf..ac77cf8ff73f9 100644 --- a/api_docs/kbn_elastic_assistant.mdx +++ b/api_docs/kbn_elastic_assistant.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-elastic-assistant title: "@kbn/elastic-assistant" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/elastic-assistant plugin -date: 2024-02-19 +date: 2024-02-22 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/elastic-assistant'] --- import kbnElasticAssistantObj from './kbn_elastic_assistant.devdocs.json'; diff --git a/api_docs/kbn_elastic_assistant_common.mdx b/api_docs/kbn_elastic_assistant_common.mdx index f0db1605f47b4..9ee2d6b91db8d 100644 --- a/api_docs/kbn_elastic_assistant_common.mdx +++ b/api_docs/kbn_elastic_assistant_common.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-elastic-assistant-common title: "@kbn/elastic-assistant-common" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/elastic-assistant-common plugin -date: 2024-02-19 +date: 2024-02-22 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/elastic-assistant-common'] --- import kbnElasticAssistantCommonObj from './kbn_elastic_assistant_common.devdocs.json'; diff --git a/api_docs/kbn_es.mdx b/api_docs/kbn_es.mdx index dc95925204d03..bbe259aefb1f7 100644 --- a/api_docs/kbn_es.mdx +++ b/api_docs/kbn_es.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-es title: "@kbn/es" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/es plugin -date: 2024-02-19 +date: 2024-02-22 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/es'] --- import kbnEsObj from './kbn_es.devdocs.json'; diff --git a/api_docs/kbn_es_archiver.mdx b/api_docs/kbn_es_archiver.mdx index b8f8532a167de..ab46b62f48f84 100644 --- a/api_docs/kbn_es_archiver.mdx +++ b/api_docs/kbn_es_archiver.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-es-archiver title: "@kbn/es-archiver" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/es-archiver plugin -date: 2024-02-19 +date: 2024-02-22 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/es-archiver'] --- import kbnEsArchiverObj from './kbn_es_archiver.devdocs.json'; diff --git a/api_docs/kbn_es_errors.mdx b/api_docs/kbn_es_errors.mdx index d9c2553679145..380b9b558e5ad 100644 --- a/api_docs/kbn_es_errors.mdx +++ b/api_docs/kbn_es_errors.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-es-errors title: "@kbn/es-errors" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/es-errors plugin -date: 2024-02-19 +date: 2024-02-22 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/es-errors'] --- import kbnEsErrorsObj from './kbn_es_errors.devdocs.json'; diff --git a/api_docs/kbn_es_query.mdx b/api_docs/kbn_es_query.mdx index 1589adb099868..9a600c15fc3e7 100644 --- a/api_docs/kbn_es_query.mdx +++ b/api_docs/kbn_es_query.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-es-query title: "@kbn/es-query" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/es-query plugin -date: 2024-02-19 +date: 2024-02-22 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/es-query'] --- import kbnEsQueryObj from './kbn_es_query.devdocs.json'; diff --git a/api_docs/kbn_es_types.mdx b/api_docs/kbn_es_types.mdx index d1bb6ac780691..fce3fbdc2b823 100644 --- a/api_docs/kbn_es_types.mdx +++ b/api_docs/kbn_es_types.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-es-types title: "@kbn/es-types" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/es-types plugin -date: 2024-02-19 +date: 2024-02-22 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/es-types'] --- import kbnEsTypesObj from './kbn_es_types.devdocs.json'; diff --git a/api_docs/kbn_eslint_plugin_imports.mdx b/api_docs/kbn_eslint_plugin_imports.mdx index 4d254f362cf86..55dbd324600c6 100644 --- a/api_docs/kbn_eslint_plugin_imports.mdx +++ b/api_docs/kbn_eslint_plugin_imports.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-eslint-plugin-imports title: "@kbn/eslint-plugin-imports" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/eslint-plugin-imports plugin -date: 2024-02-19 +date: 2024-02-22 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/eslint-plugin-imports'] --- import kbnEslintPluginImportsObj from './kbn_eslint_plugin_imports.devdocs.json'; diff --git a/api_docs/kbn_esql_utils.mdx b/api_docs/kbn_esql_utils.mdx index a5466f1a89acf..10f973a80f9f1 100644 --- a/api_docs/kbn_esql_utils.mdx +++ b/api_docs/kbn_esql_utils.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-esql-utils title: "@kbn/esql-utils" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/esql-utils plugin -date: 2024-02-19 +date: 2024-02-22 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/esql-utils'] --- import kbnEsqlUtilsObj from './kbn_esql_utils.devdocs.json'; diff --git a/api_docs/kbn_event_annotation_common.mdx b/api_docs/kbn_event_annotation_common.mdx index 62b7f5291ccdd..82a5ba8f1dedb 100644 --- a/api_docs/kbn_event_annotation_common.mdx +++ b/api_docs/kbn_event_annotation_common.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-event-annotation-common title: "@kbn/event-annotation-common" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/event-annotation-common plugin -date: 2024-02-19 +date: 2024-02-22 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/event-annotation-common'] --- import kbnEventAnnotationCommonObj from './kbn_event_annotation_common.devdocs.json'; diff --git a/api_docs/kbn_event_annotation_components.mdx b/api_docs/kbn_event_annotation_components.mdx index 43f4cbbb7d259..a6c693a030da6 100644 --- a/api_docs/kbn_event_annotation_components.mdx +++ b/api_docs/kbn_event_annotation_components.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-event-annotation-components title: "@kbn/event-annotation-components" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/event-annotation-components plugin -date: 2024-02-19 +date: 2024-02-22 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/event-annotation-components'] --- import kbnEventAnnotationComponentsObj from './kbn_event_annotation_components.devdocs.json'; diff --git a/api_docs/kbn_expandable_flyout.mdx b/api_docs/kbn_expandable_flyout.mdx index 64a9d6268455f..7f4bdc7785f50 100644 --- a/api_docs/kbn_expandable_flyout.mdx +++ b/api_docs/kbn_expandable_flyout.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-expandable-flyout title: "@kbn/expandable-flyout" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/expandable-flyout plugin -date: 2024-02-19 +date: 2024-02-22 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/expandable-flyout'] --- import kbnExpandableFlyoutObj from './kbn_expandable_flyout.devdocs.json'; diff --git a/api_docs/kbn_field_types.mdx b/api_docs/kbn_field_types.mdx index 46e072b9ec6c3..6e83b2f64a1a8 100644 --- a/api_docs/kbn_field_types.mdx +++ b/api_docs/kbn_field_types.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-field-types title: "@kbn/field-types" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/field-types plugin -date: 2024-02-19 +date: 2024-02-22 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/field-types'] --- import kbnFieldTypesObj from './kbn_field_types.devdocs.json'; diff --git a/api_docs/kbn_field_utils.mdx b/api_docs/kbn_field_utils.mdx index 4143d1c69fd59..d2d142f14d94a 100644 --- a/api_docs/kbn_field_utils.mdx +++ b/api_docs/kbn_field_utils.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-field-utils title: "@kbn/field-utils" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/field-utils plugin -date: 2024-02-19 +date: 2024-02-22 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/field-utils'] --- import kbnFieldUtilsObj from './kbn_field_utils.devdocs.json'; diff --git a/api_docs/kbn_find_used_node_modules.mdx b/api_docs/kbn_find_used_node_modules.mdx index b18db56509495..9c1b64e730c23 100644 --- a/api_docs/kbn_find_used_node_modules.mdx +++ b/api_docs/kbn_find_used_node_modules.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-find-used-node-modules title: "@kbn/find-used-node-modules" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/find-used-node-modules plugin -date: 2024-02-19 +date: 2024-02-22 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/find-used-node-modules'] --- import kbnFindUsedNodeModulesObj from './kbn_find_used_node_modules.devdocs.json'; diff --git a/api_docs/kbn_formatters.mdx b/api_docs/kbn_formatters.mdx index 1f6342a4476d9..0106aab754ac2 100644 --- a/api_docs/kbn_formatters.mdx +++ b/api_docs/kbn_formatters.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-formatters title: "@kbn/formatters" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/formatters plugin -date: 2024-02-19 +date: 2024-02-22 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/formatters'] --- import kbnFormattersObj from './kbn_formatters.devdocs.json'; diff --git a/api_docs/kbn_ftr_common_functional_services.mdx b/api_docs/kbn_ftr_common_functional_services.mdx index 1d03a4277165b..898135ad51720 100644 --- a/api_docs/kbn_ftr_common_functional_services.mdx +++ b/api_docs/kbn_ftr_common_functional_services.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-ftr-common-functional-services title: "@kbn/ftr-common-functional-services" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/ftr-common-functional-services plugin -date: 2024-02-19 +date: 2024-02-22 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/ftr-common-functional-services'] --- import kbnFtrCommonFunctionalServicesObj from './kbn_ftr_common_functional_services.devdocs.json'; diff --git a/api_docs/kbn_ftr_common_functional_ui_services.mdx b/api_docs/kbn_ftr_common_functional_ui_services.mdx index 05527a7c6b221..b5f52abf46874 100644 --- a/api_docs/kbn_ftr_common_functional_ui_services.mdx +++ b/api_docs/kbn_ftr_common_functional_ui_services.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-ftr-common-functional-ui-services title: "@kbn/ftr-common-functional-ui-services" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/ftr-common-functional-ui-services plugin -date: 2024-02-19 +date: 2024-02-22 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/ftr-common-functional-ui-services'] --- import kbnFtrCommonFunctionalUiServicesObj from './kbn_ftr_common_functional_ui_services.devdocs.json'; diff --git a/api_docs/kbn_generate.mdx b/api_docs/kbn_generate.mdx index 9fbf353c5b976..ce6fa68f5028d 100644 --- a/api_docs/kbn_generate.mdx +++ b/api_docs/kbn_generate.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-generate title: "@kbn/generate" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/generate plugin -date: 2024-02-19 +date: 2024-02-22 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/generate'] --- import kbnGenerateObj from './kbn_generate.devdocs.json'; diff --git a/api_docs/kbn_generate_console_definitions.mdx b/api_docs/kbn_generate_console_definitions.mdx index c2b2c84c3bc15..8122dc12afcb3 100644 --- a/api_docs/kbn_generate_console_definitions.mdx +++ b/api_docs/kbn_generate_console_definitions.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-generate-console-definitions title: "@kbn/generate-console-definitions" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/generate-console-definitions plugin -date: 2024-02-19 +date: 2024-02-22 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/generate-console-definitions'] --- import kbnGenerateConsoleDefinitionsObj from './kbn_generate_console_definitions.devdocs.json'; diff --git a/api_docs/kbn_generate_csv.mdx b/api_docs/kbn_generate_csv.mdx index 737d5cd63d818..a9f81ebbc1f40 100644 --- a/api_docs/kbn_generate_csv.mdx +++ b/api_docs/kbn_generate_csv.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-generate-csv title: "@kbn/generate-csv" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/generate-csv plugin -date: 2024-02-19 +date: 2024-02-22 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/generate-csv'] --- import kbnGenerateCsvObj from './kbn_generate_csv.devdocs.json'; diff --git a/api_docs/kbn_guided_onboarding.mdx b/api_docs/kbn_guided_onboarding.mdx index 2a0648e9eef2f..9ca8c148a69ed 100644 --- a/api_docs/kbn_guided_onboarding.mdx +++ b/api_docs/kbn_guided_onboarding.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-guided-onboarding title: "@kbn/guided-onboarding" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/guided-onboarding plugin -date: 2024-02-19 +date: 2024-02-22 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/guided-onboarding'] --- import kbnGuidedOnboardingObj from './kbn_guided_onboarding.devdocs.json'; diff --git a/api_docs/kbn_handlebars.mdx b/api_docs/kbn_handlebars.mdx index 9e3209221873e..78ca7ab7aa5e6 100644 --- a/api_docs/kbn_handlebars.mdx +++ b/api_docs/kbn_handlebars.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-handlebars title: "@kbn/handlebars" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/handlebars plugin -date: 2024-02-19 +date: 2024-02-22 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/handlebars'] --- import kbnHandlebarsObj from './kbn_handlebars.devdocs.json'; diff --git a/api_docs/kbn_hapi_mocks.mdx b/api_docs/kbn_hapi_mocks.mdx index bcdead96c1394..6ac61c5a096d2 100644 --- a/api_docs/kbn_hapi_mocks.mdx +++ b/api_docs/kbn_hapi_mocks.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-hapi-mocks title: "@kbn/hapi-mocks" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/hapi-mocks plugin -date: 2024-02-19 +date: 2024-02-22 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/hapi-mocks'] --- import kbnHapiMocksObj from './kbn_hapi_mocks.devdocs.json'; diff --git a/api_docs/kbn_health_gateway_server.mdx b/api_docs/kbn_health_gateway_server.mdx index 1e0e7f9bf67ea..3a3c10e02e4e3 100644 --- a/api_docs/kbn_health_gateway_server.mdx +++ b/api_docs/kbn_health_gateway_server.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-health-gateway-server title: "@kbn/health-gateway-server" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/health-gateway-server plugin -date: 2024-02-19 +date: 2024-02-22 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/health-gateway-server'] --- import kbnHealthGatewayServerObj from './kbn_health_gateway_server.devdocs.json'; diff --git a/api_docs/kbn_home_sample_data_card.mdx b/api_docs/kbn_home_sample_data_card.mdx index c6c4b1d347fda..cdb57cd509a9a 100644 --- a/api_docs/kbn_home_sample_data_card.mdx +++ b/api_docs/kbn_home_sample_data_card.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-home-sample-data-card title: "@kbn/home-sample-data-card" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/home-sample-data-card plugin -date: 2024-02-19 +date: 2024-02-22 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/home-sample-data-card'] --- import kbnHomeSampleDataCardObj from './kbn_home_sample_data_card.devdocs.json'; diff --git a/api_docs/kbn_home_sample_data_tab.mdx b/api_docs/kbn_home_sample_data_tab.mdx index 5180c2679f4c5..8634e3827c5b9 100644 --- a/api_docs/kbn_home_sample_data_tab.mdx +++ b/api_docs/kbn_home_sample_data_tab.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-home-sample-data-tab title: "@kbn/home-sample-data-tab" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/home-sample-data-tab plugin -date: 2024-02-19 +date: 2024-02-22 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/home-sample-data-tab'] --- import kbnHomeSampleDataTabObj from './kbn_home_sample_data_tab.devdocs.json'; diff --git a/api_docs/kbn_i18n.mdx b/api_docs/kbn_i18n.mdx index 47902edc237c0..5a9894944d8bc 100644 --- a/api_docs/kbn_i18n.mdx +++ b/api_docs/kbn_i18n.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-i18n title: "@kbn/i18n" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/i18n plugin -date: 2024-02-19 +date: 2024-02-22 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/i18n'] --- import kbnI18nObj from './kbn_i18n.devdocs.json'; diff --git a/api_docs/kbn_i18n_react.mdx b/api_docs/kbn_i18n_react.mdx index e112b3075a951..bcb35c65f0a3b 100644 --- a/api_docs/kbn_i18n_react.mdx +++ b/api_docs/kbn_i18n_react.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-i18n-react title: "@kbn/i18n-react" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/i18n-react plugin -date: 2024-02-19 +date: 2024-02-22 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/i18n-react'] --- import kbnI18nReactObj from './kbn_i18n_react.devdocs.json'; diff --git a/api_docs/kbn_import_resolver.mdx b/api_docs/kbn_import_resolver.mdx index 4ef7bd4dbd8cf..6e4bb4e6e7e21 100644 --- a/api_docs/kbn_import_resolver.mdx +++ b/api_docs/kbn_import_resolver.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-import-resolver title: "@kbn/import-resolver" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/import-resolver plugin -date: 2024-02-19 +date: 2024-02-22 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/import-resolver'] --- import kbnImportResolverObj from './kbn_import_resolver.devdocs.json'; diff --git a/api_docs/kbn_infra_forge.mdx b/api_docs/kbn_infra_forge.mdx index 6df254e94ffef..36e5082135214 100644 --- a/api_docs/kbn_infra_forge.mdx +++ b/api_docs/kbn_infra_forge.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-infra-forge title: "@kbn/infra-forge" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/infra-forge plugin -date: 2024-02-19 +date: 2024-02-22 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/infra-forge'] --- import kbnInfraForgeObj from './kbn_infra_forge.devdocs.json'; diff --git a/api_docs/kbn_interpreter.mdx b/api_docs/kbn_interpreter.mdx index 7b24ff48884f4..355186ad97229 100644 --- a/api_docs/kbn_interpreter.mdx +++ b/api_docs/kbn_interpreter.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-interpreter title: "@kbn/interpreter" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/interpreter plugin -date: 2024-02-19 +date: 2024-02-22 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/interpreter'] --- import kbnInterpreterObj from './kbn_interpreter.devdocs.json'; diff --git a/api_docs/kbn_io_ts_utils.mdx b/api_docs/kbn_io_ts_utils.mdx index 16d874d2700bb..56a8d8a06ef13 100644 --- a/api_docs/kbn_io_ts_utils.mdx +++ b/api_docs/kbn_io_ts_utils.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-io-ts-utils title: "@kbn/io-ts-utils" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/io-ts-utils plugin -date: 2024-02-19 +date: 2024-02-22 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/io-ts-utils'] --- import kbnIoTsUtilsObj from './kbn_io_ts_utils.devdocs.json'; diff --git a/api_docs/kbn_jest_serializers.mdx b/api_docs/kbn_jest_serializers.mdx index 074b0cea3f712..2c351d96d975e 100644 --- a/api_docs/kbn_jest_serializers.mdx +++ b/api_docs/kbn_jest_serializers.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-jest-serializers title: "@kbn/jest-serializers" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/jest-serializers plugin -date: 2024-02-19 +date: 2024-02-22 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/jest-serializers'] --- import kbnJestSerializersObj from './kbn_jest_serializers.devdocs.json'; diff --git a/api_docs/kbn_journeys.mdx b/api_docs/kbn_journeys.mdx index aed0ad41e76fc..642f9a3d6cd35 100644 --- a/api_docs/kbn_journeys.mdx +++ b/api_docs/kbn_journeys.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-journeys title: "@kbn/journeys" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/journeys plugin -date: 2024-02-19 +date: 2024-02-22 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/journeys'] --- import kbnJourneysObj from './kbn_journeys.devdocs.json'; diff --git a/api_docs/kbn_json_ast.mdx b/api_docs/kbn_json_ast.mdx index e0ab4f48d8744..b9edc865526d4 100644 --- a/api_docs/kbn_json_ast.mdx +++ b/api_docs/kbn_json_ast.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-json-ast title: "@kbn/json-ast" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/json-ast plugin -date: 2024-02-19 +date: 2024-02-22 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/json-ast'] --- import kbnJsonAstObj from './kbn_json_ast.devdocs.json'; diff --git a/api_docs/kbn_kibana_manifest_schema.mdx b/api_docs/kbn_kibana_manifest_schema.mdx index 8aabded9430ec..ce5649dee1368 100644 --- a/api_docs/kbn_kibana_manifest_schema.mdx +++ b/api_docs/kbn_kibana_manifest_schema.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-kibana-manifest-schema title: "@kbn/kibana-manifest-schema" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/kibana-manifest-schema plugin -date: 2024-02-19 +date: 2024-02-22 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/kibana-manifest-schema'] --- import kbnKibanaManifestSchemaObj from './kbn_kibana_manifest_schema.devdocs.json'; diff --git a/api_docs/kbn_language_documentation_popover.mdx b/api_docs/kbn_language_documentation_popover.mdx index 9434354494f2c..a857a790edf1d 100644 --- a/api_docs/kbn_language_documentation_popover.mdx +++ b/api_docs/kbn_language_documentation_popover.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-language-documentation-popover title: "@kbn/language-documentation-popover" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/language-documentation-popover plugin -date: 2024-02-19 +date: 2024-02-22 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/language-documentation-popover'] --- import kbnLanguageDocumentationPopoverObj from './kbn_language_documentation_popover.devdocs.json'; diff --git a/api_docs/kbn_lens_embeddable_utils.mdx b/api_docs/kbn_lens_embeddable_utils.mdx index 01e46ee4e74fa..62fcb6276590c 100644 --- a/api_docs/kbn_lens_embeddable_utils.mdx +++ b/api_docs/kbn_lens_embeddable_utils.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-lens-embeddable-utils title: "@kbn/lens-embeddable-utils" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/lens-embeddable-utils plugin -date: 2024-02-19 +date: 2024-02-22 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/lens-embeddable-utils'] --- import kbnLensEmbeddableUtilsObj from './kbn_lens_embeddable_utils.devdocs.json'; diff --git a/api_docs/kbn_lens_formula_docs.mdx b/api_docs/kbn_lens_formula_docs.mdx index c3a04c287f084..2a17776eb6663 100644 --- a/api_docs/kbn_lens_formula_docs.mdx +++ b/api_docs/kbn_lens_formula_docs.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-lens-formula-docs title: "@kbn/lens-formula-docs" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/lens-formula-docs plugin -date: 2024-02-19 +date: 2024-02-22 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/lens-formula-docs'] --- import kbnLensFormulaDocsObj from './kbn_lens_formula_docs.devdocs.json'; diff --git a/api_docs/kbn_logging.mdx b/api_docs/kbn_logging.mdx index 143fef1311596..996bc138bb765 100644 --- a/api_docs/kbn_logging.mdx +++ b/api_docs/kbn_logging.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-logging title: "@kbn/logging" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/logging plugin -date: 2024-02-19 +date: 2024-02-22 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/logging'] --- import kbnLoggingObj from './kbn_logging.devdocs.json'; diff --git a/api_docs/kbn_logging_mocks.mdx b/api_docs/kbn_logging_mocks.mdx index 1a737fd9722ee..4010bec15eb4d 100644 --- a/api_docs/kbn_logging_mocks.mdx +++ b/api_docs/kbn_logging_mocks.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-logging-mocks title: "@kbn/logging-mocks" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/logging-mocks plugin -date: 2024-02-19 +date: 2024-02-22 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/logging-mocks'] --- import kbnLoggingMocksObj from './kbn_logging_mocks.devdocs.json'; diff --git a/api_docs/kbn_managed_content_badge.mdx b/api_docs/kbn_managed_content_badge.mdx index abcad6f0557cc..99b180f719d59 100644 --- a/api_docs/kbn_managed_content_badge.mdx +++ b/api_docs/kbn_managed_content_badge.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-managed-content-badge title: "@kbn/managed-content-badge" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/managed-content-badge plugin -date: 2024-02-19 +date: 2024-02-22 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/managed-content-badge'] --- import kbnManagedContentBadgeObj from './kbn_managed_content_badge.devdocs.json'; diff --git a/api_docs/kbn_managed_vscode_config.mdx b/api_docs/kbn_managed_vscode_config.mdx index e1adf84eb942a..32df85ca24baa 100644 --- a/api_docs/kbn_managed_vscode_config.mdx +++ b/api_docs/kbn_managed_vscode_config.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-managed-vscode-config title: "@kbn/managed-vscode-config" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/managed-vscode-config plugin -date: 2024-02-19 +date: 2024-02-22 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/managed-vscode-config'] --- import kbnManagedVscodeConfigObj from './kbn_managed_vscode_config.devdocs.json'; diff --git a/api_docs/kbn_management_cards_navigation.devdocs.json b/api_docs/kbn_management_cards_navigation.devdocs.json index c9b4bf1d5b9d1..77649410b82bf 100644 --- a/api_docs/kbn_management_cards_navigation.devdocs.json +++ b/api_docs/kbn_management_cards_navigation.devdocs.json @@ -145,7 +145,7 @@ "label": "hideLinksTo", "description": [], "signature": [ - "(\"transform\" | \"tags\" | \"maintenanceWindows\" | \"settings\" | \"dataViews\" | \"filesManagement\" | \"reporting\" | \"api_keys\" | \"index_management\" | \"ingest_pipelines\" | \"jobsListLink\" | \"objects\" | \"pipelines\" | \"triggersActions\" | \"triggersActionsConnectors\")[] | undefined" + "(\"transform\" | \"tags\" | \"maintenanceWindows\" | \"settings\" | \"dataViews\" | \"filesManagement\" | \"roles\" | \"reporting\" | \"api_keys\" | \"index_management\" | \"ingest_pipelines\" | \"jobsListLink\" | \"objects\" | \"pipelines\" | \"triggersActions\" | \"triggersActionsConnectors\")[] | undefined" ], "path": "packages/kbn-management/cards_navigation/src/types.ts", "deprecated": false, @@ -196,7 +196,7 @@ "label": "AppId", "description": [], "signature": [ - "\"transform\" | \"tags\" | \"maintenanceWindows\" | \"settings\" | \"dataViews\" | \"filesManagement\" | \"reporting\" | \"api_keys\" | \"index_management\" | \"ingest_pipelines\" | \"jobsListLink\" | \"objects\" | \"pipelines\" | \"triggersActions\" | \"triggersActionsConnectors\"" + "\"transform\" | \"tags\" | \"maintenanceWindows\" | \"settings\" | \"dataViews\" | \"filesManagement\" | \"roles\" | \"reporting\" | \"api_keys\" | \"index_management\" | \"ingest_pipelines\" | \"jobsListLink\" | \"objects\" | \"pipelines\" | \"triggersActions\" | \"triggersActionsConnectors\"" ], "path": "packages/kbn-management/cards_navigation/src/types.ts", "deprecated": false, diff --git a/api_docs/kbn_management_cards_navigation.mdx b/api_docs/kbn_management_cards_navigation.mdx index 6a265e32c4a24..6daf1d99e5bc3 100644 --- a/api_docs/kbn_management_cards_navigation.mdx +++ b/api_docs/kbn_management_cards_navigation.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-management-cards-navigation title: "@kbn/management-cards-navigation" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/management-cards-navigation plugin -date: 2024-02-19 +date: 2024-02-22 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/management-cards-navigation'] --- import kbnManagementCardsNavigationObj from './kbn_management_cards_navigation.devdocs.json'; diff --git a/api_docs/kbn_management_settings_application.mdx b/api_docs/kbn_management_settings_application.mdx index 70e4f59cafd9e..de650bfb59e45 100644 --- a/api_docs/kbn_management_settings_application.mdx +++ b/api_docs/kbn_management_settings_application.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-management-settings-application title: "@kbn/management-settings-application" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/management-settings-application plugin -date: 2024-02-19 +date: 2024-02-22 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/management-settings-application'] --- import kbnManagementSettingsApplicationObj from './kbn_management_settings_application.devdocs.json'; diff --git a/api_docs/kbn_management_settings_components_field_category.mdx b/api_docs/kbn_management_settings_components_field_category.mdx index 1873a65717f03..f4fbf9e7cba38 100644 --- a/api_docs/kbn_management_settings_components_field_category.mdx +++ b/api_docs/kbn_management_settings_components_field_category.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-management-settings-components-field-category title: "@kbn/management-settings-components-field-category" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/management-settings-components-field-category plugin -date: 2024-02-19 +date: 2024-02-22 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/management-settings-components-field-category'] --- import kbnManagementSettingsComponentsFieldCategoryObj from './kbn_management_settings_components_field_category.devdocs.json'; diff --git a/api_docs/kbn_management_settings_components_field_input.mdx b/api_docs/kbn_management_settings_components_field_input.mdx index e631f888bfb9f..ffe150b588c42 100644 --- a/api_docs/kbn_management_settings_components_field_input.mdx +++ b/api_docs/kbn_management_settings_components_field_input.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-management-settings-components-field-input title: "@kbn/management-settings-components-field-input" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/management-settings-components-field-input plugin -date: 2024-02-19 +date: 2024-02-22 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/management-settings-components-field-input'] --- import kbnManagementSettingsComponentsFieldInputObj from './kbn_management_settings_components_field_input.devdocs.json'; diff --git a/api_docs/kbn_management_settings_components_field_row.mdx b/api_docs/kbn_management_settings_components_field_row.mdx index 8599f3b0f40b6..9f045039e8952 100644 --- a/api_docs/kbn_management_settings_components_field_row.mdx +++ b/api_docs/kbn_management_settings_components_field_row.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-management-settings-components-field-row title: "@kbn/management-settings-components-field-row" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/management-settings-components-field-row plugin -date: 2024-02-19 +date: 2024-02-22 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/management-settings-components-field-row'] --- import kbnManagementSettingsComponentsFieldRowObj from './kbn_management_settings_components_field_row.devdocs.json'; diff --git a/api_docs/kbn_management_settings_components_form.mdx b/api_docs/kbn_management_settings_components_form.mdx index c3bf7d586b5dc..f95e5623b0616 100644 --- a/api_docs/kbn_management_settings_components_form.mdx +++ b/api_docs/kbn_management_settings_components_form.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-management-settings-components-form title: "@kbn/management-settings-components-form" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/management-settings-components-form plugin -date: 2024-02-19 +date: 2024-02-22 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/management-settings-components-form'] --- import kbnManagementSettingsComponentsFormObj from './kbn_management_settings_components_form.devdocs.json'; diff --git a/api_docs/kbn_management_settings_field_definition.mdx b/api_docs/kbn_management_settings_field_definition.mdx index 5f3c6ea964b00..196d6bbd66f03 100644 --- a/api_docs/kbn_management_settings_field_definition.mdx +++ b/api_docs/kbn_management_settings_field_definition.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-management-settings-field-definition title: "@kbn/management-settings-field-definition" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/management-settings-field-definition plugin -date: 2024-02-19 +date: 2024-02-22 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/management-settings-field-definition'] --- import kbnManagementSettingsFieldDefinitionObj from './kbn_management_settings_field_definition.devdocs.json'; diff --git a/api_docs/kbn_management_settings_ids.devdocs.json b/api_docs/kbn_management_settings_ids.devdocs.json index 88b1e4ed9b9c8..34d869a82f860 100644 --- a/api_docs/kbn_management_settings_ids.devdocs.json +++ b/api_docs/kbn_management_settings_ids.devdocs.json @@ -1567,6 +1567,23 @@ "trackAdoption": false, "initialIsOpen": false }, + { + "parentPluginId": "@kbn/management-settings-ids", + "id": "def-common.SECURITY_SOLUTION_ENABLE_ASSET_CRITICALITY_SETTING", + "type": "string", + "tags": [], + "label": "SECURITY_SOLUTION_ENABLE_ASSET_CRITICALITY_SETTING", + "description": [ + "This Kibana Advanced Setting allows users to enable/disable the Asset Criticality feature" + ], + "signature": [ + "\"securitySolution:enableAssetCriticality\"" + ], + "path": "packages/kbn-management/settings/setting_ids/index.ts", + "deprecated": false, + "trackAdoption": false, + "initialIsOpen": false + }, { "parentPluginId": "@kbn/management-settings-ids", "id": "def-common.SECURITY_SOLUTION_ENABLE_CCS_WARNING_ID", diff --git a/api_docs/kbn_management_settings_ids.mdx b/api_docs/kbn_management_settings_ids.mdx index 14f5fbdbb0791..f6f5f19b9a549 100644 --- a/api_docs/kbn_management_settings_ids.mdx +++ b/api_docs/kbn_management_settings_ids.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-management-settings-ids title: "@kbn/management-settings-ids" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/management-settings-ids plugin -date: 2024-02-19 +date: 2024-02-22 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/management-settings-ids'] --- import kbnManagementSettingsIdsObj from './kbn_management_settings_ids.devdocs.json'; @@ -21,7 +21,7 @@ Contact [@elastic/appex-sharedux @elastic/platform-deployment-management](https: | Public API count | Any count | Items lacking comments | Missing exports | |-------------------|-----------|------------------------|-----------------| -| 134 | 0 | 132 | 0 | +| 135 | 0 | 132 | 0 | ## Common diff --git a/api_docs/kbn_management_settings_section_registry.mdx b/api_docs/kbn_management_settings_section_registry.mdx index bf29b2ab8259a..32fef1848830d 100644 --- a/api_docs/kbn_management_settings_section_registry.mdx +++ b/api_docs/kbn_management_settings_section_registry.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-management-settings-section-registry title: "@kbn/management-settings-section-registry" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/management-settings-section-registry plugin -date: 2024-02-19 +date: 2024-02-22 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/management-settings-section-registry'] --- import kbnManagementSettingsSectionRegistryObj from './kbn_management_settings_section_registry.devdocs.json'; diff --git a/api_docs/kbn_management_settings_types.mdx b/api_docs/kbn_management_settings_types.mdx index d2a9644930b2e..591d7ceb1107f 100644 --- a/api_docs/kbn_management_settings_types.mdx +++ b/api_docs/kbn_management_settings_types.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-management-settings-types title: "@kbn/management-settings-types" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/management-settings-types plugin -date: 2024-02-19 +date: 2024-02-22 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/management-settings-types'] --- import kbnManagementSettingsTypesObj from './kbn_management_settings_types.devdocs.json'; diff --git a/api_docs/kbn_management_settings_utilities.mdx b/api_docs/kbn_management_settings_utilities.mdx index ce9de47412497..832e1b8a2cc0f 100644 --- a/api_docs/kbn_management_settings_utilities.mdx +++ b/api_docs/kbn_management_settings_utilities.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-management-settings-utilities title: "@kbn/management-settings-utilities" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/management-settings-utilities plugin -date: 2024-02-19 +date: 2024-02-22 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/management-settings-utilities'] --- import kbnManagementSettingsUtilitiesObj from './kbn_management_settings_utilities.devdocs.json'; diff --git a/api_docs/kbn_management_storybook_config.mdx b/api_docs/kbn_management_storybook_config.mdx index 81114996229d7..0b341aa4f44e4 100644 --- a/api_docs/kbn_management_storybook_config.mdx +++ b/api_docs/kbn_management_storybook_config.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-management-storybook-config title: "@kbn/management-storybook-config" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/management-storybook-config plugin -date: 2024-02-19 +date: 2024-02-22 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/management-storybook-config'] --- import kbnManagementStorybookConfigObj from './kbn_management_storybook_config.devdocs.json'; diff --git a/api_docs/kbn_mapbox_gl.mdx b/api_docs/kbn_mapbox_gl.mdx index bac9951cdd1f7..c041da792c3f5 100644 --- a/api_docs/kbn_mapbox_gl.mdx +++ b/api_docs/kbn_mapbox_gl.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-mapbox-gl title: "@kbn/mapbox-gl" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/mapbox-gl plugin -date: 2024-02-19 +date: 2024-02-22 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/mapbox-gl'] --- import kbnMapboxGlObj from './kbn_mapbox_gl.devdocs.json'; diff --git a/api_docs/kbn_maps_vector_tile_utils.mdx b/api_docs/kbn_maps_vector_tile_utils.mdx index 780db309ff0c0..ccc58447f657f 100644 --- a/api_docs/kbn_maps_vector_tile_utils.mdx +++ b/api_docs/kbn_maps_vector_tile_utils.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-maps-vector-tile-utils title: "@kbn/maps-vector-tile-utils" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/maps-vector-tile-utils plugin -date: 2024-02-19 +date: 2024-02-22 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/maps-vector-tile-utils'] --- import kbnMapsVectorTileUtilsObj from './kbn_maps_vector_tile_utils.devdocs.json'; diff --git a/api_docs/kbn_ml_agg_utils.mdx b/api_docs/kbn_ml_agg_utils.mdx index cee2f51f3a1f8..e45a4f174ec16 100644 --- a/api_docs/kbn_ml_agg_utils.mdx +++ b/api_docs/kbn_ml_agg_utils.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-ml-agg-utils title: "@kbn/ml-agg-utils" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/ml-agg-utils plugin -date: 2024-02-19 +date: 2024-02-22 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/ml-agg-utils'] --- import kbnMlAggUtilsObj from './kbn_ml_agg_utils.devdocs.json'; diff --git a/api_docs/kbn_ml_anomaly_utils.mdx b/api_docs/kbn_ml_anomaly_utils.mdx index 301e7b871c2bb..efaf13d1d47b8 100644 --- a/api_docs/kbn_ml_anomaly_utils.mdx +++ b/api_docs/kbn_ml_anomaly_utils.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-ml-anomaly-utils title: "@kbn/ml-anomaly-utils" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/ml-anomaly-utils plugin -date: 2024-02-19 +date: 2024-02-22 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/ml-anomaly-utils'] --- import kbnMlAnomalyUtilsObj from './kbn_ml_anomaly_utils.devdocs.json'; diff --git a/api_docs/kbn_ml_cancellable_search.mdx b/api_docs/kbn_ml_cancellable_search.mdx index 8169ddf3b98af..5cee05b0a55dc 100644 --- a/api_docs/kbn_ml_cancellable_search.mdx +++ b/api_docs/kbn_ml_cancellable_search.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-ml-cancellable-search title: "@kbn/ml-cancellable-search" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/ml-cancellable-search plugin -date: 2024-02-19 +date: 2024-02-22 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/ml-cancellable-search'] --- import kbnMlCancellableSearchObj from './kbn_ml_cancellable_search.devdocs.json'; diff --git a/api_docs/kbn_ml_category_validator.mdx b/api_docs/kbn_ml_category_validator.mdx index 7a629ac7c293d..061211b885f87 100644 --- a/api_docs/kbn_ml_category_validator.mdx +++ b/api_docs/kbn_ml_category_validator.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-ml-category-validator title: "@kbn/ml-category-validator" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/ml-category-validator plugin -date: 2024-02-19 +date: 2024-02-22 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/ml-category-validator'] --- import kbnMlCategoryValidatorObj from './kbn_ml_category_validator.devdocs.json'; diff --git a/api_docs/kbn_ml_chi2test.mdx b/api_docs/kbn_ml_chi2test.mdx index 1b18769161822..6074958ab1466 100644 --- a/api_docs/kbn_ml_chi2test.mdx +++ b/api_docs/kbn_ml_chi2test.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-ml-chi2test title: "@kbn/ml-chi2test" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/ml-chi2test plugin -date: 2024-02-19 +date: 2024-02-22 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/ml-chi2test'] --- import kbnMlChi2testObj from './kbn_ml_chi2test.devdocs.json'; diff --git a/api_docs/kbn_ml_data_frame_analytics_utils.mdx b/api_docs/kbn_ml_data_frame_analytics_utils.mdx index bc251e942f943..6a73d33efca93 100644 --- a/api_docs/kbn_ml_data_frame_analytics_utils.mdx +++ b/api_docs/kbn_ml_data_frame_analytics_utils.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-ml-data-frame-analytics-utils title: "@kbn/ml-data-frame-analytics-utils" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/ml-data-frame-analytics-utils plugin -date: 2024-02-19 +date: 2024-02-22 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/ml-data-frame-analytics-utils'] --- import kbnMlDataFrameAnalyticsUtilsObj from './kbn_ml_data_frame_analytics_utils.devdocs.json'; diff --git a/api_docs/kbn_ml_data_grid.mdx b/api_docs/kbn_ml_data_grid.mdx index b258a9fa4d26e..38a0ce610dc99 100644 --- a/api_docs/kbn_ml_data_grid.mdx +++ b/api_docs/kbn_ml_data_grid.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-ml-data-grid title: "@kbn/ml-data-grid" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/ml-data-grid plugin -date: 2024-02-19 +date: 2024-02-22 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/ml-data-grid'] --- import kbnMlDataGridObj from './kbn_ml_data_grid.devdocs.json'; diff --git a/api_docs/kbn_ml_date_picker.mdx b/api_docs/kbn_ml_date_picker.mdx index 3ff1bf3d39960..f9afd814adabd 100644 --- a/api_docs/kbn_ml_date_picker.mdx +++ b/api_docs/kbn_ml_date_picker.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-ml-date-picker title: "@kbn/ml-date-picker" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/ml-date-picker plugin -date: 2024-02-19 +date: 2024-02-22 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/ml-date-picker'] --- import kbnMlDatePickerObj from './kbn_ml_date_picker.devdocs.json'; diff --git a/api_docs/kbn_ml_date_utils.mdx b/api_docs/kbn_ml_date_utils.mdx index c772419bb3813..68ebcb16ac3b4 100644 --- a/api_docs/kbn_ml_date_utils.mdx +++ b/api_docs/kbn_ml_date_utils.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-ml-date-utils title: "@kbn/ml-date-utils" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/ml-date-utils plugin -date: 2024-02-19 +date: 2024-02-22 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/ml-date-utils'] --- import kbnMlDateUtilsObj from './kbn_ml_date_utils.devdocs.json'; diff --git a/api_docs/kbn_ml_error_utils.mdx b/api_docs/kbn_ml_error_utils.mdx index ddce3387051f7..6a4f7c7799f98 100644 --- a/api_docs/kbn_ml_error_utils.mdx +++ b/api_docs/kbn_ml_error_utils.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-ml-error-utils title: "@kbn/ml-error-utils" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/ml-error-utils plugin -date: 2024-02-19 +date: 2024-02-22 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/ml-error-utils'] --- import kbnMlErrorUtilsObj from './kbn_ml_error_utils.devdocs.json'; diff --git a/api_docs/kbn_ml_in_memory_table.mdx b/api_docs/kbn_ml_in_memory_table.mdx index b36c969bd24ce..6ec8f9ac347bd 100644 --- a/api_docs/kbn_ml_in_memory_table.mdx +++ b/api_docs/kbn_ml_in_memory_table.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-ml-in-memory-table title: "@kbn/ml-in-memory-table" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/ml-in-memory-table plugin -date: 2024-02-19 +date: 2024-02-22 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/ml-in-memory-table'] --- import kbnMlInMemoryTableObj from './kbn_ml_in_memory_table.devdocs.json'; diff --git a/api_docs/kbn_ml_is_defined.mdx b/api_docs/kbn_ml_is_defined.mdx index 570af20f9546e..18bf398e93d97 100644 --- a/api_docs/kbn_ml_is_defined.mdx +++ b/api_docs/kbn_ml_is_defined.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-ml-is-defined title: "@kbn/ml-is-defined" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/ml-is-defined plugin -date: 2024-02-19 +date: 2024-02-22 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/ml-is-defined'] --- import kbnMlIsDefinedObj from './kbn_ml_is_defined.devdocs.json'; diff --git a/api_docs/kbn_ml_is_populated_object.mdx b/api_docs/kbn_ml_is_populated_object.mdx index de1a96623b5ff..23e1d60e54f07 100644 --- a/api_docs/kbn_ml_is_populated_object.mdx +++ b/api_docs/kbn_ml_is_populated_object.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-ml-is-populated-object title: "@kbn/ml-is-populated-object" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/ml-is-populated-object plugin -date: 2024-02-19 +date: 2024-02-22 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/ml-is-populated-object'] --- import kbnMlIsPopulatedObjectObj from './kbn_ml_is_populated_object.devdocs.json'; diff --git a/api_docs/kbn_ml_kibana_theme.mdx b/api_docs/kbn_ml_kibana_theme.mdx index 3ad54b6ee3c64..97dda2043629d 100644 --- a/api_docs/kbn_ml_kibana_theme.mdx +++ b/api_docs/kbn_ml_kibana_theme.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-ml-kibana-theme title: "@kbn/ml-kibana-theme" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/ml-kibana-theme plugin -date: 2024-02-19 +date: 2024-02-22 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/ml-kibana-theme'] --- import kbnMlKibanaThemeObj from './kbn_ml_kibana_theme.devdocs.json'; diff --git a/api_docs/kbn_ml_local_storage.mdx b/api_docs/kbn_ml_local_storage.mdx index d026e9f692962..795bd23a06b01 100644 --- a/api_docs/kbn_ml_local_storage.mdx +++ b/api_docs/kbn_ml_local_storage.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-ml-local-storage title: "@kbn/ml-local-storage" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/ml-local-storage plugin -date: 2024-02-19 +date: 2024-02-22 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/ml-local-storage'] --- import kbnMlLocalStorageObj from './kbn_ml_local_storage.devdocs.json'; diff --git a/api_docs/kbn_ml_nested_property.mdx b/api_docs/kbn_ml_nested_property.mdx index 8964f624e0001..d1eb75fd6c0c8 100644 --- a/api_docs/kbn_ml_nested_property.mdx +++ b/api_docs/kbn_ml_nested_property.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-ml-nested-property title: "@kbn/ml-nested-property" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/ml-nested-property plugin -date: 2024-02-19 +date: 2024-02-22 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/ml-nested-property'] --- import kbnMlNestedPropertyObj from './kbn_ml_nested_property.devdocs.json'; diff --git a/api_docs/kbn_ml_number_utils.mdx b/api_docs/kbn_ml_number_utils.mdx index ba92df63ec931..ad75d46967962 100644 --- a/api_docs/kbn_ml_number_utils.mdx +++ b/api_docs/kbn_ml_number_utils.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-ml-number-utils title: "@kbn/ml-number-utils" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/ml-number-utils plugin -date: 2024-02-19 +date: 2024-02-22 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/ml-number-utils'] --- import kbnMlNumberUtilsObj from './kbn_ml_number_utils.devdocs.json'; diff --git a/api_docs/kbn_ml_query_utils.mdx b/api_docs/kbn_ml_query_utils.mdx index cee09bf974c6d..92e1240a98690 100644 --- a/api_docs/kbn_ml_query_utils.mdx +++ b/api_docs/kbn_ml_query_utils.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-ml-query-utils title: "@kbn/ml-query-utils" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/ml-query-utils plugin -date: 2024-02-19 +date: 2024-02-22 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/ml-query-utils'] --- import kbnMlQueryUtilsObj from './kbn_ml_query_utils.devdocs.json'; diff --git a/api_docs/kbn_ml_random_sampler_utils.mdx b/api_docs/kbn_ml_random_sampler_utils.mdx index 0cbd45d0d747b..1ce6d49d2e99c 100644 --- a/api_docs/kbn_ml_random_sampler_utils.mdx +++ b/api_docs/kbn_ml_random_sampler_utils.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-ml-random-sampler-utils title: "@kbn/ml-random-sampler-utils" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/ml-random-sampler-utils plugin -date: 2024-02-19 +date: 2024-02-22 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/ml-random-sampler-utils'] --- import kbnMlRandomSamplerUtilsObj from './kbn_ml_random_sampler_utils.devdocs.json'; diff --git a/api_docs/kbn_ml_route_utils.mdx b/api_docs/kbn_ml_route_utils.mdx index 2e0ae4315c456..767ea1623a8de 100644 --- a/api_docs/kbn_ml_route_utils.mdx +++ b/api_docs/kbn_ml_route_utils.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-ml-route-utils title: "@kbn/ml-route-utils" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/ml-route-utils plugin -date: 2024-02-19 +date: 2024-02-22 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/ml-route-utils'] --- import kbnMlRouteUtilsObj from './kbn_ml_route_utils.devdocs.json'; diff --git a/api_docs/kbn_ml_runtime_field_utils.mdx b/api_docs/kbn_ml_runtime_field_utils.mdx index 147ee1e2286e9..a69eef6e7ddc6 100644 --- a/api_docs/kbn_ml_runtime_field_utils.mdx +++ b/api_docs/kbn_ml_runtime_field_utils.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-ml-runtime-field-utils title: "@kbn/ml-runtime-field-utils" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/ml-runtime-field-utils plugin -date: 2024-02-19 +date: 2024-02-22 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/ml-runtime-field-utils'] --- import kbnMlRuntimeFieldUtilsObj from './kbn_ml_runtime_field_utils.devdocs.json'; diff --git a/api_docs/kbn_ml_string_hash.mdx b/api_docs/kbn_ml_string_hash.mdx index df4e0e53e68c0..abf96a5bb4276 100644 --- a/api_docs/kbn_ml_string_hash.mdx +++ b/api_docs/kbn_ml_string_hash.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-ml-string-hash title: "@kbn/ml-string-hash" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/ml-string-hash plugin -date: 2024-02-19 +date: 2024-02-22 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/ml-string-hash'] --- import kbnMlStringHashObj from './kbn_ml_string_hash.devdocs.json'; diff --git a/api_docs/kbn_ml_trained_models_utils.mdx b/api_docs/kbn_ml_trained_models_utils.mdx index da31f994dfd5f..98a4054c01b22 100644 --- a/api_docs/kbn_ml_trained_models_utils.mdx +++ b/api_docs/kbn_ml_trained_models_utils.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-ml-trained-models-utils title: "@kbn/ml-trained-models-utils" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/ml-trained-models-utils plugin -date: 2024-02-19 +date: 2024-02-22 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/ml-trained-models-utils'] --- import kbnMlTrainedModelsUtilsObj from './kbn_ml_trained_models_utils.devdocs.json'; diff --git a/api_docs/kbn_ml_ui_actions.mdx b/api_docs/kbn_ml_ui_actions.mdx index e0039aa9c2a0d..8de83eb7655d0 100644 --- a/api_docs/kbn_ml_ui_actions.mdx +++ b/api_docs/kbn_ml_ui_actions.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-ml-ui-actions title: "@kbn/ml-ui-actions" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/ml-ui-actions plugin -date: 2024-02-19 +date: 2024-02-22 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/ml-ui-actions'] --- import kbnMlUiActionsObj from './kbn_ml_ui_actions.devdocs.json'; diff --git a/api_docs/kbn_ml_url_state.mdx b/api_docs/kbn_ml_url_state.mdx index 06ff66d16cc22..d749d4e36e214 100644 --- a/api_docs/kbn_ml_url_state.mdx +++ b/api_docs/kbn_ml_url_state.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-ml-url-state title: "@kbn/ml-url-state" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/ml-url-state plugin -date: 2024-02-19 +date: 2024-02-22 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/ml-url-state'] --- import kbnMlUrlStateObj from './kbn_ml_url_state.devdocs.json'; diff --git a/api_docs/kbn_mock_idp_utils.mdx b/api_docs/kbn_mock_idp_utils.mdx index 350879f89a3e1..3ace3de681415 100644 --- a/api_docs/kbn_mock_idp_utils.mdx +++ b/api_docs/kbn_mock_idp_utils.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-mock-idp-utils title: "@kbn/mock-idp-utils" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/mock-idp-utils plugin -date: 2024-02-19 +date: 2024-02-22 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/mock-idp-utils'] --- import kbnMockIdpUtilsObj from './kbn_mock_idp_utils.devdocs.json'; diff --git a/api_docs/kbn_monaco.devdocs.json b/api_docs/kbn_monaco.devdocs.json index 0b76ee4395f47..e3ab9d27a3d3f 100644 --- a/api_docs/kbn_monaco.devdocs.json +++ b/api_docs/kbn_monaco.devdocs.json @@ -1079,6 +1079,21 @@ ], "enums": [], "misc": [ + { + "parentPluginId": "@kbn/monaco", + "id": "def-common.CONSOLE_LANG_ID", + "type": "string", + "tags": [], + "label": "CONSOLE_LANG_ID", + "description": [], + "signature": [ + "\"console\"" + ], + "path": "packages/kbn-monaco/src/console/constants.ts", + "deprecated": false, + "trackAdoption": false, + "initialIsOpen": false + }, { "parentPluginId": "@kbn/monaco", "id": "def-common.ESQL_LANG_ID", diff --git a/api_docs/kbn_monaco.mdx b/api_docs/kbn_monaco.mdx index 09f5ee2600b8b..fae8841ee41a0 100644 --- a/api_docs/kbn_monaco.mdx +++ b/api_docs/kbn_monaco.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-monaco title: "@kbn/monaco" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/monaco plugin -date: 2024-02-19 +date: 2024-02-22 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/monaco'] --- import kbnMonacoObj from './kbn_monaco.devdocs.json'; @@ -21,7 +21,7 @@ Contact [@elastic/appex-sharedux](https://github.com/orgs/elastic/teams/appex-sh | Public API count | Any count | Items lacking comments | Missing exports | |-------------------|-----------|------------------------|-----------------| -| 105 | 0 | 105 | 2 | +| 106 | 0 | 106 | 2 | ## Common diff --git a/api_docs/kbn_object_versioning.mdx b/api_docs/kbn_object_versioning.mdx index 316a63022248b..156832f78e40c 100644 --- a/api_docs/kbn_object_versioning.mdx +++ b/api_docs/kbn_object_versioning.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-object-versioning title: "@kbn/object-versioning" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/object-versioning plugin -date: 2024-02-19 +date: 2024-02-22 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/object-versioning'] --- import kbnObjectVersioningObj from './kbn_object_versioning.devdocs.json'; diff --git a/api_docs/kbn_observability_alert_details.mdx b/api_docs/kbn_observability_alert_details.mdx index 6270785d68ef8..14e0095354695 100644 --- a/api_docs/kbn_observability_alert_details.mdx +++ b/api_docs/kbn_observability_alert_details.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-observability-alert-details title: "@kbn/observability-alert-details" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/observability-alert-details plugin -date: 2024-02-19 +date: 2024-02-22 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/observability-alert-details'] --- import kbnObservabilityAlertDetailsObj from './kbn_observability_alert_details.devdocs.json'; diff --git a/api_docs/kbn_observability_alerting_test_data.mdx b/api_docs/kbn_observability_alerting_test_data.mdx index f6873cf8e4dfc..d691a85884c2d 100644 --- a/api_docs/kbn_observability_alerting_test_data.mdx +++ b/api_docs/kbn_observability_alerting_test_data.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-observability-alerting-test-data title: "@kbn/observability-alerting-test-data" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/observability-alerting-test-data plugin -date: 2024-02-19 +date: 2024-02-22 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/observability-alerting-test-data'] --- import kbnObservabilityAlertingTestDataObj from './kbn_observability_alerting_test_data.devdocs.json'; diff --git a/api_docs/kbn_observability_get_padded_alert_time_range_util.mdx b/api_docs/kbn_observability_get_padded_alert_time_range_util.mdx index 4e383e5358c1f..9739328b52296 100644 --- a/api_docs/kbn_observability_get_padded_alert_time_range_util.mdx +++ b/api_docs/kbn_observability_get_padded_alert_time_range_util.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-observability-get-padded-alert-time-range-util title: "@kbn/observability-get-padded-alert-time-range-util" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/observability-get-padded-alert-time-range-util plugin -date: 2024-02-19 +date: 2024-02-22 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/observability-get-padded-alert-time-range-util'] --- import kbnObservabilityGetPaddedAlertTimeRangeUtilObj from './kbn_observability_get_padded_alert_time_range_util.devdocs.json'; diff --git a/api_docs/kbn_openapi_bundler.mdx b/api_docs/kbn_openapi_bundler.mdx index 5a102362e7de0..36c4c1d66ed74 100644 --- a/api_docs/kbn_openapi_bundler.mdx +++ b/api_docs/kbn_openapi_bundler.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-openapi-bundler title: "@kbn/openapi-bundler" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/openapi-bundler plugin -date: 2024-02-19 +date: 2024-02-22 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/openapi-bundler'] --- import kbnOpenapiBundlerObj from './kbn_openapi_bundler.devdocs.json'; diff --git a/api_docs/kbn_openapi_generator.mdx b/api_docs/kbn_openapi_generator.mdx index ddf20dc38cbd4..8db3f9d6817b3 100644 --- a/api_docs/kbn_openapi_generator.mdx +++ b/api_docs/kbn_openapi_generator.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-openapi-generator title: "@kbn/openapi-generator" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/openapi-generator plugin -date: 2024-02-19 +date: 2024-02-22 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/openapi-generator'] --- import kbnOpenapiGeneratorObj from './kbn_openapi_generator.devdocs.json'; diff --git a/api_docs/kbn_optimizer.mdx b/api_docs/kbn_optimizer.mdx index 2da61c10d3e16..b56ff5d00030b 100644 --- a/api_docs/kbn_optimizer.mdx +++ b/api_docs/kbn_optimizer.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-optimizer title: "@kbn/optimizer" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/optimizer plugin -date: 2024-02-19 +date: 2024-02-22 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/optimizer'] --- import kbnOptimizerObj from './kbn_optimizer.devdocs.json'; diff --git a/api_docs/kbn_optimizer_webpack_helpers.mdx b/api_docs/kbn_optimizer_webpack_helpers.mdx index e8ddef28a242b..4f9f63f834007 100644 --- a/api_docs/kbn_optimizer_webpack_helpers.mdx +++ b/api_docs/kbn_optimizer_webpack_helpers.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-optimizer-webpack-helpers title: "@kbn/optimizer-webpack-helpers" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/optimizer-webpack-helpers plugin -date: 2024-02-19 +date: 2024-02-22 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/optimizer-webpack-helpers'] --- import kbnOptimizerWebpackHelpersObj from './kbn_optimizer_webpack_helpers.devdocs.json'; diff --git a/api_docs/kbn_osquery_io_ts_types.mdx b/api_docs/kbn_osquery_io_ts_types.mdx index 27051473f18fa..985deba943159 100644 --- a/api_docs/kbn_osquery_io_ts_types.mdx +++ b/api_docs/kbn_osquery_io_ts_types.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-osquery-io-ts-types title: "@kbn/osquery-io-ts-types" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/osquery-io-ts-types plugin -date: 2024-02-19 +date: 2024-02-22 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/osquery-io-ts-types'] --- import kbnOsqueryIoTsTypesObj from './kbn_osquery_io_ts_types.devdocs.json'; diff --git a/api_docs/kbn_panel_loader.mdx b/api_docs/kbn_panel_loader.mdx index 570b77af826e6..0faa2c2d89a9f 100644 --- a/api_docs/kbn_panel_loader.mdx +++ b/api_docs/kbn_panel_loader.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-panel-loader title: "@kbn/panel-loader" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/panel-loader plugin -date: 2024-02-19 +date: 2024-02-22 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/panel-loader'] --- import kbnPanelLoaderObj from './kbn_panel_loader.devdocs.json'; diff --git a/api_docs/kbn_performance_testing_dataset_extractor.mdx b/api_docs/kbn_performance_testing_dataset_extractor.mdx index 10ff9eefd9a83..aef6d559d3513 100644 --- a/api_docs/kbn_performance_testing_dataset_extractor.mdx +++ b/api_docs/kbn_performance_testing_dataset_extractor.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-performance-testing-dataset-extractor title: "@kbn/performance-testing-dataset-extractor" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/performance-testing-dataset-extractor plugin -date: 2024-02-19 +date: 2024-02-22 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/performance-testing-dataset-extractor'] --- import kbnPerformanceTestingDatasetExtractorObj from './kbn_performance_testing_dataset_extractor.devdocs.json'; diff --git a/api_docs/kbn_plugin_check.mdx b/api_docs/kbn_plugin_check.mdx index a96f23236f8b3..b057184ba7a63 100644 --- a/api_docs/kbn_plugin_check.mdx +++ b/api_docs/kbn_plugin_check.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-plugin-check title: "@kbn/plugin-check" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/plugin-check plugin -date: 2024-02-19 +date: 2024-02-22 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/plugin-check'] --- import kbnPluginCheckObj from './kbn_plugin_check.devdocs.json'; diff --git a/api_docs/kbn_plugin_generator.mdx b/api_docs/kbn_plugin_generator.mdx index 2baf56df696b9..0122279a9ac72 100644 --- a/api_docs/kbn_plugin_generator.mdx +++ b/api_docs/kbn_plugin_generator.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-plugin-generator title: "@kbn/plugin-generator" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/plugin-generator plugin -date: 2024-02-19 +date: 2024-02-22 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/plugin-generator'] --- import kbnPluginGeneratorObj from './kbn_plugin_generator.devdocs.json'; diff --git a/api_docs/kbn_plugin_helpers.mdx b/api_docs/kbn_plugin_helpers.mdx index 27596894777c5..657ac35e221d3 100644 --- a/api_docs/kbn_plugin_helpers.mdx +++ b/api_docs/kbn_plugin_helpers.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-plugin-helpers title: "@kbn/plugin-helpers" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/plugin-helpers plugin -date: 2024-02-19 +date: 2024-02-22 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/plugin-helpers'] --- import kbnPluginHelpersObj from './kbn_plugin_helpers.devdocs.json'; diff --git a/api_docs/kbn_presentation_containers.mdx b/api_docs/kbn_presentation_containers.mdx index c74e3c36aead4..0e87e057de4e6 100644 --- a/api_docs/kbn_presentation_containers.mdx +++ b/api_docs/kbn_presentation_containers.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-presentation-containers title: "@kbn/presentation-containers" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/presentation-containers plugin -date: 2024-02-19 +date: 2024-02-22 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/presentation-containers'] --- import kbnPresentationContainersObj from './kbn_presentation_containers.devdocs.json'; diff --git a/api_docs/kbn_presentation_library.mdx b/api_docs/kbn_presentation_library.mdx index aee063b05ad99..2e5099ef0877c 100644 --- a/api_docs/kbn_presentation_library.mdx +++ b/api_docs/kbn_presentation_library.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-presentation-library title: "@kbn/presentation-library" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/presentation-library plugin -date: 2024-02-19 +date: 2024-02-22 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/presentation-library'] --- import kbnPresentationLibraryObj from './kbn_presentation_library.devdocs.json'; diff --git a/api_docs/kbn_presentation_publishing.mdx b/api_docs/kbn_presentation_publishing.mdx index b2cba6c51ac3b..9e35068be22ff 100644 --- a/api_docs/kbn_presentation_publishing.mdx +++ b/api_docs/kbn_presentation_publishing.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-presentation-publishing title: "@kbn/presentation-publishing" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/presentation-publishing plugin -date: 2024-02-19 +date: 2024-02-22 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/presentation-publishing'] --- import kbnPresentationPublishingObj from './kbn_presentation_publishing.devdocs.json'; diff --git a/api_docs/kbn_profiling_utils.mdx b/api_docs/kbn_profiling_utils.mdx index 85648faeaffe7..297970291164e 100644 --- a/api_docs/kbn_profiling_utils.mdx +++ b/api_docs/kbn_profiling_utils.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-profiling-utils title: "@kbn/profiling-utils" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/profiling-utils plugin -date: 2024-02-19 +date: 2024-02-22 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/profiling-utils'] --- import kbnProfilingUtilsObj from './kbn_profiling_utils.devdocs.json'; diff --git a/api_docs/kbn_random_sampling.mdx b/api_docs/kbn_random_sampling.mdx index f03415dc01ba7..ae56052e456e7 100644 --- a/api_docs/kbn_random_sampling.mdx +++ b/api_docs/kbn_random_sampling.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-random-sampling title: "@kbn/random-sampling" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/random-sampling plugin -date: 2024-02-19 +date: 2024-02-22 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/random-sampling'] --- import kbnRandomSamplingObj from './kbn_random_sampling.devdocs.json'; diff --git a/api_docs/kbn_react_field.mdx b/api_docs/kbn_react_field.mdx index cbb02cf4e59ba..8dcd42f5b72ba 100644 --- a/api_docs/kbn_react_field.mdx +++ b/api_docs/kbn_react_field.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-react-field title: "@kbn/react-field" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/react-field plugin -date: 2024-02-19 +date: 2024-02-22 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/react-field'] --- import kbnReactFieldObj from './kbn_react_field.devdocs.json'; diff --git a/api_docs/kbn_react_kibana_context_common.mdx b/api_docs/kbn_react_kibana_context_common.mdx index c7d35c10daabb..5efa7f9665526 100644 --- a/api_docs/kbn_react_kibana_context_common.mdx +++ b/api_docs/kbn_react_kibana_context_common.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-react-kibana-context-common title: "@kbn/react-kibana-context-common" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/react-kibana-context-common plugin -date: 2024-02-19 +date: 2024-02-22 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/react-kibana-context-common'] --- import kbnReactKibanaContextCommonObj from './kbn_react_kibana_context_common.devdocs.json'; diff --git a/api_docs/kbn_react_kibana_context_render.mdx b/api_docs/kbn_react_kibana_context_render.mdx index 7aec9ef563396..3e27eeff36133 100644 --- a/api_docs/kbn_react_kibana_context_render.mdx +++ b/api_docs/kbn_react_kibana_context_render.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-react-kibana-context-render title: "@kbn/react-kibana-context-render" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/react-kibana-context-render plugin -date: 2024-02-19 +date: 2024-02-22 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/react-kibana-context-render'] --- import kbnReactKibanaContextRenderObj from './kbn_react_kibana_context_render.devdocs.json'; diff --git a/api_docs/kbn_react_kibana_context_root.mdx b/api_docs/kbn_react_kibana_context_root.mdx index ef44c8a85029f..e5523e6a06277 100644 --- a/api_docs/kbn_react_kibana_context_root.mdx +++ b/api_docs/kbn_react_kibana_context_root.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-react-kibana-context-root title: "@kbn/react-kibana-context-root" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/react-kibana-context-root plugin -date: 2024-02-19 +date: 2024-02-22 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/react-kibana-context-root'] --- import kbnReactKibanaContextRootObj from './kbn_react_kibana_context_root.devdocs.json'; diff --git a/api_docs/kbn_react_kibana_context_styled.mdx b/api_docs/kbn_react_kibana_context_styled.mdx index 5c0a43c1fddf4..4c0bd3090b222 100644 --- a/api_docs/kbn_react_kibana_context_styled.mdx +++ b/api_docs/kbn_react_kibana_context_styled.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-react-kibana-context-styled title: "@kbn/react-kibana-context-styled" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/react-kibana-context-styled plugin -date: 2024-02-19 +date: 2024-02-22 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/react-kibana-context-styled'] --- import kbnReactKibanaContextStyledObj from './kbn_react_kibana_context_styled.devdocs.json'; diff --git a/api_docs/kbn_react_kibana_context_theme.mdx b/api_docs/kbn_react_kibana_context_theme.mdx index daeb515005474..d3692febb5073 100644 --- a/api_docs/kbn_react_kibana_context_theme.mdx +++ b/api_docs/kbn_react_kibana_context_theme.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-react-kibana-context-theme title: "@kbn/react-kibana-context-theme" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/react-kibana-context-theme plugin -date: 2024-02-19 +date: 2024-02-22 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/react-kibana-context-theme'] --- import kbnReactKibanaContextThemeObj from './kbn_react_kibana_context_theme.devdocs.json'; diff --git a/api_docs/kbn_react_kibana_mount.mdx b/api_docs/kbn_react_kibana_mount.mdx index 8b27b4d8c6840..7087a565d8b30 100644 --- a/api_docs/kbn_react_kibana_mount.mdx +++ b/api_docs/kbn_react_kibana_mount.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-react-kibana-mount title: "@kbn/react-kibana-mount" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/react-kibana-mount plugin -date: 2024-02-19 +date: 2024-02-22 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/react-kibana-mount'] --- import kbnReactKibanaMountObj from './kbn_react_kibana_mount.devdocs.json'; diff --git a/api_docs/kbn_repo_file_maps.mdx b/api_docs/kbn_repo_file_maps.mdx index ced58555ad2a4..f884d24f4f9d6 100644 --- a/api_docs/kbn_repo_file_maps.mdx +++ b/api_docs/kbn_repo_file_maps.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-repo-file-maps title: "@kbn/repo-file-maps" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/repo-file-maps plugin -date: 2024-02-19 +date: 2024-02-22 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/repo-file-maps'] --- import kbnRepoFileMapsObj from './kbn_repo_file_maps.devdocs.json'; diff --git a/api_docs/kbn_repo_linter.mdx b/api_docs/kbn_repo_linter.mdx index 4eb20ee8ec64e..f214a2865ed36 100644 --- a/api_docs/kbn_repo_linter.mdx +++ b/api_docs/kbn_repo_linter.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-repo-linter title: "@kbn/repo-linter" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/repo-linter plugin -date: 2024-02-19 +date: 2024-02-22 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/repo-linter'] --- import kbnRepoLinterObj from './kbn_repo_linter.devdocs.json'; diff --git a/api_docs/kbn_repo_path.mdx b/api_docs/kbn_repo_path.mdx index 7732388ea6e9a..a7ad5e0b3a84f 100644 --- a/api_docs/kbn_repo_path.mdx +++ b/api_docs/kbn_repo_path.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-repo-path title: "@kbn/repo-path" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/repo-path plugin -date: 2024-02-19 +date: 2024-02-22 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/repo-path'] --- import kbnRepoPathObj from './kbn_repo_path.devdocs.json'; diff --git a/api_docs/kbn_repo_source_classifier.mdx b/api_docs/kbn_repo_source_classifier.mdx index ece304ba06b7e..f9b7541030001 100644 --- a/api_docs/kbn_repo_source_classifier.mdx +++ b/api_docs/kbn_repo_source_classifier.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-repo-source-classifier title: "@kbn/repo-source-classifier" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/repo-source-classifier plugin -date: 2024-02-19 +date: 2024-02-22 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/repo-source-classifier'] --- import kbnRepoSourceClassifierObj from './kbn_repo_source_classifier.devdocs.json'; diff --git a/api_docs/kbn_reporting_common.mdx b/api_docs/kbn_reporting_common.mdx index f658949cc58e6..1b443eb3f0b82 100644 --- a/api_docs/kbn_reporting_common.mdx +++ b/api_docs/kbn_reporting_common.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-reporting-common title: "@kbn/reporting-common" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/reporting-common plugin -date: 2024-02-19 +date: 2024-02-22 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/reporting-common'] --- import kbnReportingCommonObj from './kbn_reporting_common.devdocs.json'; diff --git a/api_docs/kbn_reporting_export_types_csv.mdx b/api_docs/kbn_reporting_export_types_csv.mdx index 3e4d90ffc8516..3762e073c0a5a 100644 --- a/api_docs/kbn_reporting_export_types_csv.mdx +++ b/api_docs/kbn_reporting_export_types_csv.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-reporting-export-types-csv title: "@kbn/reporting-export-types-csv" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/reporting-export-types-csv plugin -date: 2024-02-19 +date: 2024-02-22 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/reporting-export-types-csv'] --- import kbnReportingExportTypesCsvObj from './kbn_reporting_export_types_csv.devdocs.json'; diff --git a/api_docs/kbn_reporting_export_types_csv_common.mdx b/api_docs/kbn_reporting_export_types_csv_common.mdx index 12c031cbf383a..7e8663d628a64 100644 --- a/api_docs/kbn_reporting_export_types_csv_common.mdx +++ b/api_docs/kbn_reporting_export_types_csv_common.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-reporting-export-types-csv-common title: "@kbn/reporting-export-types-csv-common" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/reporting-export-types-csv-common plugin -date: 2024-02-19 +date: 2024-02-22 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/reporting-export-types-csv-common'] --- import kbnReportingExportTypesCsvCommonObj from './kbn_reporting_export_types_csv_common.devdocs.json'; diff --git a/api_docs/kbn_reporting_export_types_pdf.mdx b/api_docs/kbn_reporting_export_types_pdf.mdx index 0f368f07bbcda..bba7988c7b4a0 100644 --- a/api_docs/kbn_reporting_export_types_pdf.mdx +++ b/api_docs/kbn_reporting_export_types_pdf.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-reporting-export-types-pdf title: "@kbn/reporting-export-types-pdf" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/reporting-export-types-pdf plugin -date: 2024-02-19 +date: 2024-02-22 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/reporting-export-types-pdf'] --- import kbnReportingExportTypesPdfObj from './kbn_reporting_export_types_pdf.devdocs.json'; diff --git a/api_docs/kbn_reporting_export_types_pdf_common.mdx b/api_docs/kbn_reporting_export_types_pdf_common.mdx index 9445e21bb6dc8..615ee6010da14 100644 --- a/api_docs/kbn_reporting_export_types_pdf_common.mdx +++ b/api_docs/kbn_reporting_export_types_pdf_common.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-reporting-export-types-pdf-common title: "@kbn/reporting-export-types-pdf-common" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/reporting-export-types-pdf-common plugin -date: 2024-02-19 +date: 2024-02-22 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/reporting-export-types-pdf-common'] --- import kbnReportingExportTypesPdfCommonObj from './kbn_reporting_export_types_pdf_common.devdocs.json'; diff --git a/api_docs/kbn_reporting_export_types_png.mdx b/api_docs/kbn_reporting_export_types_png.mdx index c917534a6ee72..e3f306d3b288e 100644 --- a/api_docs/kbn_reporting_export_types_png.mdx +++ b/api_docs/kbn_reporting_export_types_png.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-reporting-export-types-png title: "@kbn/reporting-export-types-png" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/reporting-export-types-png plugin -date: 2024-02-19 +date: 2024-02-22 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/reporting-export-types-png'] --- import kbnReportingExportTypesPngObj from './kbn_reporting_export_types_png.devdocs.json'; diff --git a/api_docs/kbn_reporting_export_types_png_common.mdx b/api_docs/kbn_reporting_export_types_png_common.mdx index 0018060e196d7..135e20f5f20d6 100644 --- a/api_docs/kbn_reporting_export_types_png_common.mdx +++ b/api_docs/kbn_reporting_export_types_png_common.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-reporting-export-types-png-common title: "@kbn/reporting-export-types-png-common" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/reporting-export-types-png-common plugin -date: 2024-02-19 +date: 2024-02-22 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/reporting-export-types-png-common'] --- import kbnReportingExportTypesPngCommonObj from './kbn_reporting_export_types_png_common.devdocs.json'; diff --git a/api_docs/kbn_reporting_mocks_server.mdx b/api_docs/kbn_reporting_mocks_server.mdx index d8b663c989d11..f3084432defee 100644 --- a/api_docs/kbn_reporting_mocks_server.mdx +++ b/api_docs/kbn_reporting_mocks_server.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-reporting-mocks-server title: "@kbn/reporting-mocks-server" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/reporting-mocks-server plugin -date: 2024-02-19 +date: 2024-02-22 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/reporting-mocks-server'] --- import kbnReportingMocksServerObj from './kbn_reporting_mocks_server.devdocs.json'; diff --git a/api_docs/kbn_reporting_public.mdx b/api_docs/kbn_reporting_public.mdx index 1cece9c8418d4..e757e400953c6 100644 --- a/api_docs/kbn_reporting_public.mdx +++ b/api_docs/kbn_reporting_public.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-reporting-public title: "@kbn/reporting-public" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/reporting-public plugin -date: 2024-02-19 +date: 2024-02-22 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/reporting-public'] --- import kbnReportingPublicObj from './kbn_reporting_public.devdocs.json'; diff --git a/api_docs/kbn_reporting_server.mdx b/api_docs/kbn_reporting_server.mdx index eae04a0a35d3c..f0f3ddd86fbb4 100644 --- a/api_docs/kbn_reporting_server.mdx +++ b/api_docs/kbn_reporting_server.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-reporting-server title: "@kbn/reporting-server" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/reporting-server plugin -date: 2024-02-19 +date: 2024-02-22 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/reporting-server'] --- import kbnReportingServerObj from './kbn_reporting_server.devdocs.json'; diff --git a/api_docs/kbn_resizable_layout.mdx b/api_docs/kbn_resizable_layout.mdx index 330754a1bf764..f0461b062976f 100644 --- a/api_docs/kbn_resizable_layout.mdx +++ b/api_docs/kbn_resizable_layout.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-resizable-layout title: "@kbn/resizable-layout" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/resizable-layout plugin -date: 2024-02-19 +date: 2024-02-22 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/resizable-layout'] --- import kbnResizableLayoutObj from './kbn_resizable_layout.devdocs.json'; diff --git a/api_docs/kbn_rison.mdx b/api_docs/kbn_rison.mdx index 2e8dfa4feebb5..f6d2296065b78 100644 --- a/api_docs/kbn_rison.mdx +++ b/api_docs/kbn_rison.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-rison title: "@kbn/rison" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/rison plugin -date: 2024-02-19 +date: 2024-02-22 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/rison'] --- import kbnRisonObj from './kbn_rison.devdocs.json'; diff --git a/api_docs/kbn_router_utils.mdx b/api_docs/kbn_router_utils.mdx index 2cfb7736c15d2..bf18f6211bc63 100644 --- a/api_docs/kbn_router_utils.mdx +++ b/api_docs/kbn_router_utils.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-router-utils title: "@kbn/router-utils" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/router-utils plugin -date: 2024-02-19 +date: 2024-02-22 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/router-utils'] --- import kbnRouterUtilsObj from './kbn_router_utils.devdocs.json'; diff --git a/api_docs/kbn_rrule.mdx b/api_docs/kbn_rrule.mdx index 9e8587b921516..733cafbca4846 100644 --- a/api_docs/kbn_rrule.mdx +++ b/api_docs/kbn_rrule.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-rrule title: "@kbn/rrule" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/rrule plugin -date: 2024-02-19 +date: 2024-02-22 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/rrule'] --- import kbnRruleObj from './kbn_rrule.devdocs.json'; diff --git a/api_docs/kbn_rule_data_utils.mdx b/api_docs/kbn_rule_data_utils.mdx index fc08607c82d89..98b5919e764d5 100644 --- a/api_docs/kbn_rule_data_utils.mdx +++ b/api_docs/kbn_rule_data_utils.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-rule-data-utils title: "@kbn/rule-data-utils" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/rule-data-utils plugin -date: 2024-02-19 +date: 2024-02-22 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/rule-data-utils'] --- import kbnRuleDataUtilsObj from './kbn_rule_data_utils.devdocs.json'; diff --git a/api_docs/kbn_saved_objects_settings.mdx b/api_docs/kbn_saved_objects_settings.mdx index 4617d6f1768f5..c9d4db3141a89 100644 --- a/api_docs/kbn_saved_objects_settings.mdx +++ b/api_docs/kbn_saved_objects_settings.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-saved-objects-settings title: "@kbn/saved-objects-settings" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/saved-objects-settings plugin -date: 2024-02-19 +date: 2024-02-22 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/saved-objects-settings'] --- import kbnSavedObjectsSettingsObj from './kbn_saved_objects_settings.devdocs.json'; diff --git a/api_docs/kbn_search_api_panels.mdx b/api_docs/kbn_search_api_panels.mdx index 63fdd521b2e6c..fffcc7a0d4583 100644 --- a/api_docs/kbn_search_api_panels.mdx +++ b/api_docs/kbn_search_api_panels.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-search-api-panels title: "@kbn/search-api-panels" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/search-api-panels plugin -date: 2024-02-19 +date: 2024-02-22 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/search-api-panels'] --- import kbnSearchApiPanelsObj from './kbn_search_api_panels.devdocs.json'; diff --git a/api_docs/kbn_search_connectors.devdocs.json b/api_docs/kbn_search_connectors.devdocs.json index 1b7afab1f9898..26e54b5fc03d2 100644 --- a/api_docs/kbn_search_connectors.devdocs.json +++ b/api_docs/kbn_search_connectors.devdocs.json @@ -693,13 +693,7 @@ "text": "ElasticsearchClient" }, ", id: string) => Promise<", - { - "pluginId": "@kbn/search-connectors", - "scope": "common", - "docId": "kibKbnSearchConnectorsPluginApi", - "section": "def-common.ConnectorsAPIUpdateResponse", - "text": "ConnectorsAPIUpdateResponse" - }, + "Result", ">" ], "path": "packages/kbn-search-connectors/lib/delete_connector_secret.ts", @@ -2047,7 +2041,7 @@ "text": "Connector" }, ", \"name\" | \"description\">>) => Promise<", - "WriteResponseBase", + "Result", ">" ], "path": "packages/kbn-search-connectors/lib/update_connector_name_and_description.ts", @@ -2142,13 +2136,7 @@ "text": "SchedulingConfiguraton" }, ") => Promise<", - { - "pluginId": "@kbn/search-connectors", - "scope": "common", - "docId": "kibKbnSearchConnectorsPluginApi", - "section": "def-common.ConnectorsAPIUpdateResponse", - "text": "ConnectorsAPIUpdateResponse" - }, + "Result", ">" ], "path": "packages/kbn-search-connectors/lib/update_connector_scheduling.ts", @@ -2233,13 +2221,7 @@ "text": "ElasticsearchClient" }, ", value: string, secretId: string) => Promise<", - { - "pluginId": "@kbn/search-connectors", - "scope": "common", - "docId": "kibKbnSearchConnectorsPluginApi", - "section": "def-common.ConnectorsAPIUpdateResponse", - "text": "ConnectorsAPIUpdateResponse" - }, + "Result", ">" ], "path": "packages/kbn-search-connectors/lib/update_connector_secret.ts", @@ -3721,44 +3703,49 @@ }, { "parentPluginId": "@kbn/search-connectors", - "id": "def-common.ConnectorsAPISyncJobResponse", + "id": "def-common.ConnectorIndex", "type": "Interface", "tags": [], - "label": "ConnectorsAPISyncJobResponse", + "label": "ConnectorIndex", "description": [], - "path": "packages/kbn-search-connectors/types/connectors_api.ts", + "signature": [ + { + "pluginId": "@kbn/search-connectors", + "scope": "common", + "docId": "kibKbnSearchConnectorsPluginApi", + "section": "def-common.ConnectorIndex", + "text": "ConnectorIndex" + }, + " extends ", + { + "pluginId": "@kbn/search-connectors", + "scope": "common", + "docId": "kibKbnSearchConnectorsPluginApi", + "section": "def-common.ElasticsearchIndex", + "text": "ElasticsearchIndex" + } + ], + "path": "packages/kbn-search-connectors/types/indices.ts", "deprecated": false, "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/search-connectors", - "id": "def-common.ConnectorsAPISyncJobResponse.count", - "type": "number", - "tags": [], - "label": "count", - "description": [], - "path": "packages/kbn-search-connectors/types/connectors_api.ts", - "deprecated": false, - "trackAdoption": false - }, - { - "parentPluginId": "@kbn/search-connectors", - "id": "def-common.ConnectorsAPISyncJobResponse.results", - "type": "Array", + "id": "def-common.ConnectorIndex.connector", + "type": "Object", "tags": [], - "label": "results", + "label": "connector", "description": [], "signature": [ { "pluginId": "@kbn/search-connectors", "scope": "common", "docId": "kibKbnSearchConnectorsPluginApi", - "section": "def-common.ConnectorSyncJob", - "text": "ConnectorSyncJob" - }, - "[]" + "section": "def-common.Connector", + "text": "Connector" + } ], - "path": "packages/kbn-search-connectors/types/connectors_api.ts", + "path": "packages/kbn-search-connectors/types/indices.ts", "deprecated": false, "trackAdoption": false } @@ -3767,10 +3754,10 @@ }, { "parentPluginId": "@kbn/search-connectors", - "id": "def-common.ConnectorsAPIUpdateResponse", + "id": "def-common.ConnectorsAPISyncJobResponse", "type": "Interface", "tags": [], - "label": "ConnectorsAPIUpdateResponse", + "label": "ConnectorsAPISyncJobResponse", "description": [], "path": "packages/kbn-search-connectors/types/connectors_api.ts", "deprecated": false, @@ -3778,13 +3765,31 @@ "children": [ { "parentPluginId": "@kbn/search-connectors", - "id": "def-common.ConnectorsAPIUpdateResponse.result", - "type": "Enum", + "id": "def-common.ConnectorsAPISyncJobResponse.count", + "type": "number", "tags": [], - "label": "result", + "label": "count", + "description": [], + "path": "packages/kbn-search-connectors/types/connectors_api.ts", + "deprecated": false, + "trackAdoption": false + }, + { + "parentPluginId": "@kbn/search-connectors", + "id": "def-common.ConnectorsAPISyncJobResponse.results", + "type": "Array", + "tags": [], + "label": "results", "description": [], "signature": [ - "Result" + { + "pluginId": "@kbn/search-connectors", + "scope": "common", + "docId": "kibKbnSearchConnectorsPluginApi", + "section": "def-common.ConnectorSyncJob", + "text": "ConnectorSyncJob" + }, + "[]" ], "path": "packages/kbn-search-connectors/types/connectors_api.ts", "deprecated": false, @@ -4366,6 +4371,207 @@ ], "initialIsOpen": false }, + { + "parentPluginId": "@kbn/search-connectors", + "id": "def-common.ElasticsearchIndex", + "type": "Interface", + "tags": [], + "label": "ElasticsearchIndex", + "description": [], + "path": "packages/kbn-search-connectors/types/indices.ts", + "deprecated": false, + "trackAdoption": false, + "children": [ + { + "parentPluginId": "@kbn/search-connectors", + "id": "def-common.ElasticsearchIndex.count", + "type": "number", + "tags": [], + "label": "count", + "description": [], + "path": "packages/kbn-search-connectors/types/indices.ts", + "deprecated": false, + "trackAdoption": false + }, + { + "parentPluginId": "@kbn/search-connectors", + "id": "def-common.ElasticsearchIndex.has_in_progress_syncs", + "type": "CompoundType", + "tags": [], + "label": "has_in_progress_syncs", + "description": [], + "signature": [ + "boolean | undefined" + ], + "path": "packages/kbn-search-connectors/types/indices.ts", + "deprecated": false, + "trackAdoption": false + }, + { + "parentPluginId": "@kbn/search-connectors", + "id": "def-common.ElasticsearchIndex.has_pending_syncs", + "type": "CompoundType", + "tags": [], + "label": "has_pending_syncs", + "description": [], + "signature": [ + "boolean | undefined" + ], + "path": "packages/kbn-search-connectors/types/indices.ts", + "deprecated": false, + "trackAdoption": false + }, + { + "parentPluginId": "@kbn/search-connectors", + "id": "def-common.ElasticsearchIndex.health", + "type": "CompoundType", + "tags": [], + "label": "health", + "description": [], + "signature": [ + "HealthStatus", + " | undefined" + ], + "path": "packages/kbn-search-connectors/types/indices.ts", + "deprecated": false, + "trackAdoption": false + }, + { + "parentPluginId": "@kbn/search-connectors", + "id": "def-common.ElasticsearchIndex.hidden", + "type": "boolean", + "tags": [], + "label": "hidden", + "description": [], + "path": "packages/kbn-search-connectors/types/indices.ts", + "deprecated": false, + "trackAdoption": false + }, + { + "parentPluginId": "@kbn/search-connectors", + "id": "def-common.ElasticsearchIndex.name", + "type": "string", + "tags": [], + "label": "name", + "description": [], + "path": "packages/kbn-search-connectors/types/indices.ts", + "deprecated": false, + "trackAdoption": false + }, + { + "parentPluginId": "@kbn/search-connectors", + "id": "def-common.ElasticsearchIndex.status", + "type": "CompoundType", + "tags": [], + "label": "status", + "description": [], + "signature": [ + "IndicesStatsIndexMetadataState", + " | undefined" + ], + "path": "packages/kbn-search-connectors/types/indices.ts", + "deprecated": false, + "trackAdoption": false + }, + { + "parentPluginId": "@kbn/search-connectors", + "id": "def-common.ElasticsearchIndex.total", + "type": "Object", + "tags": [], + "label": "total", + "description": [], + "signature": [ + "{ docs: { count: number; deleted: number; }; store: { size_in_bytes: string; }; }" + ], + "path": "packages/kbn-search-connectors/types/indices.ts", + "deprecated": false, + "trackAdoption": false + }, + { + "parentPluginId": "@kbn/search-connectors", + "id": "def-common.ElasticsearchIndex.uuid", + "type": "string", + "tags": [], + "label": "uuid", + "description": [], + "signature": [ + "string | undefined" + ], + "path": "packages/kbn-search-connectors/types/indices.ts", + "deprecated": false, + "trackAdoption": false + } + ], + "initialIsOpen": false + }, + { + "parentPluginId": "@kbn/search-connectors", + "id": "def-common.ElasticsearchViewIndexExtension", + "type": "Interface", + "tags": [], + "label": "ElasticsearchViewIndexExtension", + "description": [], + "path": "packages/kbn-search-connectors/types/indices.ts", + "deprecated": false, + "trackAdoption": false, + "children": [ + { + "parentPluginId": "@kbn/search-connectors", + "id": "def-common.ElasticsearchViewIndexExtension.ingestionMethod", + "type": "Enum", + "tags": [], + "label": "ingestionMethod", + "description": [], + "signature": [ + { + "pluginId": "@kbn/search-connectors", + "scope": "common", + "docId": "kibKbnSearchConnectorsPluginApi", + "section": "def-common.IngestionMethod", + "text": "IngestionMethod" + } + ], + "path": "packages/kbn-search-connectors/types/indices.ts", + "deprecated": false, + "trackAdoption": false + }, + { + "parentPluginId": "@kbn/search-connectors", + "id": "def-common.ElasticsearchViewIndexExtension.ingestionStatus", + "type": "Enum", + "tags": [], + "label": "ingestionStatus", + "description": [], + "signature": [ + { + "pluginId": "@kbn/search-connectors", + "scope": "common", + "docId": "kibKbnSearchConnectorsPluginApi", + "section": "def-common.IngestionStatus", + "text": "IngestionStatus" + } + ], + "path": "packages/kbn-search-connectors/types/indices.ts", + "deprecated": false, + "trackAdoption": false + }, + { + "parentPluginId": "@kbn/search-connectors", + "id": "def-common.ElasticsearchViewIndexExtension.lastUpdated", + "type": "CompoundType", + "tags": [], + "label": "lastUpdated", + "description": [], + "signature": [ + "string | null" + ], + "path": "packages/kbn-search-connectors/types/indices.ts", + "deprecated": false, + "trackAdoption": false + } + ], + "initialIsOpen": false + }, { "parentPluginId": "@kbn/search-connectors", "id": "def-common.FilteringConfig", @@ -5244,6 +5450,30 @@ "trackAdoption": false, "initialIsOpen": false }, + { + "parentPluginId": "@kbn/search-connectors", + "id": "def-common.IngestionMethod", + "type": "Enum", + "tags": [], + "label": "IngestionMethod", + "description": [], + "path": "packages/kbn-search-connectors/types/indices.ts", + "deprecated": false, + "trackAdoption": false, + "initialIsOpen": false + }, + { + "parentPluginId": "@kbn/search-connectors", + "id": "def-common.IngestionStatus", + "type": "Enum", + "tags": [], + "label": "IngestionStatus", + "description": [], + "path": "packages/kbn-search-connectors/types/indices.ts", + "deprecated": false, + "trackAdoption": false, + "initialIsOpen": false + }, { "parentPluginId": "@kbn/search-connectors", "id": "def-common.SyncJobType", @@ -5607,6 +5837,35 @@ "trackAdoption": false, "initialIsOpen": false }, + { + "parentPluginId": "@kbn/search-connectors", + "id": "def-common.ConnectorViewIndex", + "type": "Type", + "tags": [], + "label": "ConnectorViewIndex", + "description": [], + "signature": [ + { + "pluginId": "@kbn/search-connectors", + "scope": "common", + "docId": "kibKbnSearchConnectorsPluginApi", + "section": "def-common.ConnectorIndex", + "text": "ConnectorIndex" + }, + " & ", + { + "pluginId": "@kbn/search-connectors", + "scope": "common", + "docId": "kibKbnSearchConnectorsPluginApi", + "section": "def-common.ElasticsearchViewIndexExtension", + "text": "ElasticsearchViewIndexExtension" + } + ], + "path": "packages/kbn-search-connectors/types/connectors.ts", + "deprecated": false, + "trackAdoption": false, + "initialIsOpen": false + }, { "parentPluginId": "@kbn/search-connectors", "id": "def-common.CRAWLER_SERVICE_TYPE", @@ -5667,6 +5926,36 @@ "trackAdoption": false, "initialIsOpen": false }, + { + "parentPluginId": "@kbn/search-connectors", + "id": "def-common.Field", + "type": "Type", + "tags": [], + "label": "Field", + "description": [], + "signature": [ + "\"date\" | \"month\" | \"day\" | \"hour\" | \"minute\" | \"second\"" + ], + "path": "packages/kbn-search-connectors/types/cron_editor.ts", + "deprecated": false, + "trackAdoption": false, + "initialIsOpen": false + }, + { + "parentPluginId": "@kbn/search-connectors", + "id": "def-common.FieldToValueMap", + "type": "Type", + "tags": [], + "label": "FieldToValueMap", + "description": [], + "signature": [ + "{ date?: string | undefined; month?: string | undefined; day?: string | undefined; hour?: string | undefined; minute?: string | undefined; second?: string | undefined; }" + ], + "path": "packages/kbn-search-connectors/types/cron_editor.ts", + "deprecated": false, + "trackAdoption": false, + "initialIsOpen": false + }, { "parentPluginId": "@kbn/search-connectors", "id": "def-common.FilteringPolicy", @@ -5718,6 +6007,21 @@ "deprecated": false, "trackAdoption": false, "initialIsOpen": false + }, + { + "parentPluginId": "@kbn/search-connectors", + "id": "def-common.Frequency", + "type": "Type", + "tags": [], + "label": "Frequency", + "description": [], + "signature": [ + "\"MINUTE\" | \"HOUR\" | \"DAY\" | \"WEEK\" | \"MONTH\" | \"YEAR\"" + ], + "path": "packages/kbn-search-connectors/types/cron_editor.ts", + "deprecated": false, + "trackAdoption": false, + "initialIsOpen": false } ], "objects": [ diff --git a/api_docs/kbn_search_connectors.mdx b/api_docs/kbn_search_connectors.mdx index b37d448a69cce..653d5f3812385 100644 --- a/api_docs/kbn_search_connectors.mdx +++ b/api_docs/kbn_search_connectors.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-search-connectors title: "@kbn/search-connectors" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/search-connectors plugin -date: 2024-02-19 +date: 2024-02-22 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/search-connectors'] --- import kbnSearchConnectorsObj from './kbn_search_connectors.devdocs.json'; @@ -21,7 +21,7 @@ Contact [@elastic/enterprise-search-frontend](https://github.com/orgs/elastic/te | Public API count | Any count | Items lacking comments | Missing exports | |-------------------|-----------|------------------------|-----------------| -| 3084 | 0 | 3084 | 0 | +| 3104 | 0 | 3104 | 0 | ## Common diff --git a/api_docs/kbn_search_errors.mdx b/api_docs/kbn_search_errors.mdx index 4180f3c465017..b1bac30011f6a 100644 --- a/api_docs/kbn_search_errors.mdx +++ b/api_docs/kbn_search_errors.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-search-errors title: "@kbn/search-errors" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/search-errors plugin -date: 2024-02-19 +date: 2024-02-22 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/search-errors'] --- import kbnSearchErrorsObj from './kbn_search_errors.devdocs.json'; diff --git a/api_docs/kbn_search_index_documents.mdx b/api_docs/kbn_search_index_documents.mdx index 322e25f946884..2dad49b403e5f 100644 --- a/api_docs/kbn_search_index_documents.mdx +++ b/api_docs/kbn_search_index_documents.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-search-index-documents title: "@kbn/search-index-documents" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/search-index-documents plugin -date: 2024-02-19 +date: 2024-02-22 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/search-index-documents'] --- import kbnSearchIndexDocumentsObj from './kbn_search_index_documents.devdocs.json'; diff --git a/api_docs/kbn_search_response_warnings.mdx b/api_docs/kbn_search_response_warnings.mdx index f34cabda29cfc..5e75514d4b0e2 100644 --- a/api_docs/kbn_search_response_warnings.mdx +++ b/api_docs/kbn_search_response_warnings.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-search-response-warnings title: "@kbn/search-response-warnings" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/search-response-warnings plugin -date: 2024-02-19 +date: 2024-02-22 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/search-response-warnings'] --- import kbnSearchResponseWarningsObj from './kbn_search_response_warnings.devdocs.json'; diff --git a/api_docs/kbn_security_hardening.mdx b/api_docs/kbn_security_hardening.mdx index e32c40b845b35..b5b2a196091e4 100644 --- a/api_docs/kbn_security_hardening.mdx +++ b/api_docs/kbn_security_hardening.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-security-hardening title: "@kbn/security-hardening" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/security-hardening plugin -date: 2024-02-19 +date: 2024-02-22 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/security-hardening'] --- import kbnSecurityHardeningObj from './kbn_security_hardening.devdocs.json'; diff --git a/api_docs/kbn_security_plugin_types_common.mdx b/api_docs/kbn_security_plugin_types_common.mdx index dc2960dbf6db0..cbf1695742ad3 100644 --- a/api_docs/kbn_security_plugin_types_common.mdx +++ b/api_docs/kbn_security_plugin_types_common.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-security-plugin-types-common title: "@kbn/security-plugin-types-common" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/security-plugin-types-common plugin -date: 2024-02-19 +date: 2024-02-22 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/security-plugin-types-common'] --- import kbnSecurityPluginTypesCommonObj from './kbn_security_plugin_types_common.devdocs.json'; diff --git a/api_docs/kbn_security_plugin_types_public.mdx b/api_docs/kbn_security_plugin_types_public.mdx index f776654ad0afc..39a8c4e56f136 100644 --- a/api_docs/kbn_security_plugin_types_public.mdx +++ b/api_docs/kbn_security_plugin_types_public.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-security-plugin-types-public title: "@kbn/security-plugin-types-public" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/security-plugin-types-public plugin -date: 2024-02-19 +date: 2024-02-22 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/security-plugin-types-public'] --- import kbnSecurityPluginTypesPublicObj from './kbn_security_plugin_types_public.devdocs.json'; diff --git a/api_docs/kbn_security_plugin_types_server.mdx b/api_docs/kbn_security_plugin_types_server.mdx index 4aa34dcaf35d8..362777976be20 100644 --- a/api_docs/kbn_security_plugin_types_server.mdx +++ b/api_docs/kbn_security_plugin_types_server.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-security-plugin-types-server title: "@kbn/security-plugin-types-server" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/security-plugin-types-server plugin -date: 2024-02-19 +date: 2024-02-22 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/security-plugin-types-server'] --- import kbnSecurityPluginTypesServerObj from './kbn_security_plugin_types_server.devdocs.json'; diff --git a/api_docs/kbn_security_solution_features.devdocs.json b/api_docs/kbn_security_solution_features.devdocs.json index ff07b6dd43ca4..a90a3ec230623 100644 --- a/api_docs/kbn_security_solution_features.devdocs.json +++ b/api_docs/kbn_security_solution_features.devdocs.json @@ -22,18 +22,18 @@ "interfaces": [ { "parentPluginId": "@kbn/security-solution-features", - "id": "def-common.AppFeatureParams", + "id": "def-common.ProductFeatureParams", "type": "Interface", "tags": [], - "label": "AppFeatureParams", + "label": "ProductFeatureParams", "description": [], "signature": [ { "pluginId": "@kbn/security-solution-features", "scope": "common", "docId": "kibKbnSecuritySolutionFeaturesPluginApi", - "section": "def-common.AppFeatureParams", - "text": "AppFeatureParams" + "section": "def-common.ProductFeatureParams", + "text": "ProductFeatureParams" }, "" ], @@ -43,7 +43,7 @@ "children": [ { "parentPluginId": "@kbn/security-solution-features", - "id": "def-common.AppFeatureParams.baseKibanaFeature", + "id": "def-common.ProductFeatureParams.baseKibanaFeature", "type": "Object", "tags": [], "label": "baseKibanaFeature", @@ -83,7 +83,7 @@ }, { "parentPluginId": "@kbn/security-solution-features", - "id": "def-common.AppFeatureParams.baseKibanaSubFeatureIds", + "id": "def-common.ProductFeatureParams.baseKibanaSubFeatureIds", "type": "Array", "tags": [], "label": "baseKibanaSubFeatureIds", @@ -97,7 +97,7 @@ }, { "parentPluginId": "@kbn/security-solution-features", - "id": "def-common.AppFeatureParams.subFeaturesMap", + "id": "def-common.ProductFeatureParams.subFeaturesMap", "type": "Object", "tags": [], "label": "subFeaturesMap", @@ -125,18 +125,82 @@ "misc": [ { "parentPluginId": "@kbn/security-solution-features", - "id": "def-common.AppFeatureKeys", + "id": "def-common.AppSubFeaturesMap", + "type": "Type", + "tags": [], + "label": "AppSubFeaturesMap", + "description": [], + "signature": [ + "Map" + ], + "path": "x-pack/packages/security-solution/features/src/types.ts", + "deprecated": false, + "trackAdoption": false, + "initialIsOpen": false + }, + { + "parentPluginId": "@kbn/security-solution-features", + "id": "def-common.BaseKibanaFeatureConfig", + "type": "Type", + "tags": [], + "label": "BaseKibanaFeatureConfig", + "description": [], + "signature": [ + "{ id: string; order?: number | undefined; name: string; alerting?: readonly string[] | undefined; cases?: readonly string[] | undefined; category: ", + { + "pluginId": "@kbn/core-application-common", + "scope": "common", + "docId": "kibKbnCoreApplicationCommonPluginApi", + "section": "def-common.AppCategory", + "text": "AppCategory" + }, + "; description?: string | undefined; management?: { [sectionId: string]: readonly string[]; } | undefined; privileges: { all: ", + { + "pluginId": "features", + "scope": "common", + "docId": "kibFeaturesPluginApi", + "section": "def-common.FeatureKibanaPrivileges", + "text": "FeatureKibanaPrivileges" + }, + "; read: ", + { + "pluginId": "features", + "scope": "common", + "docId": "kibFeaturesPluginApi", + "section": "def-common.FeatureKibanaPrivileges", + "text": "FeatureKibanaPrivileges" + }, + "; } | null; catalogue?: readonly string[] | undefined; excludeFromBasePrivileges?: boolean | undefined; minimumLicense?: \"basic\" | \"standard\" | \"gold\" | \"platinum\" | \"enterprise\" | \"trial\" | undefined; app: readonly string[]; privilegesTooltip?: string | undefined; reserved?: { description: string; privileges: readonly ", + "ReservedKibanaPrivilege", + "[]; } | undefined; }" + ], + "path": "x-pack/packages/security-solution/features/src/types.ts", + "deprecated": false, + "trackAdoption": false, + "initialIsOpen": false + }, + { + "parentPluginId": "@kbn/security-solution-features", + "id": "def-common.ProductFeatureKeys", "type": "Type", "tags": [], - "label": "AppFeatureKeys", + "label": "ProductFeatureKeys", "description": [], "signature": [ { "pluginId": "@kbn/security-solution-features", "scope": "common", "docId": "kibKbnSecuritySolutionFeaturesPluginApi", - "section": "def-common.AppFeatureKeyType", - "text": "AppFeatureKeyType" + "section": "def-common.ProductFeatureKeyType", + "text": "ProductFeatureKeyType" }, "[]" ], @@ -147,29 +211,29 @@ }, { "parentPluginId": "@kbn/security-solution-features", - "id": "def-common.AppFeatureKeyType", + "id": "def-common.ProductFeatureKeyType", "type": "Type", "tags": [], - "label": "AppFeatureKeyType", + "label": "ProductFeatureKeyType", "description": [], "signature": [ - "AppFeatureSecurityKey", + "ProductFeatureSecurityKey", " | ", - "AppFeatureCasesKey", + "ProductFeatureCasesKey", " | ", - "AppFeatureAssistantKey" + "ProductFeatureAssistantKey" ], - "path": "x-pack/packages/security-solution/features/src/app_features_keys.ts", + "path": "x-pack/packages/security-solution/features/src/product_features_keys.ts", "deprecated": false, "trackAdoption": false, "initialIsOpen": false }, { "parentPluginId": "@kbn/security-solution-features", - "id": "def-common.AppFeatureKibanaConfig", + "id": "def-common.ProductFeatureKibanaConfig", "type": "Type", "tags": [], - "label": "AppFeatureKibanaConfig", + "label": "ProductFeatureKibanaConfig", "description": [], "signature": [ { @@ -212,21 +276,21 @@ }, { "parentPluginId": "@kbn/security-solution-features", - "id": "def-common.AppFeaturesAssistantConfig", + "id": "def-common.ProductFeaturesAssistantConfig", "type": "Type", "tags": [], - "label": "AppFeaturesAssistantConfig", + "label": "ProductFeaturesAssistantConfig", "description": [], "signature": [ "Map<", - "AppFeatureAssistantKey", + "ProductFeatureAssistantKey", ", ", { "pluginId": "@kbn/security-solution-features", "scope": "common", "docId": "kibKbnSecuritySolutionFeaturesPluginApi", - "section": "def-common.AppFeatureKibanaConfig", - "text": "AppFeatureKibanaConfig" + "section": "def-common.ProductFeatureKibanaConfig", + "text": "ProductFeatureKibanaConfig" }, "<", "AssistantSubFeatureId", @@ -239,21 +303,21 @@ }, { "parentPluginId": "@kbn/security-solution-features", - "id": "def-common.AppFeaturesCasesConfig", + "id": "def-common.ProductFeaturesCasesConfig", "type": "Type", "tags": [], - "label": "AppFeaturesCasesConfig", + "label": "ProductFeaturesCasesConfig", "description": [], "signature": [ "Map<", - "AppFeatureCasesKey", + "ProductFeatureCasesKey", ", ", { "pluginId": "@kbn/security-solution-features", "scope": "common", "docId": "kibKbnSecuritySolutionFeaturesPluginApi", - "section": "def-common.AppFeatureKibanaConfig", - "text": "AppFeatureKibanaConfig" + "section": "def-common.ProductFeatureKibanaConfig", + "text": "ProductFeatureKibanaConfig" }, "<", "CasesSubFeatureId", @@ -266,10 +330,10 @@ }, { "parentPluginId": "@kbn/security-solution-features", - "id": "def-common.AppFeaturesConfig", + "id": "def-common.ProductFeaturesConfig", "type": "Type", "tags": [], - "label": "AppFeaturesConfig", + "label": "ProductFeaturesConfig", "description": [], "signature": [ "Map<", @@ -277,16 +341,16 @@ "pluginId": "@kbn/security-solution-features", "scope": "common", "docId": "kibKbnSecuritySolutionFeaturesPluginApi", - "section": "def-common.AppFeatureKeyType", - "text": "AppFeatureKeyType" + "section": "def-common.ProductFeatureKeyType", + "text": "ProductFeatureKeyType" }, ", ", { "pluginId": "@kbn/security-solution-features", "scope": "common", "docId": "kibKbnSecuritySolutionFeaturesPluginApi", - "section": "def-common.AppFeatureKibanaConfig", - "text": "AppFeatureKibanaConfig" + "section": "def-common.ProductFeatureKibanaConfig", + "text": "ProductFeatureKibanaConfig" }, ">" ], @@ -297,21 +361,21 @@ }, { "parentPluginId": "@kbn/security-solution-features", - "id": "def-common.AppFeaturesSecurityConfig", + "id": "def-common.ProductFeaturesSecurityConfig", "type": "Type", "tags": [], - "label": "AppFeaturesSecurityConfig", + "label": "ProductFeaturesSecurityConfig", "description": [], "signature": [ "Map<", - "AppFeatureSecurityKey", + "ProductFeatureSecurityKey", ", ", { "pluginId": "@kbn/security-solution-features", "scope": "common", "docId": "kibKbnSecuritySolutionFeaturesPluginApi", - "section": "def-common.AppFeatureKibanaConfig", - "text": "AppFeatureKibanaConfig" + "section": "def-common.ProductFeatureKibanaConfig", + "text": "ProductFeatureKibanaConfig" }, "<", "SecuritySubFeatureId", @@ -322,70 +386,6 @@ "trackAdoption": false, "initialIsOpen": false }, - { - "parentPluginId": "@kbn/security-solution-features", - "id": "def-common.AppSubFeaturesMap", - "type": "Type", - "tags": [], - "label": "AppSubFeaturesMap", - "description": [], - "signature": [ - "Map" - ], - "path": "x-pack/packages/security-solution/features/src/types.ts", - "deprecated": false, - "trackAdoption": false, - "initialIsOpen": false - }, - { - "parentPluginId": "@kbn/security-solution-features", - "id": "def-common.BaseKibanaFeatureConfig", - "type": "Type", - "tags": [], - "label": "BaseKibanaFeatureConfig", - "description": [], - "signature": [ - "{ id: string; order?: number | undefined; name: string; alerting?: readonly string[] | undefined; cases?: readonly string[] | undefined; category: ", - { - "pluginId": "@kbn/core-application-common", - "scope": "common", - "docId": "kibKbnCoreApplicationCommonPluginApi", - "section": "def-common.AppCategory", - "text": "AppCategory" - }, - "; description?: string | undefined; management?: { [sectionId: string]: readonly string[]; } | undefined; privileges: { all: ", - { - "pluginId": "features", - "scope": "common", - "docId": "kibFeaturesPluginApi", - "section": "def-common.FeatureKibanaPrivileges", - "text": "FeatureKibanaPrivileges" - }, - "; read: ", - { - "pluginId": "features", - "scope": "common", - "docId": "kibFeaturesPluginApi", - "section": "def-common.FeatureKibanaPrivileges", - "text": "FeatureKibanaPrivileges" - }, - "; } | null; catalogue?: readonly string[] | undefined; excludeFromBasePrivileges?: boolean | undefined; minimumLicense?: \"basic\" | \"standard\" | \"gold\" | \"platinum\" | \"enterprise\" | \"trial\" | undefined; app: readonly string[]; privilegesTooltip?: string | undefined; reserved?: { description: string; privileges: readonly ", - "ReservedKibanaPrivilege", - "[]; } | undefined; }" - ], - "path": "x-pack/packages/security-solution/features/src/types.ts", - "deprecated": false, - "trackAdoption": false, - "initialIsOpen": false - }, { "parentPluginId": "@kbn/security-solution-features", "id": "def-common.SubFeaturesPrivileges", diff --git a/api_docs/kbn_security_solution_features.mdx b/api_docs/kbn_security_solution_features.mdx index 72ddff1cbb72d..2311e64116565 100644 --- a/api_docs/kbn_security_solution_features.mdx +++ b/api_docs/kbn_security_solution_features.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-security-solution-features title: "@kbn/security-solution-features" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/security-solution-features plugin -date: 2024-02-19 +date: 2024-02-22 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/security-solution-features'] --- import kbnSecuritySolutionFeaturesObj from './kbn_security_solution_features.devdocs.json'; diff --git a/api_docs/kbn_security_solution_navigation.mdx b/api_docs/kbn_security_solution_navigation.mdx index d39c687d89667..562f0d95f8a1c 100644 --- a/api_docs/kbn_security_solution_navigation.mdx +++ b/api_docs/kbn_security_solution_navigation.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-security-solution-navigation title: "@kbn/security-solution-navigation" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/security-solution-navigation plugin -date: 2024-02-19 +date: 2024-02-22 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/security-solution-navigation'] --- import kbnSecuritySolutionNavigationObj from './kbn_security_solution_navigation.devdocs.json'; diff --git a/api_docs/kbn_security_solution_side_nav.mdx b/api_docs/kbn_security_solution_side_nav.mdx index 120eae334e262..b8ce8e346b880 100644 --- a/api_docs/kbn_security_solution_side_nav.mdx +++ b/api_docs/kbn_security_solution_side_nav.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-security-solution-side-nav title: "@kbn/security-solution-side-nav" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/security-solution-side-nav plugin -date: 2024-02-19 +date: 2024-02-22 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/security-solution-side-nav'] --- import kbnSecuritySolutionSideNavObj from './kbn_security_solution_side_nav.devdocs.json'; diff --git a/api_docs/kbn_security_solution_storybook_config.mdx b/api_docs/kbn_security_solution_storybook_config.mdx index a6f1ac7491b9d..37f9518bc353d 100644 --- a/api_docs/kbn_security_solution_storybook_config.mdx +++ b/api_docs/kbn_security_solution_storybook_config.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-security-solution-storybook-config title: "@kbn/security-solution-storybook-config" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/security-solution-storybook-config plugin -date: 2024-02-19 +date: 2024-02-22 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/security-solution-storybook-config'] --- import kbnSecuritySolutionStorybookConfigObj from './kbn_security_solution_storybook_config.devdocs.json'; diff --git a/api_docs/kbn_securitysolution_autocomplete.mdx b/api_docs/kbn_securitysolution_autocomplete.mdx index a26975c7b664d..b78dfa0727817 100644 --- a/api_docs/kbn_securitysolution_autocomplete.mdx +++ b/api_docs/kbn_securitysolution_autocomplete.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-securitysolution-autocomplete title: "@kbn/securitysolution-autocomplete" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/securitysolution-autocomplete plugin -date: 2024-02-19 +date: 2024-02-22 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/securitysolution-autocomplete'] --- import kbnSecuritysolutionAutocompleteObj from './kbn_securitysolution_autocomplete.devdocs.json'; diff --git a/api_docs/kbn_securitysolution_data_table.devdocs.json b/api_docs/kbn_securitysolution_data_table.devdocs.json index 903b3db4d9e57..f93d3347b9687 100644 --- a/api_docs/kbn_securitysolution_data_table.devdocs.json +++ b/api_docs/kbn_securitysolution_data_table.devdocs.json @@ -45,7 +45,7 @@ }, ", setCellProps: (props: ", "EuiDataGridSetCellProps", - ") => void, defaultStyles?: React.CSSProperties | undefined) => void" + ") => void) => void" ], "path": "x-pack/packages/security-solution/data_table/components/data_table/helpers.tsx", "deprecated": false, @@ -109,21 +109,6 @@ "deprecated": false, "trackAdoption": false, "isRequired": true - }, - { - "parentPluginId": "@kbn/securitysolution-data-table", - "id": "def-common.addBuildingBlockStyle.$4", - "type": "Object", - "tags": [], - "label": "defaultStyles", - "description": [], - "signature": [ - "React.CSSProperties | undefined" - ], - "path": "x-pack/packages/security-solution/data_table/components/data_table/helpers.tsx", - "deprecated": false, - "trackAdoption": false, - "isRequired": false } ], "returnComment": [], diff --git a/api_docs/kbn_securitysolution_data_table.mdx b/api_docs/kbn_securitysolution_data_table.mdx index 55611dfff1ab2..6c3b1cc9bdb4f 100644 --- a/api_docs/kbn_securitysolution_data_table.mdx +++ b/api_docs/kbn_securitysolution_data_table.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-securitysolution-data-table title: "@kbn/securitysolution-data-table" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/securitysolution-data-table plugin -date: 2024-02-19 +date: 2024-02-22 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/securitysolution-data-table'] --- import kbnSecuritysolutionDataTableObj from './kbn_securitysolution_data_table.devdocs.json'; @@ -21,7 +21,7 @@ Contact [@elastic/security-threat-hunting-investigations](https://github.com/org | Public API count | Any count | Items lacking comments | Missing exports | |-------------------|-----------|------------------------|-----------------| -| 95 | 0 | 72 | 7 | +| 94 | 0 | 71 | 7 | ## Common diff --git a/api_docs/kbn_securitysolution_ecs.mdx b/api_docs/kbn_securitysolution_ecs.mdx index 323048d84e685..aa8cf13bca156 100644 --- a/api_docs/kbn_securitysolution_ecs.mdx +++ b/api_docs/kbn_securitysolution_ecs.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-securitysolution-ecs title: "@kbn/securitysolution-ecs" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/securitysolution-ecs plugin -date: 2024-02-19 +date: 2024-02-22 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/securitysolution-ecs'] --- import kbnSecuritysolutionEcsObj from './kbn_securitysolution_ecs.devdocs.json'; diff --git a/api_docs/kbn_securitysolution_es_utils.mdx b/api_docs/kbn_securitysolution_es_utils.mdx index cdf75f7b7fb38..eb4312a672b54 100644 --- a/api_docs/kbn_securitysolution_es_utils.mdx +++ b/api_docs/kbn_securitysolution_es_utils.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-securitysolution-es-utils title: "@kbn/securitysolution-es-utils" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/securitysolution-es-utils plugin -date: 2024-02-19 +date: 2024-02-22 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/securitysolution-es-utils'] --- import kbnSecuritysolutionEsUtilsObj from './kbn_securitysolution_es_utils.devdocs.json'; diff --git a/api_docs/kbn_securitysolution_exception_list_components.mdx b/api_docs/kbn_securitysolution_exception_list_components.mdx index 72e4d3423bc49..2507586adc958 100644 --- a/api_docs/kbn_securitysolution_exception_list_components.mdx +++ b/api_docs/kbn_securitysolution_exception_list_components.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-securitysolution-exception-list-components title: "@kbn/securitysolution-exception-list-components" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/securitysolution-exception-list-components plugin -date: 2024-02-19 +date: 2024-02-22 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/securitysolution-exception-list-components'] --- import kbnSecuritysolutionExceptionListComponentsObj from './kbn_securitysolution_exception_list_components.devdocs.json'; diff --git a/api_docs/kbn_securitysolution_grouping.mdx b/api_docs/kbn_securitysolution_grouping.mdx index 5ba06f0d50087..bdb931f6bf552 100644 --- a/api_docs/kbn_securitysolution_grouping.mdx +++ b/api_docs/kbn_securitysolution_grouping.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-securitysolution-grouping title: "@kbn/securitysolution-grouping" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/securitysolution-grouping plugin -date: 2024-02-19 +date: 2024-02-22 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/securitysolution-grouping'] --- import kbnSecuritysolutionGroupingObj from './kbn_securitysolution_grouping.devdocs.json'; diff --git a/api_docs/kbn_securitysolution_hook_utils.mdx b/api_docs/kbn_securitysolution_hook_utils.mdx index eedbf308add1c..88eeb0aa1bac3 100644 --- a/api_docs/kbn_securitysolution_hook_utils.mdx +++ b/api_docs/kbn_securitysolution_hook_utils.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-securitysolution-hook-utils title: "@kbn/securitysolution-hook-utils" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/securitysolution-hook-utils plugin -date: 2024-02-19 +date: 2024-02-22 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/securitysolution-hook-utils'] --- import kbnSecuritysolutionHookUtilsObj from './kbn_securitysolution_hook_utils.devdocs.json'; diff --git a/api_docs/kbn_securitysolution_io_ts_alerting_types.mdx b/api_docs/kbn_securitysolution_io_ts_alerting_types.mdx index 570a55b709ce0..d2ae2aeb89386 100644 --- a/api_docs/kbn_securitysolution_io_ts_alerting_types.mdx +++ b/api_docs/kbn_securitysolution_io_ts_alerting_types.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-securitysolution-io-ts-alerting-types title: "@kbn/securitysolution-io-ts-alerting-types" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/securitysolution-io-ts-alerting-types plugin -date: 2024-02-19 +date: 2024-02-22 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/securitysolution-io-ts-alerting-types'] --- import kbnSecuritysolutionIoTsAlertingTypesObj from './kbn_securitysolution_io_ts_alerting_types.devdocs.json'; diff --git a/api_docs/kbn_securitysolution_io_ts_list_types.mdx b/api_docs/kbn_securitysolution_io_ts_list_types.mdx index 8312305610257..2f7e43987607b 100644 --- a/api_docs/kbn_securitysolution_io_ts_list_types.mdx +++ b/api_docs/kbn_securitysolution_io_ts_list_types.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-securitysolution-io-ts-list-types title: "@kbn/securitysolution-io-ts-list-types" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/securitysolution-io-ts-list-types plugin -date: 2024-02-19 +date: 2024-02-22 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/securitysolution-io-ts-list-types'] --- import kbnSecuritysolutionIoTsListTypesObj from './kbn_securitysolution_io_ts_list_types.devdocs.json'; diff --git a/api_docs/kbn_securitysolution_io_ts_types.mdx b/api_docs/kbn_securitysolution_io_ts_types.mdx index a5e9c59c35a8c..c2f3ada0e10a1 100644 --- a/api_docs/kbn_securitysolution_io_ts_types.mdx +++ b/api_docs/kbn_securitysolution_io_ts_types.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-securitysolution-io-ts-types title: "@kbn/securitysolution-io-ts-types" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/securitysolution-io-ts-types plugin -date: 2024-02-19 +date: 2024-02-22 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/securitysolution-io-ts-types'] --- import kbnSecuritysolutionIoTsTypesObj from './kbn_securitysolution_io_ts_types.devdocs.json'; diff --git a/api_docs/kbn_securitysolution_io_ts_utils.mdx b/api_docs/kbn_securitysolution_io_ts_utils.mdx index 2a82c41da5dc4..90d664ef78b39 100644 --- a/api_docs/kbn_securitysolution_io_ts_utils.mdx +++ b/api_docs/kbn_securitysolution_io_ts_utils.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-securitysolution-io-ts-utils title: "@kbn/securitysolution-io-ts-utils" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/securitysolution-io-ts-utils plugin -date: 2024-02-19 +date: 2024-02-22 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/securitysolution-io-ts-utils'] --- import kbnSecuritysolutionIoTsUtilsObj from './kbn_securitysolution_io_ts_utils.devdocs.json'; diff --git a/api_docs/kbn_securitysolution_list_api.mdx b/api_docs/kbn_securitysolution_list_api.mdx index ed41179a912c2..c952e2df906da 100644 --- a/api_docs/kbn_securitysolution_list_api.mdx +++ b/api_docs/kbn_securitysolution_list_api.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-securitysolution-list-api title: "@kbn/securitysolution-list-api" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/securitysolution-list-api plugin -date: 2024-02-19 +date: 2024-02-22 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/securitysolution-list-api'] --- import kbnSecuritysolutionListApiObj from './kbn_securitysolution_list_api.devdocs.json'; diff --git a/api_docs/kbn_securitysolution_list_constants.mdx b/api_docs/kbn_securitysolution_list_constants.mdx index 4bfe1f9cce92f..efeec16781cfd 100644 --- a/api_docs/kbn_securitysolution_list_constants.mdx +++ b/api_docs/kbn_securitysolution_list_constants.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-securitysolution-list-constants title: "@kbn/securitysolution-list-constants" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/securitysolution-list-constants plugin -date: 2024-02-19 +date: 2024-02-22 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/securitysolution-list-constants'] --- import kbnSecuritysolutionListConstantsObj from './kbn_securitysolution_list_constants.devdocs.json'; diff --git a/api_docs/kbn_securitysolution_list_hooks.mdx b/api_docs/kbn_securitysolution_list_hooks.mdx index f5edda07ed1f3..e530e34326306 100644 --- a/api_docs/kbn_securitysolution_list_hooks.mdx +++ b/api_docs/kbn_securitysolution_list_hooks.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-securitysolution-list-hooks title: "@kbn/securitysolution-list-hooks" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/securitysolution-list-hooks plugin -date: 2024-02-19 +date: 2024-02-22 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/securitysolution-list-hooks'] --- import kbnSecuritysolutionListHooksObj from './kbn_securitysolution_list_hooks.devdocs.json'; diff --git a/api_docs/kbn_securitysolution_list_utils.mdx b/api_docs/kbn_securitysolution_list_utils.mdx index 8dac14aa91765..b045aaab63654 100644 --- a/api_docs/kbn_securitysolution_list_utils.mdx +++ b/api_docs/kbn_securitysolution_list_utils.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-securitysolution-list-utils title: "@kbn/securitysolution-list-utils" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/securitysolution-list-utils plugin -date: 2024-02-19 +date: 2024-02-22 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/securitysolution-list-utils'] --- import kbnSecuritysolutionListUtilsObj from './kbn_securitysolution_list_utils.devdocs.json'; diff --git a/api_docs/kbn_securitysolution_rules.mdx b/api_docs/kbn_securitysolution_rules.mdx index 9b3dfe33adce2..b3fa92b2426bc 100644 --- a/api_docs/kbn_securitysolution_rules.mdx +++ b/api_docs/kbn_securitysolution_rules.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-securitysolution-rules title: "@kbn/securitysolution-rules" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/securitysolution-rules plugin -date: 2024-02-19 +date: 2024-02-22 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/securitysolution-rules'] --- import kbnSecuritysolutionRulesObj from './kbn_securitysolution_rules.devdocs.json'; diff --git a/api_docs/kbn_securitysolution_t_grid.mdx b/api_docs/kbn_securitysolution_t_grid.mdx index a96ec83761854..c896955ffea65 100644 --- a/api_docs/kbn_securitysolution_t_grid.mdx +++ b/api_docs/kbn_securitysolution_t_grid.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-securitysolution-t-grid title: "@kbn/securitysolution-t-grid" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/securitysolution-t-grid plugin -date: 2024-02-19 +date: 2024-02-22 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/securitysolution-t-grid'] --- import kbnSecuritysolutionTGridObj from './kbn_securitysolution_t_grid.devdocs.json'; diff --git a/api_docs/kbn_securitysolution_utils.mdx b/api_docs/kbn_securitysolution_utils.mdx index 0c93f581d2064..bd552c3c560a4 100644 --- a/api_docs/kbn_securitysolution_utils.mdx +++ b/api_docs/kbn_securitysolution_utils.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-securitysolution-utils title: "@kbn/securitysolution-utils" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/securitysolution-utils plugin -date: 2024-02-19 +date: 2024-02-22 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/securitysolution-utils'] --- import kbnSecuritysolutionUtilsObj from './kbn_securitysolution_utils.devdocs.json'; diff --git a/api_docs/kbn_server_http_tools.mdx b/api_docs/kbn_server_http_tools.mdx index e8558d48fee90..3fbccd9f958e8 100644 --- a/api_docs/kbn_server_http_tools.mdx +++ b/api_docs/kbn_server_http_tools.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-server-http-tools title: "@kbn/server-http-tools" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/server-http-tools plugin -date: 2024-02-19 +date: 2024-02-22 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/server-http-tools'] --- import kbnServerHttpToolsObj from './kbn_server_http_tools.devdocs.json'; diff --git a/api_docs/kbn_server_route_repository.mdx b/api_docs/kbn_server_route_repository.mdx index 5ea5491c9dedd..da79ba17d011c 100644 --- a/api_docs/kbn_server_route_repository.mdx +++ b/api_docs/kbn_server_route_repository.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-server-route-repository title: "@kbn/server-route-repository" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/server-route-repository plugin -date: 2024-02-19 +date: 2024-02-22 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/server-route-repository'] --- import kbnServerRouteRepositoryObj from './kbn_server_route_repository.devdocs.json'; diff --git a/api_docs/kbn_serverless_common_settings.mdx b/api_docs/kbn_serverless_common_settings.mdx index 5fa37ece95e78..9745e5b93b6c2 100644 --- a/api_docs/kbn_serverless_common_settings.mdx +++ b/api_docs/kbn_serverless_common_settings.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-serverless-common-settings title: "@kbn/serverless-common-settings" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/serverless-common-settings plugin -date: 2024-02-19 +date: 2024-02-22 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/serverless-common-settings'] --- import kbnServerlessCommonSettingsObj from './kbn_serverless_common_settings.devdocs.json'; diff --git a/api_docs/kbn_serverless_observability_settings.mdx b/api_docs/kbn_serverless_observability_settings.mdx index 408aa43088b1b..7868da7d9d7f8 100644 --- a/api_docs/kbn_serverless_observability_settings.mdx +++ b/api_docs/kbn_serverless_observability_settings.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-serverless-observability-settings title: "@kbn/serverless-observability-settings" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/serverless-observability-settings plugin -date: 2024-02-19 +date: 2024-02-22 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/serverless-observability-settings'] --- import kbnServerlessObservabilitySettingsObj from './kbn_serverless_observability_settings.devdocs.json'; diff --git a/api_docs/kbn_serverless_project_switcher.mdx b/api_docs/kbn_serverless_project_switcher.mdx index 201ed0304d49f..7b7963a67569c 100644 --- a/api_docs/kbn_serverless_project_switcher.mdx +++ b/api_docs/kbn_serverless_project_switcher.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-serverless-project-switcher title: "@kbn/serverless-project-switcher" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/serverless-project-switcher plugin -date: 2024-02-19 +date: 2024-02-22 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/serverless-project-switcher'] --- import kbnServerlessProjectSwitcherObj from './kbn_serverless_project_switcher.devdocs.json'; diff --git a/api_docs/kbn_serverless_search_settings.mdx b/api_docs/kbn_serverless_search_settings.mdx index 9c70808492cf8..f0dcfc846a18e 100644 --- a/api_docs/kbn_serverless_search_settings.mdx +++ b/api_docs/kbn_serverless_search_settings.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-serverless-search-settings title: "@kbn/serverless-search-settings" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/serverless-search-settings plugin -date: 2024-02-19 +date: 2024-02-22 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/serverless-search-settings'] --- import kbnServerlessSearchSettingsObj from './kbn_serverless_search_settings.devdocs.json'; diff --git a/api_docs/kbn_serverless_security_settings.mdx b/api_docs/kbn_serverless_security_settings.mdx index 55e2375dcfe41..c1c7f8ece54e6 100644 --- a/api_docs/kbn_serverless_security_settings.mdx +++ b/api_docs/kbn_serverless_security_settings.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-serverless-security-settings title: "@kbn/serverless-security-settings" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/serverless-security-settings plugin -date: 2024-02-19 +date: 2024-02-22 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/serverless-security-settings'] --- import kbnServerlessSecuritySettingsObj from './kbn_serverless_security_settings.devdocs.json'; diff --git a/api_docs/kbn_serverless_storybook_config.mdx b/api_docs/kbn_serverless_storybook_config.mdx index 3c18a4b7b677f..71d57262f4643 100644 --- a/api_docs/kbn_serverless_storybook_config.mdx +++ b/api_docs/kbn_serverless_storybook_config.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-serverless-storybook-config title: "@kbn/serverless-storybook-config" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/serverless-storybook-config plugin -date: 2024-02-19 +date: 2024-02-22 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/serverless-storybook-config'] --- import kbnServerlessStorybookConfigObj from './kbn_serverless_storybook_config.devdocs.json'; diff --git a/api_docs/kbn_shared_svg.mdx b/api_docs/kbn_shared_svg.mdx index 3443bbd8d9fff..fb8a6d79ee520 100644 --- a/api_docs/kbn_shared_svg.mdx +++ b/api_docs/kbn_shared_svg.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-shared-svg title: "@kbn/shared-svg" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/shared-svg plugin -date: 2024-02-19 +date: 2024-02-22 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/shared-svg'] --- import kbnSharedSvgObj from './kbn_shared_svg.devdocs.json'; diff --git a/api_docs/kbn_shared_ux_avatar_solution.mdx b/api_docs/kbn_shared_ux_avatar_solution.mdx index 7ad9cee551ea2..a2a1fb6bb730e 100644 --- a/api_docs/kbn_shared_ux_avatar_solution.mdx +++ b/api_docs/kbn_shared_ux_avatar_solution.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-shared-ux-avatar-solution title: "@kbn/shared-ux-avatar-solution" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/shared-ux-avatar-solution plugin -date: 2024-02-19 +date: 2024-02-22 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/shared-ux-avatar-solution'] --- import kbnSharedUxAvatarSolutionObj from './kbn_shared_ux_avatar_solution.devdocs.json'; diff --git a/api_docs/kbn_shared_ux_button_exit_full_screen.mdx b/api_docs/kbn_shared_ux_button_exit_full_screen.mdx index a40e355471ac7..44e4514977b7d 100644 --- a/api_docs/kbn_shared_ux_button_exit_full_screen.mdx +++ b/api_docs/kbn_shared_ux_button_exit_full_screen.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-shared-ux-button-exit-full-screen title: "@kbn/shared-ux-button-exit-full-screen" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/shared-ux-button-exit-full-screen plugin -date: 2024-02-19 +date: 2024-02-22 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/shared-ux-button-exit-full-screen'] --- import kbnSharedUxButtonExitFullScreenObj from './kbn_shared_ux_button_exit_full_screen.devdocs.json'; diff --git a/api_docs/kbn_shared_ux_button_toolbar.mdx b/api_docs/kbn_shared_ux_button_toolbar.mdx index 7d712b564adc8..46b83efffb3f1 100644 --- a/api_docs/kbn_shared_ux_button_toolbar.mdx +++ b/api_docs/kbn_shared_ux_button_toolbar.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-shared-ux-button-toolbar title: "@kbn/shared-ux-button-toolbar" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/shared-ux-button-toolbar plugin -date: 2024-02-19 +date: 2024-02-22 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/shared-ux-button-toolbar'] --- import kbnSharedUxButtonToolbarObj from './kbn_shared_ux_button_toolbar.devdocs.json'; diff --git a/api_docs/kbn_shared_ux_card_no_data.mdx b/api_docs/kbn_shared_ux_card_no_data.mdx index b95efac768796..0e0e3d1748f7d 100644 --- a/api_docs/kbn_shared_ux_card_no_data.mdx +++ b/api_docs/kbn_shared_ux_card_no_data.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-shared-ux-card-no-data title: "@kbn/shared-ux-card-no-data" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/shared-ux-card-no-data plugin -date: 2024-02-19 +date: 2024-02-22 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/shared-ux-card-no-data'] --- import kbnSharedUxCardNoDataObj from './kbn_shared_ux_card_no_data.devdocs.json'; diff --git a/api_docs/kbn_shared_ux_card_no_data_mocks.mdx b/api_docs/kbn_shared_ux_card_no_data_mocks.mdx index ae4884e7e9c87..6114881c54aee 100644 --- a/api_docs/kbn_shared_ux_card_no_data_mocks.mdx +++ b/api_docs/kbn_shared_ux_card_no_data_mocks.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-shared-ux-card-no-data-mocks title: "@kbn/shared-ux-card-no-data-mocks" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/shared-ux-card-no-data-mocks plugin -date: 2024-02-19 +date: 2024-02-22 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/shared-ux-card-no-data-mocks'] --- import kbnSharedUxCardNoDataMocksObj from './kbn_shared_ux_card_no_data_mocks.devdocs.json'; diff --git a/api_docs/kbn_shared_ux_chrome_navigation.mdx b/api_docs/kbn_shared_ux_chrome_navigation.mdx index 90296b04c2b25..85de04585386f 100644 --- a/api_docs/kbn_shared_ux_chrome_navigation.mdx +++ b/api_docs/kbn_shared_ux_chrome_navigation.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-shared-ux-chrome-navigation title: "@kbn/shared-ux-chrome-navigation" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/shared-ux-chrome-navigation plugin -date: 2024-02-19 +date: 2024-02-22 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/shared-ux-chrome-navigation'] --- import kbnSharedUxChromeNavigationObj from './kbn_shared_ux_chrome_navigation.devdocs.json'; diff --git a/api_docs/kbn_shared_ux_error_boundary.mdx b/api_docs/kbn_shared_ux_error_boundary.mdx index 3dfc615f01d9a..425395e9752e2 100644 --- a/api_docs/kbn_shared_ux_error_boundary.mdx +++ b/api_docs/kbn_shared_ux_error_boundary.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-shared-ux-error-boundary title: "@kbn/shared-ux-error-boundary" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/shared-ux-error-boundary plugin -date: 2024-02-19 +date: 2024-02-22 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/shared-ux-error-boundary'] --- import kbnSharedUxErrorBoundaryObj from './kbn_shared_ux_error_boundary.devdocs.json'; diff --git a/api_docs/kbn_shared_ux_file_context.mdx b/api_docs/kbn_shared_ux_file_context.mdx index 08c27e792dbfb..5dc1c9c4a7e3e 100644 --- a/api_docs/kbn_shared_ux_file_context.mdx +++ b/api_docs/kbn_shared_ux_file_context.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-shared-ux-file-context title: "@kbn/shared-ux-file-context" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/shared-ux-file-context plugin -date: 2024-02-19 +date: 2024-02-22 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/shared-ux-file-context'] --- import kbnSharedUxFileContextObj from './kbn_shared_ux_file_context.devdocs.json'; diff --git a/api_docs/kbn_shared_ux_file_image.mdx b/api_docs/kbn_shared_ux_file_image.mdx index 367fb56024b10..5a82d9dc5e512 100644 --- a/api_docs/kbn_shared_ux_file_image.mdx +++ b/api_docs/kbn_shared_ux_file_image.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-shared-ux-file-image title: "@kbn/shared-ux-file-image" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/shared-ux-file-image plugin -date: 2024-02-19 +date: 2024-02-22 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/shared-ux-file-image'] --- import kbnSharedUxFileImageObj from './kbn_shared_ux_file_image.devdocs.json'; diff --git a/api_docs/kbn_shared_ux_file_image_mocks.mdx b/api_docs/kbn_shared_ux_file_image_mocks.mdx index d9450dfd6c119..23278fb456bca 100644 --- a/api_docs/kbn_shared_ux_file_image_mocks.mdx +++ b/api_docs/kbn_shared_ux_file_image_mocks.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-shared-ux-file-image-mocks title: "@kbn/shared-ux-file-image-mocks" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/shared-ux-file-image-mocks plugin -date: 2024-02-19 +date: 2024-02-22 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/shared-ux-file-image-mocks'] --- import kbnSharedUxFileImageMocksObj from './kbn_shared_ux_file_image_mocks.devdocs.json'; diff --git a/api_docs/kbn_shared_ux_file_mocks.mdx b/api_docs/kbn_shared_ux_file_mocks.mdx index e901b24c6ee0b..c25d087d22d29 100644 --- a/api_docs/kbn_shared_ux_file_mocks.mdx +++ b/api_docs/kbn_shared_ux_file_mocks.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-shared-ux-file-mocks title: "@kbn/shared-ux-file-mocks" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/shared-ux-file-mocks plugin -date: 2024-02-19 +date: 2024-02-22 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/shared-ux-file-mocks'] --- import kbnSharedUxFileMocksObj from './kbn_shared_ux_file_mocks.devdocs.json'; diff --git a/api_docs/kbn_shared_ux_file_picker.mdx b/api_docs/kbn_shared_ux_file_picker.mdx index 24195ee142ccc..b45e2bec7f4a8 100644 --- a/api_docs/kbn_shared_ux_file_picker.mdx +++ b/api_docs/kbn_shared_ux_file_picker.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-shared-ux-file-picker title: "@kbn/shared-ux-file-picker" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/shared-ux-file-picker plugin -date: 2024-02-19 +date: 2024-02-22 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/shared-ux-file-picker'] --- import kbnSharedUxFilePickerObj from './kbn_shared_ux_file_picker.devdocs.json'; diff --git a/api_docs/kbn_shared_ux_file_types.mdx b/api_docs/kbn_shared_ux_file_types.mdx index 38817bfe32ef7..8ab65552d82ee 100644 --- a/api_docs/kbn_shared_ux_file_types.mdx +++ b/api_docs/kbn_shared_ux_file_types.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-shared-ux-file-types title: "@kbn/shared-ux-file-types" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/shared-ux-file-types plugin -date: 2024-02-19 +date: 2024-02-22 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/shared-ux-file-types'] --- import kbnSharedUxFileTypesObj from './kbn_shared_ux_file_types.devdocs.json'; diff --git a/api_docs/kbn_shared_ux_file_upload.mdx b/api_docs/kbn_shared_ux_file_upload.mdx index 6e4bc3c88d8a1..21dad4732fc84 100644 --- a/api_docs/kbn_shared_ux_file_upload.mdx +++ b/api_docs/kbn_shared_ux_file_upload.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-shared-ux-file-upload title: "@kbn/shared-ux-file-upload" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/shared-ux-file-upload plugin -date: 2024-02-19 +date: 2024-02-22 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/shared-ux-file-upload'] --- import kbnSharedUxFileUploadObj from './kbn_shared_ux_file_upload.devdocs.json'; diff --git a/api_docs/kbn_shared_ux_file_util.mdx b/api_docs/kbn_shared_ux_file_util.mdx index 13aaf656b0ce3..1d3da00d4c0ee 100644 --- a/api_docs/kbn_shared_ux_file_util.mdx +++ b/api_docs/kbn_shared_ux_file_util.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-shared-ux-file-util title: "@kbn/shared-ux-file-util" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/shared-ux-file-util plugin -date: 2024-02-19 +date: 2024-02-22 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/shared-ux-file-util'] --- import kbnSharedUxFileUtilObj from './kbn_shared_ux_file_util.devdocs.json'; diff --git a/api_docs/kbn_shared_ux_link_redirect_app.mdx b/api_docs/kbn_shared_ux_link_redirect_app.mdx index f3daa3a3c02f9..bf7a73b60223c 100644 --- a/api_docs/kbn_shared_ux_link_redirect_app.mdx +++ b/api_docs/kbn_shared_ux_link_redirect_app.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-shared-ux-link-redirect-app title: "@kbn/shared-ux-link-redirect-app" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/shared-ux-link-redirect-app plugin -date: 2024-02-19 +date: 2024-02-22 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/shared-ux-link-redirect-app'] --- import kbnSharedUxLinkRedirectAppObj from './kbn_shared_ux_link_redirect_app.devdocs.json'; diff --git a/api_docs/kbn_shared_ux_link_redirect_app_mocks.mdx b/api_docs/kbn_shared_ux_link_redirect_app_mocks.mdx index 5cd6f112a4d20..a79d08837a137 100644 --- a/api_docs/kbn_shared_ux_link_redirect_app_mocks.mdx +++ b/api_docs/kbn_shared_ux_link_redirect_app_mocks.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-shared-ux-link-redirect-app-mocks title: "@kbn/shared-ux-link-redirect-app-mocks" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/shared-ux-link-redirect-app-mocks plugin -date: 2024-02-19 +date: 2024-02-22 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/shared-ux-link-redirect-app-mocks'] --- import kbnSharedUxLinkRedirectAppMocksObj from './kbn_shared_ux_link_redirect_app_mocks.devdocs.json'; diff --git a/api_docs/kbn_shared_ux_markdown.mdx b/api_docs/kbn_shared_ux_markdown.mdx index 11bf524aba8c5..035a5198ee00c 100644 --- a/api_docs/kbn_shared_ux_markdown.mdx +++ b/api_docs/kbn_shared_ux_markdown.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-shared-ux-markdown title: "@kbn/shared-ux-markdown" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/shared-ux-markdown plugin -date: 2024-02-19 +date: 2024-02-22 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/shared-ux-markdown'] --- import kbnSharedUxMarkdownObj from './kbn_shared_ux_markdown.devdocs.json'; diff --git a/api_docs/kbn_shared_ux_markdown_mocks.mdx b/api_docs/kbn_shared_ux_markdown_mocks.mdx index ae9540048805f..11595d349c037 100644 --- a/api_docs/kbn_shared_ux_markdown_mocks.mdx +++ b/api_docs/kbn_shared_ux_markdown_mocks.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-shared-ux-markdown-mocks title: "@kbn/shared-ux-markdown-mocks" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/shared-ux-markdown-mocks plugin -date: 2024-02-19 +date: 2024-02-22 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/shared-ux-markdown-mocks'] --- import kbnSharedUxMarkdownMocksObj from './kbn_shared_ux_markdown_mocks.devdocs.json'; diff --git a/api_docs/kbn_shared_ux_page_analytics_no_data.mdx b/api_docs/kbn_shared_ux_page_analytics_no_data.mdx index 937514faf07a9..75d484862d8eb 100644 --- a/api_docs/kbn_shared_ux_page_analytics_no_data.mdx +++ b/api_docs/kbn_shared_ux_page_analytics_no_data.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-shared-ux-page-analytics-no-data title: "@kbn/shared-ux-page-analytics-no-data" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/shared-ux-page-analytics-no-data plugin -date: 2024-02-19 +date: 2024-02-22 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/shared-ux-page-analytics-no-data'] --- import kbnSharedUxPageAnalyticsNoDataObj from './kbn_shared_ux_page_analytics_no_data.devdocs.json'; diff --git a/api_docs/kbn_shared_ux_page_analytics_no_data_mocks.mdx b/api_docs/kbn_shared_ux_page_analytics_no_data_mocks.mdx index 7a0960fa95137..cfaf8b504096d 100644 --- a/api_docs/kbn_shared_ux_page_analytics_no_data_mocks.mdx +++ b/api_docs/kbn_shared_ux_page_analytics_no_data_mocks.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-shared-ux-page-analytics-no-data-mocks title: "@kbn/shared-ux-page-analytics-no-data-mocks" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/shared-ux-page-analytics-no-data-mocks plugin -date: 2024-02-19 +date: 2024-02-22 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/shared-ux-page-analytics-no-data-mocks'] --- import kbnSharedUxPageAnalyticsNoDataMocksObj from './kbn_shared_ux_page_analytics_no_data_mocks.devdocs.json'; diff --git a/api_docs/kbn_shared_ux_page_kibana_no_data.mdx b/api_docs/kbn_shared_ux_page_kibana_no_data.mdx index e7e040800e903..be01b3c279f0d 100644 --- a/api_docs/kbn_shared_ux_page_kibana_no_data.mdx +++ b/api_docs/kbn_shared_ux_page_kibana_no_data.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-shared-ux-page-kibana-no-data title: "@kbn/shared-ux-page-kibana-no-data" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/shared-ux-page-kibana-no-data plugin -date: 2024-02-19 +date: 2024-02-22 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/shared-ux-page-kibana-no-data'] --- import kbnSharedUxPageKibanaNoDataObj from './kbn_shared_ux_page_kibana_no_data.devdocs.json'; diff --git a/api_docs/kbn_shared_ux_page_kibana_no_data_mocks.mdx b/api_docs/kbn_shared_ux_page_kibana_no_data_mocks.mdx index c22d6edc94f13..8b1672382823e 100644 --- a/api_docs/kbn_shared_ux_page_kibana_no_data_mocks.mdx +++ b/api_docs/kbn_shared_ux_page_kibana_no_data_mocks.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-shared-ux-page-kibana-no-data-mocks title: "@kbn/shared-ux-page-kibana-no-data-mocks" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/shared-ux-page-kibana-no-data-mocks plugin -date: 2024-02-19 +date: 2024-02-22 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/shared-ux-page-kibana-no-data-mocks'] --- import kbnSharedUxPageKibanaNoDataMocksObj from './kbn_shared_ux_page_kibana_no_data_mocks.devdocs.json'; diff --git a/api_docs/kbn_shared_ux_page_kibana_template.mdx b/api_docs/kbn_shared_ux_page_kibana_template.mdx index aa8525d6ada56..51cff414b9a7e 100644 --- a/api_docs/kbn_shared_ux_page_kibana_template.mdx +++ b/api_docs/kbn_shared_ux_page_kibana_template.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-shared-ux-page-kibana-template title: "@kbn/shared-ux-page-kibana-template" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/shared-ux-page-kibana-template plugin -date: 2024-02-19 +date: 2024-02-22 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/shared-ux-page-kibana-template'] --- import kbnSharedUxPageKibanaTemplateObj from './kbn_shared_ux_page_kibana_template.devdocs.json'; diff --git a/api_docs/kbn_shared_ux_page_kibana_template_mocks.mdx b/api_docs/kbn_shared_ux_page_kibana_template_mocks.mdx index 02f5126d0a551..98ce39c044718 100644 --- a/api_docs/kbn_shared_ux_page_kibana_template_mocks.mdx +++ b/api_docs/kbn_shared_ux_page_kibana_template_mocks.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-shared-ux-page-kibana-template-mocks title: "@kbn/shared-ux-page-kibana-template-mocks" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/shared-ux-page-kibana-template-mocks plugin -date: 2024-02-19 +date: 2024-02-22 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/shared-ux-page-kibana-template-mocks'] --- import kbnSharedUxPageKibanaTemplateMocksObj from './kbn_shared_ux_page_kibana_template_mocks.devdocs.json'; diff --git a/api_docs/kbn_shared_ux_page_no_data.mdx b/api_docs/kbn_shared_ux_page_no_data.mdx index f582b3940af41..800470d207791 100644 --- a/api_docs/kbn_shared_ux_page_no_data.mdx +++ b/api_docs/kbn_shared_ux_page_no_data.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-shared-ux-page-no-data title: "@kbn/shared-ux-page-no-data" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/shared-ux-page-no-data plugin -date: 2024-02-19 +date: 2024-02-22 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/shared-ux-page-no-data'] --- import kbnSharedUxPageNoDataObj from './kbn_shared_ux_page_no_data.devdocs.json'; diff --git a/api_docs/kbn_shared_ux_page_no_data_config.mdx b/api_docs/kbn_shared_ux_page_no_data_config.mdx index 7ce68cc87db8b..48b4766340980 100644 --- a/api_docs/kbn_shared_ux_page_no_data_config.mdx +++ b/api_docs/kbn_shared_ux_page_no_data_config.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-shared-ux-page-no-data-config title: "@kbn/shared-ux-page-no-data-config" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/shared-ux-page-no-data-config plugin -date: 2024-02-19 +date: 2024-02-22 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/shared-ux-page-no-data-config'] --- import kbnSharedUxPageNoDataConfigObj from './kbn_shared_ux_page_no_data_config.devdocs.json'; diff --git a/api_docs/kbn_shared_ux_page_no_data_config_mocks.mdx b/api_docs/kbn_shared_ux_page_no_data_config_mocks.mdx index 7add3f313f665..04b7745b151a9 100644 --- a/api_docs/kbn_shared_ux_page_no_data_config_mocks.mdx +++ b/api_docs/kbn_shared_ux_page_no_data_config_mocks.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-shared-ux-page-no-data-config-mocks title: "@kbn/shared-ux-page-no-data-config-mocks" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/shared-ux-page-no-data-config-mocks plugin -date: 2024-02-19 +date: 2024-02-22 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/shared-ux-page-no-data-config-mocks'] --- import kbnSharedUxPageNoDataConfigMocksObj from './kbn_shared_ux_page_no_data_config_mocks.devdocs.json'; diff --git a/api_docs/kbn_shared_ux_page_no_data_mocks.mdx b/api_docs/kbn_shared_ux_page_no_data_mocks.mdx index 962149d4ecc5f..366bcdfda0e3f 100644 --- a/api_docs/kbn_shared_ux_page_no_data_mocks.mdx +++ b/api_docs/kbn_shared_ux_page_no_data_mocks.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-shared-ux-page-no-data-mocks title: "@kbn/shared-ux-page-no-data-mocks" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/shared-ux-page-no-data-mocks plugin -date: 2024-02-19 +date: 2024-02-22 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/shared-ux-page-no-data-mocks'] --- import kbnSharedUxPageNoDataMocksObj from './kbn_shared_ux_page_no_data_mocks.devdocs.json'; diff --git a/api_docs/kbn_shared_ux_page_solution_nav.mdx b/api_docs/kbn_shared_ux_page_solution_nav.mdx index 83110736af57b..27d8963c04abf 100644 --- a/api_docs/kbn_shared_ux_page_solution_nav.mdx +++ b/api_docs/kbn_shared_ux_page_solution_nav.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-shared-ux-page-solution-nav title: "@kbn/shared-ux-page-solution-nav" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/shared-ux-page-solution-nav plugin -date: 2024-02-19 +date: 2024-02-22 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/shared-ux-page-solution-nav'] --- import kbnSharedUxPageSolutionNavObj from './kbn_shared_ux_page_solution_nav.devdocs.json'; diff --git a/api_docs/kbn_shared_ux_prompt_no_data_views.mdx b/api_docs/kbn_shared_ux_prompt_no_data_views.mdx index ad2df9d961b92..325c080d68468 100644 --- a/api_docs/kbn_shared_ux_prompt_no_data_views.mdx +++ b/api_docs/kbn_shared_ux_prompt_no_data_views.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-shared-ux-prompt-no-data-views title: "@kbn/shared-ux-prompt-no-data-views" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/shared-ux-prompt-no-data-views plugin -date: 2024-02-19 +date: 2024-02-22 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/shared-ux-prompt-no-data-views'] --- import kbnSharedUxPromptNoDataViewsObj from './kbn_shared_ux_prompt_no_data_views.devdocs.json'; diff --git a/api_docs/kbn_shared_ux_prompt_no_data_views_mocks.mdx b/api_docs/kbn_shared_ux_prompt_no_data_views_mocks.mdx index fc78f37828187..1a34bd110fa7b 100644 --- a/api_docs/kbn_shared_ux_prompt_no_data_views_mocks.mdx +++ b/api_docs/kbn_shared_ux_prompt_no_data_views_mocks.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-shared-ux-prompt-no-data-views-mocks title: "@kbn/shared-ux-prompt-no-data-views-mocks" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/shared-ux-prompt-no-data-views-mocks plugin -date: 2024-02-19 +date: 2024-02-22 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/shared-ux-prompt-no-data-views-mocks'] --- import kbnSharedUxPromptNoDataViewsMocksObj from './kbn_shared_ux_prompt_no_data_views_mocks.devdocs.json'; diff --git a/api_docs/kbn_shared_ux_prompt_not_found.mdx b/api_docs/kbn_shared_ux_prompt_not_found.mdx index 40cf43f8616f3..39e91a16ef29e 100644 --- a/api_docs/kbn_shared_ux_prompt_not_found.mdx +++ b/api_docs/kbn_shared_ux_prompt_not_found.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-shared-ux-prompt-not-found title: "@kbn/shared-ux-prompt-not-found" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/shared-ux-prompt-not-found plugin -date: 2024-02-19 +date: 2024-02-22 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/shared-ux-prompt-not-found'] --- import kbnSharedUxPromptNotFoundObj from './kbn_shared_ux_prompt_not_found.devdocs.json'; diff --git a/api_docs/kbn_shared_ux_router.mdx b/api_docs/kbn_shared_ux_router.mdx index cc74459eed0cd..647a9a1514c13 100644 --- a/api_docs/kbn_shared_ux_router.mdx +++ b/api_docs/kbn_shared_ux_router.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-shared-ux-router title: "@kbn/shared-ux-router" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/shared-ux-router plugin -date: 2024-02-19 +date: 2024-02-22 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/shared-ux-router'] --- import kbnSharedUxRouterObj from './kbn_shared_ux_router.devdocs.json'; diff --git a/api_docs/kbn_shared_ux_router_mocks.mdx b/api_docs/kbn_shared_ux_router_mocks.mdx index 4efe94af00fc3..344f9dcfef525 100644 --- a/api_docs/kbn_shared_ux_router_mocks.mdx +++ b/api_docs/kbn_shared_ux_router_mocks.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-shared-ux-router-mocks title: "@kbn/shared-ux-router-mocks" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/shared-ux-router-mocks plugin -date: 2024-02-19 +date: 2024-02-22 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/shared-ux-router-mocks'] --- import kbnSharedUxRouterMocksObj from './kbn_shared_ux_router_mocks.devdocs.json'; diff --git a/api_docs/kbn_shared_ux_storybook_config.mdx b/api_docs/kbn_shared_ux_storybook_config.mdx index 0e72ef7c0a1c8..813b21f2ddde5 100644 --- a/api_docs/kbn_shared_ux_storybook_config.mdx +++ b/api_docs/kbn_shared_ux_storybook_config.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-shared-ux-storybook-config title: "@kbn/shared-ux-storybook-config" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/shared-ux-storybook-config plugin -date: 2024-02-19 +date: 2024-02-22 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/shared-ux-storybook-config'] --- import kbnSharedUxStorybookConfigObj from './kbn_shared_ux_storybook_config.devdocs.json'; diff --git a/api_docs/kbn_shared_ux_storybook_mock.mdx b/api_docs/kbn_shared_ux_storybook_mock.mdx index 21e26133879b9..c969ae3b846d0 100644 --- a/api_docs/kbn_shared_ux_storybook_mock.mdx +++ b/api_docs/kbn_shared_ux_storybook_mock.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-shared-ux-storybook-mock title: "@kbn/shared-ux-storybook-mock" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/shared-ux-storybook-mock plugin -date: 2024-02-19 +date: 2024-02-22 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/shared-ux-storybook-mock'] --- import kbnSharedUxStorybookMockObj from './kbn_shared_ux_storybook_mock.devdocs.json'; diff --git a/api_docs/kbn_shared_ux_utility.mdx b/api_docs/kbn_shared_ux_utility.mdx index 4da7fcfff97c2..620f5a3e94fa6 100644 --- a/api_docs/kbn_shared_ux_utility.mdx +++ b/api_docs/kbn_shared_ux_utility.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-shared-ux-utility title: "@kbn/shared-ux-utility" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/shared-ux-utility plugin -date: 2024-02-19 +date: 2024-02-22 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/shared-ux-utility'] --- import kbnSharedUxUtilityObj from './kbn_shared_ux_utility.devdocs.json'; diff --git a/api_docs/kbn_slo_schema.mdx b/api_docs/kbn_slo_schema.mdx index 9ce2a703f0467..dcfd8edac7cb3 100644 --- a/api_docs/kbn_slo_schema.mdx +++ b/api_docs/kbn_slo_schema.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-slo-schema title: "@kbn/slo-schema" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/slo-schema plugin -date: 2024-02-19 +date: 2024-02-22 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/slo-schema'] --- import kbnSloSchemaObj from './kbn_slo_schema.devdocs.json'; diff --git a/api_docs/kbn_some_dev_log.mdx b/api_docs/kbn_some_dev_log.mdx index c24ad9cfaac58..412617f912dc1 100644 --- a/api_docs/kbn_some_dev_log.mdx +++ b/api_docs/kbn_some_dev_log.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-some-dev-log title: "@kbn/some-dev-log" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/some-dev-log plugin -date: 2024-02-19 +date: 2024-02-22 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/some-dev-log'] --- import kbnSomeDevLogObj from './kbn_some_dev_log.devdocs.json'; diff --git a/api_docs/kbn_sort_predicates.mdx b/api_docs/kbn_sort_predicates.mdx index d513ac11f17f6..e2b90d59db3f4 100644 --- a/api_docs/kbn_sort_predicates.mdx +++ b/api_docs/kbn_sort_predicates.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-sort-predicates title: "@kbn/sort-predicates" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/sort-predicates plugin -date: 2024-02-19 +date: 2024-02-22 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/sort-predicates'] --- import kbnSortPredicatesObj from './kbn_sort_predicates.devdocs.json'; diff --git a/api_docs/kbn_std.mdx b/api_docs/kbn_std.mdx index bc97cf14c0cef..9a7f99c44adf9 100644 --- a/api_docs/kbn_std.mdx +++ b/api_docs/kbn_std.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-std title: "@kbn/std" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/std plugin -date: 2024-02-19 +date: 2024-02-22 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/std'] --- import kbnStdObj from './kbn_std.devdocs.json'; diff --git a/api_docs/kbn_stdio_dev_helpers.mdx b/api_docs/kbn_stdio_dev_helpers.mdx index caa0b51575370..7ccfbb8d631b6 100644 --- a/api_docs/kbn_stdio_dev_helpers.mdx +++ b/api_docs/kbn_stdio_dev_helpers.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-stdio-dev-helpers title: "@kbn/stdio-dev-helpers" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/stdio-dev-helpers plugin -date: 2024-02-19 +date: 2024-02-22 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/stdio-dev-helpers'] --- import kbnStdioDevHelpersObj from './kbn_stdio_dev_helpers.devdocs.json'; diff --git a/api_docs/kbn_storybook.mdx b/api_docs/kbn_storybook.mdx index 75326ce183284..ff5bb92f048c6 100644 --- a/api_docs/kbn_storybook.mdx +++ b/api_docs/kbn_storybook.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-storybook title: "@kbn/storybook" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/storybook plugin -date: 2024-02-19 +date: 2024-02-22 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/storybook'] --- import kbnStorybookObj from './kbn_storybook.devdocs.json'; diff --git a/api_docs/kbn_telemetry_tools.mdx b/api_docs/kbn_telemetry_tools.mdx index dd8b3c92b0e3f..5957cf598b223 100644 --- a/api_docs/kbn_telemetry_tools.mdx +++ b/api_docs/kbn_telemetry_tools.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-telemetry-tools title: "@kbn/telemetry-tools" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/telemetry-tools plugin -date: 2024-02-19 +date: 2024-02-22 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/telemetry-tools'] --- import kbnTelemetryToolsObj from './kbn_telemetry_tools.devdocs.json'; diff --git a/api_docs/kbn_test.mdx b/api_docs/kbn_test.mdx index 95de1ec4e3917..7b500e1bbdf43 100644 --- a/api_docs/kbn_test.mdx +++ b/api_docs/kbn_test.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-test title: "@kbn/test" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/test plugin -date: 2024-02-19 +date: 2024-02-22 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/test'] --- import kbnTestObj from './kbn_test.devdocs.json'; diff --git a/api_docs/kbn_test_eui_helpers.mdx b/api_docs/kbn_test_eui_helpers.mdx index f0e5730b1d7a1..da8c9e8e5b0cf 100644 --- a/api_docs/kbn_test_eui_helpers.mdx +++ b/api_docs/kbn_test_eui_helpers.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-test-eui-helpers title: "@kbn/test-eui-helpers" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/test-eui-helpers plugin -date: 2024-02-19 +date: 2024-02-22 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/test-eui-helpers'] --- import kbnTestEuiHelpersObj from './kbn_test_eui_helpers.devdocs.json'; diff --git a/api_docs/kbn_test_jest_helpers.mdx b/api_docs/kbn_test_jest_helpers.mdx index fe46afeddda4c..5b18671deb7e5 100644 --- a/api_docs/kbn_test_jest_helpers.mdx +++ b/api_docs/kbn_test_jest_helpers.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-test-jest-helpers title: "@kbn/test-jest-helpers" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/test-jest-helpers plugin -date: 2024-02-19 +date: 2024-02-22 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/test-jest-helpers'] --- import kbnTestJestHelpersObj from './kbn_test_jest_helpers.devdocs.json'; diff --git a/api_docs/kbn_test_subj_selector.mdx b/api_docs/kbn_test_subj_selector.mdx index 12641549e39d5..3731d06e35b3d 100644 --- a/api_docs/kbn_test_subj_selector.mdx +++ b/api_docs/kbn_test_subj_selector.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-test-subj-selector title: "@kbn/test-subj-selector" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/test-subj-selector plugin -date: 2024-02-19 +date: 2024-02-22 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/test-subj-selector'] --- import kbnTestSubjSelectorObj from './kbn_test_subj_selector.devdocs.json'; diff --git a/api_docs/kbn_text_based_editor.mdx b/api_docs/kbn_text_based_editor.mdx index b9f2be440da40..5fecbaa29603b 100644 --- a/api_docs/kbn_text_based_editor.mdx +++ b/api_docs/kbn_text_based_editor.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-text-based-editor title: "@kbn/text-based-editor" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/text-based-editor plugin -date: 2024-02-19 +date: 2024-02-22 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/text-based-editor'] --- import kbnTextBasedEditorObj from './kbn_text_based_editor.devdocs.json'; diff --git a/api_docs/kbn_timerange.devdocs.json b/api_docs/kbn_timerange.devdocs.json new file mode 100644 index 0000000000000..ed4a19c41a6e9 --- /dev/null +++ b/api_docs/kbn_timerange.devdocs.json @@ -0,0 +1,134 @@ +{ + "id": "@kbn/timerange", + "client": { + "classes": [], + "functions": [], + "interfaces": [], + "enums": [], + "misc": [], + "objects": [] + }, + "server": { + "classes": [], + "functions": [], + "interfaces": [], + "enums": [], + "misc": [], + "objects": [] + }, + "common": { + "classes": [], + "functions": [ + { + "parentPluginId": "@kbn/timerange", + "id": "def-common.getDateISORange", + "type": "Function", + "tags": [], + "label": "getDateISORange", + "description": [], + "signature": [ + "({ from, to }: { from: string; to: string; }) => { startDate: string; endDate: string; }" + ], + "path": "packages/kbn-timerange/src/index.ts", + "deprecated": false, + "trackAdoption": false, + "children": [ + { + "parentPluginId": "@kbn/timerange", + "id": "def-common.getDateISORange.$1", + "type": "Object", + "tags": [], + "label": "{ from, to }", + "description": [], + "path": "packages/kbn-timerange/src/index.ts", + "deprecated": false, + "trackAdoption": false, + "children": [ + { + "parentPluginId": "@kbn/timerange", + "id": "def-common.getDateISORange.$1.from", + "type": "string", + "tags": [], + "label": "from", + "description": [], + "path": "packages/kbn-timerange/src/index.ts", + "deprecated": false, + "trackAdoption": false + }, + { + "parentPluginId": "@kbn/timerange", + "id": "def-common.getDateISORange.$1.to", + "type": "string", + "tags": [], + "label": "to", + "description": [], + "path": "packages/kbn-timerange/src/index.ts", + "deprecated": false, + "trackAdoption": false + } + ] + } + ], + "returnComment": [], + "initialIsOpen": false + }, + { + "parentPluginId": "@kbn/timerange", + "id": "def-common.getDateRange", + "type": "Function", + "tags": [], + "label": "getDateRange", + "description": [], + "signature": [ + "({ from, to }: { from: string; to: string; }) => { startDate: number; endDate: number; }" + ], + "path": "packages/kbn-timerange/src/index.ts", + "deprecated": false, + "trackAdoption": false, + "children": [ + { + "parentPluginId": "@kbn/timerange", + "id": "def-common.getDateRange.$1", + "type": "Object", + "tags": [], + "label": "{ from, to }", + "description": [], + "path": "packages/kbn-timerange/src/index.ts", + "deprecated": false, + "trackAdoption": false, + "children": [ + { + "parentPluginId": "@kbn/timerange", + "id": "def-common.getDateRange.$1.from", + "type": "string", + "tags": [], + "label": "from", + "description": [], + "path": "packages/kbn-timerange/src/index.ts", + "deprecated": false, + "trackAdoption": false + }, + { + "parentPluginId": "@kbn/timerange", + "id": "def-common.getDateRange.$1.to", + "type": "string", + "tags": [], + "label": "to", + "description": [], + "path": "packages/kbn-timerange/src/index.ts", + "deprecated": false, + "trackAdoption": false + } + ] + } + ], + "returnComment": [], + "initialIsOpen": false + } + ], + "interfaces": [], + "enums": [], + "misc": [], + "objects": [] + } +} \ No newline at end of file diff --git a/api_docs/kbn_timerange.mdx b/api_docs/kbn_timerange.mdx new file mode 100644 index 0000000000000..38a06cc796dc8 --- /dev/null +++ b/api_docs/kbn_timerange.mdx @@ -0,0 +1,30 @@ +--- +#### +#### 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: kibKbnTimerangePluginApi +slug: /kibana-dev-docs/api/kbn-timerange +title: "@kbn/timerange" +image: https://source.unsplash.com/400x175/?github +description: API docs for the @kbn/timerange plugin +date: 2024-02-22 +tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/timerange'] +--- +import kbnTimerangeObj from './kbn_timerange.devdocs.json'; + + + +Contact [@elastic/obs-ux-logs-team](https://github.com/orgs/elastic/teams/obs-ux-logs-team) for questions regarding this plugin. + +**Code health stats** + +| Public API count | Any count | Items lacking comments | Missing exports | +|-------------------|-----------|------------------------|-----------------| +| 8 | 0 | 8 | 0 | + +## Common + +### Functions + + diff --git a/api_docs/kbn_tooling_log.mdx b/api_docs/kbn_tooling_log.mdx index e1544ddbc773b..619c64357cd52 100644 --- a/api_docs/kbn_tooling_log.mdx +++ b/api_docs/kbn_tooling_log.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-tooling-log title: "@kbn/tooling-log" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/tooling-log plugin -date: 2024-02-19 +date: 2024-02-22 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/tooling-log'] --- import kbnToolingLogObj from './kbn_tooling_log.devdocs.json'; diff --git a/api_docs/kbn_triggers_actions_ui_types.mdx b/api_docs/kbn_triggers_actions_ui_types.mdx index 9c795e573bd9d..300a2c742aa43 100644 --- a/api_docs/kbn_triggers_actions_ui_types.mdx +++ b/api_docs/kbn_triggers_actions_ui_types.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-triggers-actions-ui-types title: "@kbn/triggers-actions-ui-types" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/triggers-actions-ui-types plugin -date: 2024-02-19 +date: 2024-02-22 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/triggers-actions-ui-types'] --- import kbnTriggersActionsUiTypesObj from './kbn_triggers_actions_ui_types.devdocs.json'; diff --git a/api_docs/kbn_ts_projects.mdx b/api_docs/kbn_ts_projects.mdx index 59a1e40285715..f6baff84a3ed7 100644 --- a/api_docs/kbn_ts_projects.mdx +++ b/api_docs/kbn_ts_projects.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-ts-projects title: "@kbn/ts-projects" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/ts-projects plugin -date: 2024-02-19 +date: 2024-02-22 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/ts-projects'] --- import kbnTsProjectsObj from './kbn_ts_projects.devdocs.json'; diff --git a/api_docs/kbn_typed_react_router_config.mdx b/api_docs/kbn_typed_react_router_config.mdx index d2a5b87f66351..b41237d0f41be 100644 --- a/api_docs/kbn_typed_react_router_config.mdx +++ b/api_docs/kbn_typed_react_router_config.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-typed-react-router-config title: "@kbn/typed-react-router-config" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/typed-react-router-config plugin -date: 2024-02-19 +date: 2024-02-22 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/typed-react-router-config'] --- import kbnTypedReactRouterConfigObj from './kbn_typed_react_router_config.devdocs.json'; diff --git a/api_docs/kbn_ui_actions_browser.mdx b/api_docs/kbn_ui_actions_browser.mdx index e803558be1c45..647c639d1bc86 100644 --- a/api_docs/kbn_ui_actions_browser.mdx +++ b/api_docs/kbn_ui_actions_browser.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-ui-actions-browser title: "@kbn/ui-actions-browser" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/ui-actions-browser plugin -date: 2024-02-19 +date: 2024-02-22 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/ui-actions-browser'] --- import kbnUiActionsBrowserObj from './kbn_ui_actions_browser.devdocs.json'; diff --git a/api_docs/kbn_ui_shared_deps_src.mdx b/api_docs/kbn_ui_shared_deps_src.mdx index 4ca348f16bc44..13f663a61afb9 100644 --- a/api_docs/kbn_ui_shared_deps_src.mdx +++ b/api_docs/kbn_ui_shared_deps_src.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-ui-shared-deps-src title: "@kbn/ui-shared-deps-src" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/ui-shared-deps-src plugin -date: 2024-02-19 +date: 2024-02-22 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/ui-shared-deps-src'] --- import kbnUiSharedDepsSrcObj from './kbn_ui_shared_deps_src.devdocs.json'; diff --git a/api_docs/kbn_ui_theme.devdocs.json b/api_docs/kbn_ui_theme.devdocs.json index 5d5a8c70282ca..bf9811bcad6d2 100644 --- a/api_docs/kbn_ui_theme.devdocs.json +++ b/api_docs/kbn_ui_theme.devdocs.json @@ -18,7 +18,41 @@ }, "common": { "classes": [], - "functions": [], + "functions": [ + { + "parentPluginId": "@kbn/ui-theme", + "id": "def-common._setDarkMode", + "type": "Function", + "tags": [], + "label": "_setDarkMode", + "description": [], + "signature": [ + "(mode: boolean) => void" + ], + "path": "packages/kbn-ui-theme/src/theme.ts", + "deprecated": false, + "trackAdoption": false, + "children": [ + { + "parentPluginId": "@kbn/ui-theme", + "id": "def-common._setDarkMode.$1", + "type": "boolean", + "tags": [], + "label": "mode", + "description": [], + "signature": [ + "boolean" + ], + "path": "packages/kbn-ui-theme/src/theme.ts", + "deprecated": false, + "trackAdoption": false, + "isRequired": true + } + ], + "returnComment": [], + "initialIsOpen": false + } + ], "interfaces": [], "enums": [], "misc": [ @@ -26,24 +60,59 @@ "parentPluginId": "@kbn/ui-theme", "id": "def-common.darkMode", "type": "boolean", - "tags": [], + "tags": [ + "deprecated" + ], "label": "darkMode", "description": [], "path": "packages/kbn-ui-theme/src/theme.ts", - "deprecated": false, + "deprecated": true, "trackAdoption": false, + "references": [ + { + "plugin": "@kbn/monaco", + "path": "packages/kbn-monaco/src/esql/lib/monaco/esql_theme.ts" + }, + { + "plugin": "@kbn/monaco", + "path": "packages/kbn-monaco/src/esql/lib/monaco/esql_theme.ts" + }, + { + "plugin": "securitySolution", + "path": "x-pack/plugins/security_solution/public/resolver/view/use_colors.ts" + }, + { + "plugin": "securitySolution", + "path": "x-pack/plugins/security_solution/public/resolver/view/use_colors.ts" + }, + { + "plugin": "securitySolution", + "path": "x-pack/plugins/security_solution/public/resolver/view/use_colors.ts" + }, + { + "plugin": "securitySolution", + "path": "x-pack/plugins/security_solution/public/resolver/view/use_colors.ts" + }, + { + "plugin": "securitySolution", + "path": "x-pack/plugins/security_solution/public/resolver/view/use_colors.ts" + } + ], "initialIsOpen": false }, { "parentPluginId": "@kbn/ui-theme", "id": "def-common.tag", "type": "string", - "tags": [], + "tags": [ + "deprecated" + ], "label": "tag", "description": [], "path": "packages/kbn-ui-theme/src/theme.ts", - "deprecated": false, + "deprecated": true, "trackAdoption": false, + "references": [], "initialIsOpen": false }, { @@ -65,15 +134,18 @@ "parentPluginId": "@kbn/ui-theme", "id": "def-common.version", "type": "number", - "tags": [], + "tags": [ + "deprecated" + ], "label": "version", "description": [], "signature": [ "8" ], "path": "packages/kbn-ui-theme/src/theme.ts", - "deprecated": false, + "deprecated": true, "trackAdoption": false, + "references": [], "initialIsOpen": false } ], diff --git a/api_docs/kbn_ui_theme.mdx b/api_docs/kbn_ui_theme.mdx index 0d1ec74e92aee..48f00664dfc5c 100644 --- a/api_docs/kbn_ui_theme.mdx +++ b/api_docs/kbn_ui_theme.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-ui-theme title: "@kbn/ui-theme" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/ui-theme plugin -date: 2024-02-19 +date: 2024-02-22 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/ui-theme'] --- import kbnUiThemeObj from './kbn_ui_theme.devdocs.json'; @@ -21,13 +21,16 @@ Contact [@elastic/kibana-operations](https://github.com/orgs/elastic/teams/kiban | Public API count | Any count | Items lacking comments | Missing exports | |-------------------|-----------|------------------------|-----------------| -| 7 | 0 | 6 | 0 | +| 9 | 0 | 8 | 0 | ## Common ### Objects +### Functions + + ### Consts, variables and types diff --git a/api_docs/kbn_unified_data_table.mdx b/api_docs/kbn_unified_data_table.mdx index 2fa0a83368912..3544417a034d2 100644 --- a/api_docs/kbn_unified_data_table.mdx +++ b/api_docs/kbn_unified_data_table.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-unified-data-table title: "@kbn/unified-data-table" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/unified-data-table plugin -date: 2024-02-19 +date: 2024-02-22 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/unified-data-table'] --- import kbnUnifiedDataTableObj from './kbn_unified_data_table.devdocs.json'; diff --git a/api_docs/kbn_unified_doc_viewer.mdx b/api_docs/kbn_unified_doc_viewer.mdx index 052b84191dff4..e99e6bd18138d 100644 --- a/api_docs/kbn_unified_doc_viewer.mdx +++ b/api_docs/kbn_unified_doc_viewer.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-unified-doc-viewer title: "@kbn/unified-doc-viewer" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/unified-doc-viewer plugin -date: 2024-02-19 +date: 2024-02-22 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/unified-doc-viewer'] --- import kbnUnifiedDocViewerObj from './kbn_unified_doc_viewer.devdocs.json'; diff --git a/api_docs/kbn_unified_field_list.mdx b/api_docs/kbn_unified_field_list.mdx index 3d4d115a70f58..41156b3d3d2e0 100644 --- a/api_docs/kbn_unified_field_list.mdx +++ b/api_docs/kbn_unified_field_list.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-unified-field-list title: "@kbn/unified-field-list" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/unified-field-list plugin -date: 2024-02-19 +date: 2024-02-22 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/unified-field-list'] --- import kbnUnifiedFieldListObj from './kbn_unified_field_list.devdocs.json'; diff --git a/api_docs/kbn_unsaved_changes_badge.mdx b/api_docs/kbn_unsaved_changes_badge.mdx index ebfdbd7d9ee40..7c7b0573037e0 100644 --- a/api_docs/kbn_unsaved_changes_badge.mdx +++ b/api_docs/kbn_unsaved_changes_badge.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-unsaved-changes-badge title: "@kbn/unsaved-changes-badge" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/unsaved-changes-badge plugin -date: 2024-02-19 +date: 2024-02-22 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/unsaved-changes-badge'] --- import kbnUnsavedChangesBadgeObj from './kbn_unsaved_changes_badge.devdocs.json'; diff --git a/api_docs/kbn_use_tracked_promise.mdx b/api_docs/kbn_use_tracked_promise.mdx index 76622ccd189f3..fd12a91055dd3 100644 --- a/api_docs/kbn_use_tracked_promise.mdx +++ b/api_docs/kbn_use_tracked_promise.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-use-tracked-promise title: "@kbn/use-tracked-promise" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/use-tracked-promise plugin -date: 2024-02-19 +date: 2024-02-22 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/use-tracked-promise'] --- import kbnUseTrackedPromiseObj from './kbn_use_tracked_promise.devdocs.json'; diff --git a/api_docs/kbn_user_profile_components.mdx b/api_docs/kbn_user_profile_components.mdx index f89c11ccb472e..4882ad43059d3 100644 --- a/api_docs/kbn_user_profile_components.mdx +++ b/api_docs/kbn_user_profile_components.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-user-profile-components title: "@kbn/user-profile-components" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/user-profile-components plugin -date: 2024-02-19 +date: 2024-02-22 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/user-profile-components'] --- import kbnUserProfileComponentsObj from './kbn_user_profile_components.devdocs.json'; diff --git a/api_docs/kbn_utility_types.mdx b/api_docs/kbn_utility_types.mdx index 0c10f4a269824..89d4ef40a4811 100644 --- a/api_docs/kbn_utility_types.mdx +++ b/api_docs/kbn_utility_types.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-utility-types title: "@kbn/utility-types" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/utility-types plugin -date: 2024-02-19 +date: 2024-02-22 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/utility-types'] --- import kbnUtilityTypesObj from './kbn_utility_types.devdocs.json'; diff --git a/api_docs/kbn_utility_types_jest.mdx b/api_docs/kbn_utility_types_jest.mdx index 2ae0c726c55f3..a2468222361d7 100644 --- a/api_docs/kbn_utility_types_jest.mdx +++ b/api_docs/kbn_utility_types_jest.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-utility-types-jest title: "@kbn/utility-types-jest" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/utility-types-jest plugin -date: 2024-02-19 +date: 2024-02-22 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/utility-types-jest'] --- import kbnUtilityTypesJestObj from './kbn_utility_types_jest.devdocs.json'; diff --git a/api_docs/kbn_utils.mdx b/api_docs/kbn_utils.mdx index f54f39f03cfd3..5a1c0e645b217 100644 --- a/api_docs/kbn_utils.mdx +++ b/api_docs/kbn_utils.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-utils title: "@kbn/utils" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/utils plugin -date: 2024-02-19 +date: 2024-02-22 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/utils'] --- import kbnUtilsObj from './kbn_utils.devdocs.json'; diff --git a/api_docs/kbn_visualization_ui_components.mdx b/api_docs/kbn_visualization_ui_components.mdx index 36b89ebbbeb22..5f8153b46856d 100644 --- a/api_docs/kbn_visualization_ui_components.mdx +++ b/api_docs/kbn_visualization_ui_components.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-visualization-ui-components title: "@kbn/visualization-ui-components" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/visualization-ui-components plugin -date: 2024-02-19 +date: 2024-02-22 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/visualization-ui-components'] --- import kbnVisualizationUiComponentsObj from './kbn_visualization_ui_components.devdocs.json'; diff --git a/api_docs/kbn_visualization_utils.mdx b/api_docs/kbn_visualization_utils.mdx index c0d52b734e823..23ef39abd3eaa 100644 --- a/api_docs/kbn_visualization_utils.mdx +++ b/api_docs/kbn_visualization_utils.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-visualization-utils title: "@kbn/visualization-utils" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/visualization-utils plugin -date: 2024-02-19 +date: 2024-02-22 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/visualization-utils'] --- import kbnVisualizationUtilsObj from './kbn_visualization_utils.devdocs.json'; diff --git a/api_docs/kbn_xstate_utils.mdx b/api_docs/kbn_xstate_utils.mdx index 4251af327c76f..fcb911ccb5cf7 100644 --- a/api_docs/kbn_xstate_utils.mdx +++ b/api_docs/kbn_xstate_utils.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-xstate-utils title: "@kbn/xstate-utils" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/xstate-utils plugin -date: 2024-02-19 +date: 2024-02-22 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/xstate-utils'] --- import kbnXstateUtilsObj from './kbn_xstate_utils.devdocs.json'; diff --git a/api_docs/kbn_yarn_lock_validator.mdx b/api_docs/kbn_yarn_lock_validator.mdx index 8145e58db9c77..3c388661ed121 100644 --- a/api_docs/kbn_yarn_lock_validator.mdx +++ b/api_docs/kbn_yarn_lock_validator.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-yarn-lock-validator title: "@kbn/yarn-lock-validator" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/yarn-lock-validator plugin -date: 2024-02-19 +date: 2024-02-22 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/yarn-lock-validator'] --- import kbnYarnLockValidatorObj from './kbn_yarn_lock_validator.devdocs.json'; diff --git a/api_docs/kbn_zod_helpers.mdx b/api_docs/kbn_zod_helpers.mdx index e378b13a0db8c..53c81efdf1c1b 100644 --- a/api_docs/kbn_zod_helpers.mdx +++ b/api_docs/kbn_zod_helpers.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-zod-helpers title: "@kbn/zod-helpers" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/zod-helpers plugin -date: 2024-02-19 +date: 2024-02-22 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/zod-helpers'] --- import kbnZodHelpersObj from './kbn_zod_helpers.devdocs.json'; diff --git a/api_docs/kibana_overview.mdx b/api_docs/kibana_overview.mdx index 40d645ea54901..fd092ed62eb73 100644 --- a/api_docs/kibana_overview.mdx +++ b/api_docs/kibana_overview.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kibanaOverview title: "kibanaOverview" image: https://source.unsplash.com/400x175/?github description: API docs for the kibanaOverview plugin -date: 2024-02-19 +date: 2024-02-22 tags: ['contributor', 'dev', 'apidocs', 'kibana', 'kibanaOverview'] --- import kibanaOverviewObj from './kibana_overview.devdocs.json'; diff --git a/api_docs/kibana_react.devdocs.json b/api_docs/kibana_react.devdocs.json index da6c35434bffb..5578e82bf7f5d 100644 --- a/api_docs/kibana_react.devdocs.json +++ b/api_docs/kibana_react.devdocs.json @@ -41,9 +41,7 @@ "tags": [], "label": "allowEmptyRange", "description": [], - "signature": [ - "true" - ], + "signature": ["true"], "path": "src/plugins/kibana_react/public/validated_range/validated_dual_range.tsx", "deprecated": false, "trackAdoption": false @@ -55,9 +53,7 @@ "tags": [], "label": "fullWidth", "description": [], - "signature": [ - "false" - ], + "signature": ["false"], "path": "src/plugins/kibana_react/public/validated_range/validated_dual_range.tsx", "deprecated": false, "trackAdoption": false @@ -69,9 +65,7 @@ "tags": [], "label": "compressed", "description": [], - "signature": [ - "false" - ], + "signature": ["false"], "path": "src/plugins/kibana_react/public/validated_range/validated_dual_range.tsx", "deprecated": false, "trackAdoption": false @@ -99,9 +93,7 @@ "tags": [], "label": "nextProps", "description": [], - "signature": [ - "Props" - ], + "signature": ["Props"], "path": "src/plugins/kibana_react/public/validated_range/validated_dual_range.tsx", "deprecated": false, "trackAdoption": false, @@ -114,9 +106,7 @@ "tags": [], "label": "prevState", "description": [], - "signature": [ - "State" - ], + "signature": ["State"], "path": "src/plugins/kibana_react/public/validated_range/validated_dual_range.tsx", "deprecated": false, "trackAdoption": false, @@ -144,9 +134,7 @@ "tags": [], "label": "_onChange", "description": [], - "signature": [ - "(value: [string | number, string | number]) => void" - ], + "signature": ["(value: [string | number, string | number]) => void"], "path": "src/plugins/kibana_react/public/validated_range/validated_dual_range.tsx", "deprecated": false, "trackAdoption": false, @@ -158,9 +146,7 @@ "tags": [], "label": "value", "description": [], - "signature": [ - "[string | number, string | number]" - ], + "signature": ["[string | number, string | number]"], "path": "src/plugins/kibana_react/public/validated_range/validated_dual_range.tsx", "deprecated": false, "trackAdoption": false, @@ -176,9 +162,7 @@ "tags": [], "label": "render", "description": [], - "signature": [ - "() => JSX.Element" - ], + "signature": ["() => JSX.Element"], "path": "src/plugins/kibana_react/public/validated_range/validated_dual_range.tsx", "deprecated": false, "trackAdoption": false, @@ -227,9 +211,7 @@ "tags": [], "label": "services", "description": [], - "signature": [ - "Services" - ], + "signature": ["Services"], "path": "src/plugins/kibana_react/public/context/context.tsx", "deprecated": false, "trackAdoption": false, @@ -357,9 +339,7 @@ "type": "Function", "tags": [], "label": "ElasticAgentCard", - "description": [ - "\nApplies extra styling to a typical EuiAvatar" - ], + "description": ["\nApplies extra styling to a typical EuiAvatar"], "signature": [ "({ solution, recommended, title, href, button, layout, category, ...cardRest }: React.PropsWithChildren<", { @@ -409,9 +389,7 @@ "tags": [], "label": "KibanaContextProvider", "description": [], - "signature": [ - "React.FunctionComponent<{ services?: {} | undefined; }>" - ], + "signature": ["React.FunctionComponent<{ services?: {} | undefined; }>"], "path": "src/plugins/kibana_react/public/context/context.tsx", "deprecated": false, "trackAdoption": false, @@ -424,9 +402,7 @@ "tags": [], "label": "props", "description": [], - "signature": [ - "P & { children?: React.ReactNode; }" - ], + "signature": ["P & { children?: React.ReactNode; }"], "path": "node_modules/@types/react/index.d.ts", "deprecated": false, "trackAdoption": false @@ -438,9 +414,7 @@ "tags": [], "label": "context", "description": [], - "signature": [ - "any" - ], + "signature": ["any"], "path": "node_modules/@types/react/index.d.ts", "deprecated": false, "trackAdoption": false @@ -454,9 +428,7 @@ "type": "Function", "tags": [], "label": "KibanaPageTemplateSolutionNavAvatar", - "description": [ - "\nApplies extra styling to a typical EuiAvatar" - ], + "description": ["\nApplies extra styling to a typical EuiAvatar"], "signature": [ "({ className, size, ...rest }: React.PropsWithChildren<", "KibanaPageTemplateSolutionNavAvatarProps", @@ -491,9 +463,7 @@ "parentPluginId": "kibanaReact", "id": "def-public.KibanaThemeProvider", "type": "Function", - "tags": [ - "deprecated" - ], + "tags": ["deprecated"], "label": "KibanaThemeProvider", "description": [], "signature": [ @@ -1225,15 +1195,15 @@ }, { "plugin": "exploratoryView", - "path": "x-pack/plugins/exploratory_view/public/application/index.tsx" + "path": "x-pack/plugins/observability_solution/exploratory_view/public/application/index.tsx" }, { "plugin": "exploratoryView", - "path": "x-pack/plugins/exploratory_view/public/application/index.tsx" + "path": "x-pack/plugins/observability_solution/exploratory_view/public/application/index.tsx" }, { "plugin": "exploratoryView", - "path": "x-pack/plugins/exploratory_view/public/application/index.tsx" + "path": "x-pack/plugins/observability_solution/exploratory_view/public/application/index.tsx" }, { "plugin": "fleet", @@ -1341,15 +1311,15 @@ }, { "plugin": "profiling", - "path": "x-pack/plugins/profiling/public/app.tsx" + "path": "x-pack/plugins/observability_solution/profiling/public/app.tsx" }, { "plugin": "profiling", - "path": "x-pack/plugins/profiling/public/app.tsx" + "path": "x-pack/plugins/observability_solution/profiling/public/app.tsx" }, { "plugin": "profiling", - "path": "x-pack/plugins/profiling/public/app.tsx" + "path": "x-pack/plugins/observability_solution/profiling/public/app.tsx" }, { "plugin": "apm", @@ -1699,18 +1669,6 @@ "plugin": "uptime", "path": "x-pack/plugins/uptime/public/legacy_uptime/app/uptime_app.tsx" }, - { - "plugin": "ux", - "path": "x-pack/plugins/ux/public/application/ux_app.tsx" - }, - { - "plugin": "ux", - "path": "x-pack/plugins/ux/public/application/ux_app.tsx" - }, - { - "plugin": "ux", - "path": "x-pack/plugins/ux/public/application/ux_app.tsx" - }, { "plugin": "watcher", "path": "x-pack/plugins/watcher/public/application/shared_imports.ts" @@ -1739,6 +1697,18 @@ "plugin": "cloudDataMigration", "path": "x-pack/plugins/cloud_integrations/cloud_data_migration/public/application/index.tsx" }, + { + "plugin": "ux", + "path": "x-pack/plugins/observability_solution/ux/public/application/ux_app.tsx" + }, + { + "plugin": "ux", + "path": "x-pack/plugins/observability_solution/ux/public/application/ux_app.tsx" + }, + { + "plugin": "ux", + "path": "x-pack/plugins/observability_solution/ux/public/application/ux_app.tsx" + }, { "plugin": "triggersActionsUi", "path": "x-pack/plugins/triggers_actions_ui/public/application/sections/test_utils.tsx" @@ -1953,11 +1923,7 @@ "tags": [], "label": "Markdown", "description": [], - "signature": [ - "(props: ", - "MarkdownProps", - ") => JSX.Element" - ], + "signature": ["(props: ", "MarkdownProps", ") => JSX.Element"], "path": "src/plugins/kibana_react/public/markdown/index.tsx", "deprecated": false, "trackAdoption": false, @@ -1969,9 +1935,7 @@ "tags": [], "label": "props", "description": [], - "signature": [ - "MarkdownProps" - ], + "signature": ["MarkdownProps"], "path": "src/plugins/kibana_react/public/markdown/index.tsx", "deprecated": false, "trackAdoption": false, @@ -1988,11 +1952,7 @@ "tags": [], "label": "MarkdownSimple", "description": [], - "signature": [ - "(props: ", - "MarkdownSimpleProps", - ") => JSX.Element" - ], + "signature": ["(props: ", "MarkdownSimpleProps", ") => JSX.Element"], "path": "src/plugins/kibana_react/public/markdown/index.tsx", "deprecated": false, "trackAdoption": false, @@ -2004,9 +1964,7 @@ "tags": [], "label": "props", "description": [], - "signature": [ - "MarkdownSimpleProps" - ], + "signature": ["MarkdownSimpleProps"], "path": "src/plugins/kibana_react/public/markdown/index.tsx", "deprecated": false, "trackAdoption": false, @@ -2135,9 +2093,7 @@ "tags": [], "label": "{\n addDataHref,\n application,\n devToolsHref,\n hidden,\n managementHref,\n showDevToolsLink,\n showManagementLink,\n}", "description": [], - "signature": [ - "Props" - ], + "signature": ["Props"], "path": "src/plugins/kibana_react/public/overview_page/overview_page_actions/overview_page_actions.tsx", "deprecated": false, "trackAdoption": false, @@ -2168,9 +2124,7 @@ "tags": [], "label": "{\n addBasePath,\n path,\n onSetDefaultRoute,\n onChangeDefaultRoute,\n}", "description": [], - "signature": [ - "React.PropsWithChildren" - ], + "signature": ["React.PropsWithChildren"], "path": "src/plugins/kibana_react/public/overview_page/overview_page_footer/overview_page_footer.tsx", "deprecated": false, "trackAdoption": false, @@ -2235,9 +2189,7 @@ "tags": [], "label": "to", "description": [], - "signature": [ - "string | LocationObject" - ], + "signature": ["string | LocationObject"], "path": "src/plugins/kibana_react/public/react_router_navigate/react_router_navigate.tsx", "deprecated": false, "trackAdoption": false, @@ -2250,9 +2202,7 @@ "tags": [], "label": "onClickCallback", "description": [], - "signature": [ - "Function | undefined" - ], + "signature": ["Function | undefined"], "path": "src/plugins/kibana_react/public/react_router_navigate/react_router_navigate.tsx", "deprecated": false, "trackAdoption": false, @@ -2317,9 +2267,7 @@ "tags": [], "label": "to", "description": [], - "signature": [ - "string | LocationObject" - ], + "signature": ["string | LocationObject"], "path": "src/plugins/kibana_react/public/react_router_navigate/react_router_navigate.tsx", "deprecated": false, "trackAdoption": false, @@ -2332,9 +2280,7 @@ "tags": [], "label": "onClickCallback", "description": [], - "signature": [ - "Function | undefined" - ], + "signature": ["Function | undefined"], "path": "src/plugins/kibana_react/public/react_router_navigate/react_router_navigate.tsx", "deprecated": false, "trackAdoption": false, @@ -2348,9 +2294,7 @@ "parentPluginId": "kibanaReact", "id": "def-public.toMountPoint", "type": "Function", - "tags": [ - "deprecated" - ], + "tags": ["deprecated"], "label": "toMountPoint", "description": [], "signature": [ @@ -2778,11 +2722,11 @@ }, { "plugin": "observabilityShared", - "path": "x-pack/plugins/observability_shared/public/components/header_menu/header_menu_portal.tsx" + "path": "x-pack/plugins/observability_solution/observability_shared/public/components/header_menu/header_menu_portal.tsx" }, { "plugin": "observabilityShared", - "path": "x-pack/plugins/observability_shared/public/components/header_menu/header_menu_portal.tsx" + "path": "x-pack/plugins/observability_solution/observability_shared/public/components/header_menu/header_menu_portal.tsx" }, { "plugin": "telemetry", @@ -2802,11 +2746,11 @@ }, { "plugin": "exploratoryView", - "path": "x-pack/plugins/exploratory_view/public/components/shared/exploratory_view/header/add_to_case_action.tsx" + "path": "x-pack/plugins/observability_solution/exploratory_view/public/components/shared/exploratory_view/header/add_to_case_action.tsx" }, { "plugin": "exploratoryView", - "path": "x-pack/plugins/exploratory_view/public/components/shared/exploratory_view/header/add_to_case_action.tsx" + "path": "x-pack/plugins/observability_solution/exploratory_view/public/components/shared/exploratory_view/header/add_to_case_action.tsx" }, { "plugin": "fleet", @@ -3297,9 +3241,7 @@ "tags": [], "label": "node", "description": [], - "signature": [ - "React.ReactNode" - ], + "signature": ["React.ReactNode"], "path": "src/plugins/kibana_react/public/util/index.tsx", "deprecated": false, "trackAdoption": false, @@ -3386,9 +3328,7 @@ "tags": [], "label": "useDarkMode", "description": [], - "signature": [ - "(defaultValue?: boolean | undefined) => boolean" - ], + "signature": ["(defaultValue?: boolean | undefined) => boolean"], "path": "src/plugins/kibana_react/public/dark_mode/use_dark_mode.ts", "deprecated": false, "trackAdoption": false, @@ -3400,9 +3340,7 @@ "tags": [], "label": "defaultValue", "description": [], - "signature": [ - "boolean | undefined" - ], + "signature": ["boolean | undefined"], "path": "src/plugins/kibana_react/public/dark_mode/use_dark_mode.ts", "deprecated": false, "trackAdoption": false, @@ -3418,9 +3356,7 @@ "type": "Function", "tags": [], "label": "useExecutionContext", - "description": [ - "\nSet and clean up application level execution context" - ], + "description": ["\nSet and clean up application level execution context"], "signature": [ "(executionContext: ", { @@ -3500,9 +3436,7 @@ "description": [ "\nReturns the current global UI-settings value.\n\nUsage:\n\n```js\nconst customBranding = useGlobalUiSetting('customBranding:pageTitle');\n```" ], - "signature": [ - "(key: string, defaultValue?: T | undefined) => T" - ], + "signature": ["(key: string, defaultValue?: T | undefined) => T"], "path": "src/plugins/kibana_react/public/ui_settings/use_ui_setting.ts", "deprecated": false, "trackAdoption": false, @@ -3514,9 +3448,7 @@ "tags": [], "label": "key", "description": [], - "signature": [ - "string" - ], + "signature": ["string"], "path": "src/plugins/kibana_react/public/ui_settings/use_ui_setting.ts", "deprecated": false, "trackAdoption": false, @@ -3529,9 +3461,7 @@ "tags": [], "label": "defaultValue", "description": [], - "signature": [ - "T | undefined" - ], + "signature": ["T | undefined"], "path": "src/plugins/kibana_react/public/ui_settings/use_ui_setting.ts", "deprecated": false, "trackAdoption": false, @@ -3550,9 +3480,7 @@ "description": [ "\nReturns a 2-tuple, where first entry is the setting value and second is a\nfunction to update the setting value.\n\nSynchronously returns the most current value of the setting and subscribes\nto all subsequent updates, which will re-render your component on new values.\n\nUsage:\n\n```js\nconst [customBranding, setCustomBranding] = useGlobalUiSetting$('customBranding:pageTitle');\n```" ], - "signature": [ - "(key: string, defaultValue?: T | undefined) => [T, Setter]" - ], + "signature": ["(key: string, defaultValue?: T | undefined) => [T, Setter]"], "path": "src/plugins/kibana_react/public/ui_settings/use_ui_setting.ts", "deprecated": false, "trackAdoption": false, @@ -3564,9 +3492,7 @@ "tags": [], "label": "key", "description": [], - "signature": [ - "string" - ], + "signature": ["string"], "path": "src/plugins/kibana_react/public/ui_settings/use_ui_setting.ts", "deprecated": false, "trackAdoption": false, @@ -3579,9 +3505,7 @@ "tags": [], "label": "defaultValue", "description": [], - "signature": [ - "T | undefined" - ], + "signature": ["T | undefined"], "path": "src/plugins/kibana_react/public/ui_settings/use_ui_setting.ts", "deprecated": false, "trackAdoption": false, @@ -3633,9 +3557,7 @@ "description": [ "\nReturns the current UI-settings value.\n\nUsage:\n\n```js\nconst darkMode = useUiSetting('theme:darkMode');\n```" ], - "signature": [ - "(key: string, defaultValue?: T | undefined) => T" - ], + "signature": ["(key: string, defaultValue?: T | undefined) => T"], "path": "src/plugins/kibana_react/public/ui_settings/use_ui_setting.ts", "deprecated": false, "trackAdoption": false, @@ -3647,9 +3569,7 @@ "tags": [], "label": "key", "description": [], - "signature": [ - "string" - ], + "signature": ["string"], "path": "src/plugins/kibana_react/public/ui_settings/use_ui_setting.ts", "deprecated": false, "trackAdoption": false, @@ -3662,9 +3582,7 @@ "tags": [], "label": "defaultValue", "description": [], - "signature": [ - "T | undefined" - ], + "signature": ["T | undefined"], "path": "src/plugins/kibana_react/public/ui_settings/use_ui_setting.ts", "deprecated": false, "trackAdoption": false, @@ -3683,9 +3601,7 @@ "description": [ "\nReturns a 2-tuple, where first entry is the setting value and second is a\nfunction to update the setting value.\n\nSynchronously returns the most current value of the setting and subscribes\nto all subsequent updates, which will re-render your component on new values.\n\nUsage:\n\n```js\nconst [darkMode, setDarkMode] = useUiSetting$('theme:darkMode');\n```" ], - "signature": [ - "(key: string, defaultValue?: T | undefined) => [T, Setter]" - ], + "signature": ["(key: string, defaultValue?: T | undefined) => [T, Setter]"], "path": "src/plugins/kibana_react/public/ui_settings/use_ui_setting.ts", "deprecated": false, "trackAdoption": false, @@ -3697,9 +3613,7 @@ "tags": [], "label": "key", "description": [], - "signature": [ - "string" - ], + "signature": ["string"], "path": "src/plugins/kibana_react/public/ui_settings/use_ui_setting.ts", "deprecated": false, "trackAdoption": false, @@ -3712,9 +3626,7 @@ "tags": [], "label": "defaultValue", "description": [], - "signature": [ - "T | undefined" - ], + "signature": ["T | undefined"], "path": "src/plugins/kibana_react/public/ui_settings/use_ui_setting.ts", "deprecated": false, "trackAdoption": false, @@ -3753,9 +3665,7 @@ "tags": [], "label": "type", "description": [], - "signature": [ - "React.ComponentType" - ], + "signature": ["React.ComponentType"], "path": "src/plugins/kibana_react/public/context/context.tsx", "deprecated": false, "trackAdoption": false, @@ -3796,9 +3706,7 @@ "tags": [], "label": "node", "description": [], - "signature": [ - "React.ReactNode" - ], + "signature": ["React.ReactNode"], "path": "src/plugins/kibana_react/public/theme.tsx", "deprecated": false, "trackAdoption": false, @@ -3883,9 +3791,7 @@ "tags": [], "label": "Provider", "description": [], - "signature": [ - "React.FunctionComponent<{ services?: T | undefined; }>" - ], + "signature": ["React.FunctionComponent<{ services?: T | undefined; }>"], "path": "src/plugins/kibana_react/public/context/types.ts", "deprecated": false, "trackAdoption": false, @@ -3898,9 +3804,7 @@ "tags": [], "label": "props", "description": [], - "signature": [ - "P & { children?: React.ReactNode; }" - ], + "signature": ["P & { children?: React.ReactNode; }"], "path": "node_modules/@types/react/index.d.ts", "deprecated": false, "trackAdoption": false @@ -3912,9 +3816,7 @@ "tags": [], "label": "context", "description": [], - "signature": [ - "any" - ], + "signature": ["any"], "path": "node_modules/@types/react/index.d.ts", "deprecated": false, "trackAdoption": false @@ -3951,9 +3853,7 @@ "tags": [], "label": "props", "description": [], - "signature": [ - "P" - ], + "signature": ["P"], "path": "node_modules/@types/react/index.d.ts", "deprecated": false, "trackAdoption": false @@ -3991,9 +3891,7 @@ "tags": [], "label": "services", "description": [], - "signature": [ - "Services" - ], + "signature": ["Services"], "path": "src/plugins/kibana_react/public/context/types.ts", "deprecated": false, "trackAdoption": false @@ -4148,9 +4046,7 @@ "tags": [], "label": "node", "description": [], - "signature": [ - "React.ReactNode" - ], + "signature": ["React.ReactNode"], "path": "src/plugins/kibana_react/public/overlays/types.ts", "deprecated": false, "trackAdoption": false, @@ -4217,9 +4113,7 @@ "tags": [], "label": "node", "description": [], - "signature": [ - "React.ReactNode" - ], + "signature": ["React.ReactNode"], "path": "src/plugins/kibana_react/public/overlays/types.ts", "deprecated": false, "trackAdoption": false, @@ -4294,12 +4188,8 @@ "type": "string", "tags": [], "label": "logo", - "description": [ - "\nOptionally replace the auto-generated logo" - ], - "signature": [ - "string | undefined" - ], + "description": ["\nOptionally replace the auto-generated logo"], + "signature": ["string | undefined"], "path": "src/plugins/kibana_react/public/page_template/no_data_page/no_data_page.tsx", "deprecated": false, "trackAdoption": false @@ -4310,9 +4200,7 @@ "type": "string", "tags": [], "label": "docsLink", - "description": [ - "\nRequired to set the docs link for the whole solution" - ], + "description": ["\nRequired to set the docs link for the whole solution"], "path": "src/plugins/kibana_react/public/page_template/no_data_page/no_data_page.tsx", "deprecated": false, "trackAdoption": false @@ -4323,12 +4211,8 @@ "type": "string", "tags": [], "label": "pageTitle", - "description": [ - "\nOptionally replace the auto-generated page title (h1)" - ], - "signature": [ - "string | undefined" - ], + "description": ["\nOptionally replace the auto-generated page title (h1)"], + "signature": ["string | undefined"], "path": "src/plugins/kibana_react/public/page_template/no_data_page/no_data_page.tsx", "deprecated": false, "trackAdoption": false @@ -4406,9 +4290,7 @@ "tags": [], "label": "color", "description": [], - "signature": [ - "\"warning\" | \"success\" | \"primary\" | \"danger\" | undefined" - ], + "signature": ["\"warning\" | \"success\" | \"primary\" | \"danger\" | undefined"], "path": "src/plugins/kibana_react/public/notifications/types.ts", "deprecated": false, "trackAdoption": false @@ -4420,10 +4302,7 @@ "tags": [], "label": "iconType", "description": [], - "signature": [ - "IconType", - " | undefined" - ], + "signature": ["IconType", " | undefined"], "path": "src/plugins/kibana_react/public/notifications/types.ts", "deprecated": false, "trackAdoption": false @@ -4435,9 +4314,7 @@ "tags": [], "label": "toastLifeTimeMs", "description": [], - "signature": [ - "number | undefined" - ], + "signature": ["number | undefined"], "path": "src/plugins/kibana_react/public/notifications/types.ts", "deprecated": false, "trackAdoption": false @@ -4449,9 +4326,7 @@ "tags": [], "label": "onClose", "description": [], - "signature": [ - "(() => void) | undefined" - ], + "signature": ["(() => void) | undefined"], "path": "src/plugins/kibana_react/public/notifications/types.ts", "deprecated": false, "trackAdoption": false @@ -4463,9 +4338,7 @@ "parentPluginId": "kibanaReact", "id": "def-public.ToMountPointOptions", "type": "Interface", - "tags": [ - "deprecated" - ], + "tags": ["deprecated"], "label": "ToMountPointOptions", "description": [], "path": "src/plugins/kibana_react/public/util/index.tsx", @@ -4549,9 +4422,7 @@ "tags": [], "label": "height", "description": [], - "signature": [ - "string | number | undefined" - ], + "signature": ["string | number | undefined"], "path": "src/plugins/kibana_react/public/url_template_editor/url_template_editor.tsx", "deprecated": false, "trackAdoption": false @@ -4614,11 +4485,7 @@ "tags": [], "label": "onEditor", "description": [], - "signature": [ - "((editor: ", - "editor", - ".IStandaloneCodeEditor) => void) | undefined" - ], + "signature": ["((editor: ", "editor", ".IStandaloneCodeEditor) => void) | undefined"], "path": "src/plugins/kibana_react/public/url_template_editor/url_template_editor.tsx", "deprecated": false, "trackAdoption": false, @@ -4630,10 +4497,7 @@ "tags": [], "label": "editor", "description": [], - "signature": [ - "editor", - ".IStandaloneCodeEditor" - ], + "signature": ["editor", ".IStandaloneCodeEditor"], "path": "src/plugins/kibana_react/public/url_template_editor/url_template_editor.tsx", "deprecated": false, "trackAdoption": false, @@ -4649,9 +4513,7 @@ "tags": [], "label": "placeholder", "description": [], - "signature": [ - "string | undefined" - ], + "signature": ["string | undefined"], "path": "src/plugins/kibana_react/public/url_template_editor/url_template_editor.tsx", "deprecated": false, "trackAdoption": false @@ -4710,9 +4572,7 @@ "tags": [], "label": "title", "description": [], - "signature": [ - "string | undefined" - ], + "signature": ["string | undefined"], "path": "src/plugins/kibana_react/public/url_template_editor/url_template_editor.tsx", "deprecated": false, "trackAdoption": false @@ -4724,9 +4584,7 @@ "tags": [], "label": "documentation", "description": [], - "signature": [ - "string | undefined" - ], + "signature": ["string | undefined"], "path": "src/plugins/kibana_react/public/url_template_editor/url_template_editor.tsx", "deprecated": false, "trackAdoption": false @@ -4738,10 +4596,7 @@ "tags": [], "label": "kind", "description": [], - "signature": [ - "languages", - ".CompletionItemKind | undefined" - ], + "signature": ["languages", ".CompletionItemKind | undefined"], "path": "src/plugins/kibana_react/public/url_template_editor/url_template_editor.tsx", "deprecated": false, "trackAdoption": false @@ -4753,9 +4608,7 @@ "tags": [], "label": "sortText", "description": [], - "signature": [ - "string | undefined" - ], + "signature": ["string | undefined"], "path": "src/plugins/kibana_react/public/url_template_editor/url_template_editor.tsx", "deprecated": false, "trackAdoption": false @@ -4943,9 +4796,7 @@ "parentPluginId": "kibanaReact", "id": "def-public.KibanaThemeProviderProps", "type": "Type", - "tags": [ - "deprecated" - ], + "tags": ["deprecated"], "label": "KibanaThemeProviderProps", "description": [], "signature": [ @@ -5031,9 +4882,7 @@ "tags": [], "label": "Value", "description": [], - "signature": [ - "[string | number, string | number]" - ], + "signature": ["[string | number, string | number]"], "path": "src/plugins/kibana_react/public/validated_range/validated_dual_range.tsx", "deprecated": false, "trackAdoption": false, @@ -5091,9 +4940,7 @@ "type": "Function", "tags": [], "label": "createGlobalStyle", - "description": [ - "/** see https://styled-components.com/docs/api#createglobalstyle */" - ], + "description": ["/** see https://styled-components.com/docs/api#createglobalstyle */"], "signature": [ "

(first: TemplateStringsArray | ", "CSSObject", @@ -5165,12 +5012,7 @@ "tags": [], "label": "interpolations", "description": [], - "signature": [ - "Interpolation", - "<", - "ThemedStyledProps", - ">[]" - ], + "signature": ["Interpolation", "<", "ThemedStyledProps", ">[]"], "path": "node_modules/@types/styled-components/ts3.7/index.d.ts", "deprecated": false, "trackAdoption": false @@ -5184,9 +5026,7 @@ "type": "Function", "tags": [], "label": "css", - "description": [ - "/** see https://styled-components.com/docs/api#css-prop */" - ], + "description": ["/** see https://styled-components.com/docs/api#css-prop */"], "signature": [ "BaseThemedCssFunction", "<", @@ -5210,9 +5050,7 @@ "type": "Function", "tags": [], "label": "euiStyled", - "description": [ - "/** see https://styled-components.com/docs/api#styled */" - ], + "description": ["/** see https://styled-components.com/docs/api#styled */"], "signature": [ "ThemedBaseStyledInterface", "<", @@ -5236,9 +5074,7 @@ "type": "Function", "tags": [], "label": "keyframes", - "description": [ - "/** see https://styled-components.com/docs/api#keyframes */" - ], + "description": ["/** see https://styled-components.com/docs/api#keyframes */"], "signature": [ "(strings: TemplateStringsArray | ", "CSSKeyframes", @@ -5259,10 +5095,7 @@ "tags": [], "label": "strings", "description": [], - "signature": [ - "TemplateStringsArray | ", - "CSSKeyframes" - ], + "signature": ["TemplateStringsArray | ", "CSSKeyframes"], "path": "node_modules/@types/styled-components/ts3.7/index.d.ts", "deprecated": false, "trackAdoption": false @@ -5274,10 +5107,7 @@ "tags": [], "label": "interpolations", "description": [], - "signature": [ - "SimpleInterpolation", - "[]" - ], + "signature": ["SimpleInterpolation", "[]"], "path": "node_modules/@types/styled-components/ts3.7/index.d.ts", "deprecated": false, "trackAdoption": false @@ -5291,9 +5121,7 @@ "type": "Function", "tags": [], "label": "KibanaStyledComponentsThemeProvider", - "description": [ - "\nA `styled-components` `ThemeProvider` that incorporates EUI dark mode." - ], + "description": ["\nA `styled-components` `ThemeProvider` that incorporates EUI dark mode."], "signature": [ ">(component: React.ComponentProps extends { theme?: ", { @@ -5464,9 +5288,7 @@ "tags": [], "label": "component", "description": [], - "signature": [ - "React.ComponentProps extends { theme?: T | undefined; } ? C : never" - ], + "signature": ["React.ComponentProps extends { theme?: T | undefined; } ? C : never"], "path": "node_modules/@types/styled-components/ts3.7/index.d.ts", "deprecated": false, "trackAdoption": false @@ -5495,9 +5317,7 @@ "type": "Object", "tags": [], "label": "eui", - "description": [ - "EUI theme vars that automaticall adjust to light and dark mode." - ], + "description": ["EUI theme vars that automaticall adjust to light and dark mode."], "signature": [ "{ euiZDataGrid: number; euiZHeaderBelowDataGrid: number; euiZDataGridCellPopover: number; euiDataGridCellPaddingS: string; euiDataGridCellPaddingM: string; euiDataGridCellPaddingL: string; euiTableHoverColor: string; euiTableSelectedColor: string; euiTableHoverSelectedColor: string; euiTableActionsBorderColor: string; euiTableHoverClickableColor: string; euiTableFocusClickableColor: string; euiContrastRatioText: number; euiContrastRatioGraphic: number; euiContrastRatioDisabled: number; euiAnimSlightBounce: string; euiAnimSlightResistance: string; euiAnimSpeedExtraFast: string; euiAnimSpeedFast: string; euiAnimSpeedNormal: string; euiAnimSpeedSlow: string; euiAnimSpeedExtraSlow: string; euiBorderWidthThin: string; euiBorderWidthThick: string; euiBorderColor: string; euiBorderRadius: string; euiBorderRadiusSmall: string; euiBorderThick: string; euiBorderThin: string; euiBorderEditable: string; euiButtonHeight: string; euiButtonHeightSmall: string; euiButtonHeightXSmall: string; euiButtonColorDisabled: string; euiButtonColorDisabledText: string; euiButtonColorGhostDisabled: string; euiButtonTypes: { primary: string; accent: string; success: string; warning: string; danger: string; ghost: string; text: string; }; euiPaletteColorBlind: { euiColorVis0: { graphic: string; behindText: string; }; euiColorVis1: { graphic: string; behindText: string; }; euiColorVis2: { graphic: string; behindText: string; }; euiColorVis3: { graphic: string; behindText: string; }; euiColorVis4: { graphic: string; behindText: string; }; euiColorVis5: { graphic: string; behindText: string; }; euiColorVis6: { graphic: string; behindText: string; }; euiColorVis7: { graphic: string; behindText: string; }; euiColorVis8: { graphic: string; behindText: string; }; euiColorVis9: { graphic: string; behindText: string; }; }; euiPaletteColorBlindKeys: string; euiColorVis0: string; euiColorVis1: string; euiColorVis2: string; euiColorVis3: string; euiColorVis4: string; euiColorVis5: string; euiColorVis6: string; euiColorVis7: string; euiColorVis8: string; euiColorVis9: string; euiColorVis0_behindText: string; euiColorVis1_behindText: string; euiColorVis2_behindText: string; euiColorVis3_behindText: string; euiColorVis4_behindText: string; euiColorVis5_behindText: string; euiColorVis6_behindText: string; euiColorVis7_behindText: string; euiColorVis8_behindText: string; euiColorVis9_behindText: string; euiFontWeightLight: number; euiFontWeightRegular: number; euiFontWeightMedium: number; euiFontWeightSemiBold: number; euiFontWeightBold: number; euiCodeFontWeightRegular: number; euiCodeFontWeightBold: number; euiFormMaxWidth: string; euiFormControlHeight: string; euiFormControlCompressedHeight: string; euiFormControlPadding: string; euiFormControlCompressedPadding: string; euiFormControlBorderRadius: string; euiFormControlCompressedBorderRadius: string; euiRadioSize: string; euiCheckBoxSize: string; euiCheckboxBorderRadius: string; euiSwitchHeight: string; euiSwitchWidth: string; euiSwitchThumbSize: string; euiSwitchIconHeight: string; euiSwitchHeightCompressed: string; euiSwitchWidthCompressed: string; euiSwitchThumbSizeCompressed: string; euiSwitchHeightMini: string; euiSwitchWidthMini: string; euiSwitchThumbSizeMini: string; euiFormBackgroundColor: string; euiFormBackgroundDisabledColor: string; euiFormBackgroundReadOnlyColor: string; euiFormBorderOpaqueColor: string; euiFormBorderColor: string; euiFormBorderDisabledColor: string; euiFormCustomControlDisabledIconColor: string; euiFormCustomControlBorderColor: string; euiFormControlDisabledColor: string; euiFormControlBoxShadow: string; euiFormControlPlaceholderText: string; euiFormInputGroupLabelBackground: string; euiFormInputGroupBorder: string; euiSwitchOffColor: string; euiFormControlIconSizes: { small: string; medium: string; large: string; xLarge: string; xxLarge: string; }; euiFormControlLayoutGroupInputHeight: string; euiFormControlLayoutGroupInputCompressedHeight: string; euiFormControlLayoutGroupInputCompressedBorderRadius: string; euiHeaderBackgroundColor: string; euiHeaderDarkBackgroundColor: string; euiHeaderBorderColor: string; euiHeaderBreadcrumbColor: string; euiHeaderHeight: string; euiHeaderChildSize: string; euiHeaderHeightCompensation: string; euiPageDefaultMaxWidth: string; euiPageSidebarMinWidth: string; euiPanelPaddingModifiers: { paddingSmall: string; paddingMedium: string; paddingLarge: string; }; euiPanelBorderRadiusModifiers: { borderRadiusNone: number; borderRadiusMedium: string; }; euiPanelBackgroundColorModifiers: { transparent: string; plain: string; subdued: string; accent: string; primary: string; success: string; warning: string; danger: string; }; euiBreakpoints: { xs: number; s: string; m: string; l: string; xl: string; }; euiBreakpointKeys: string; euiShadowColor: string; euiSize: string; euiSizeXS: string; euiSizeS: string; euiSizeM: string; euiSizeL: string; euiSizeXL: string; euiSizeXXL: string; euiScrollBar: string; euiScrollBarCorner: string; euiScrollBarCornerThin: string; euiFocusRingColor: string; euiFocusRingAnimStartColor: string; euiFocusRingAnimStartSize: string; euiFocusRingAnimStartSizeLarge: string; euiFocusRingSizeLarge: string; euiFocusRingSize: string; euiFocusTransparency: number; euiFocusTransparencyPercent: string; euiFocusBackgroundColor: string; euiFontFamily: string; euiCodeFontFamily: string; euiFontFeatureSettings: string; euiTextScale: string; euiFontSize: string; euiFontSizeXS: string; euiFontSizeS: string; euiFontSizeM: string; euiFontSizeL: string; euiFontSizeXL: string; euiFontSizeXXL: string; euiLineHeight: number; euiBodyLineHeight: number; euiTitles: { xxxs: { 'font-size': string; 'line-height': string; 'font-weight': number; }; xxs: { 'font-size': string; 'line-height': string; 'font-weight': number; }; xs: { 'font-size': string; 'line-height': string; 'font-weight': number; }; s: { 'font-size': string; 'line-height': string; 'font-weight': number; }; m: { 'font-size': string; 'line-height': string; 'font-weight': number; }; l: { 'font-size': string; 'line-height': string; 'font-weight': number; }; }; euiZLevel0: number; euiZLevel1: number; euiZLevel2: number; euiZLevel3: number; euiZLevel4: number; euiZLevel5: number; euiZLevel6: number; euiZLevel7: number; euiZLevel8: number; euiZLevel9: number; euiZToastList: number; euiZModal: number; euiZMask: number; euiZNavigation: number; euiZContentMenu: number; euiZHeader: number; euiZFlyout: number; euiZMaskBelowHeader: number; euiZContent: number; euiColorGhost: string; euiColorInk: string; euiColorPrimary: string; euiColorAccent: string; euiColorSuccess: string; euiColorWarning: string; euiColorDanger: string; euiColorEmptyShade: string; euiColorLightestShade: string; euiColorLightShade: string; euiColorMediumShade: string; euiColorDarkShade: string; euiColorDarkestShade: string; euiColorFullShade: string; euiPageBackgroundColor: string; euiColorHighlight: string; euiTextColor: string; euiTitleColor: string; euiTextSubduedColor: string; euiColorDisabled: string; euiColorPrimaryText: string; euiColorSuccessText: string; euiColorAccentText: string; euiColorWarningText: string; euiColorDangerText: string; euiColorDisabledText: string; euiLinkColor: string; euiColorChartLines: string; euiColorChartBand: string; }" ], @@ -5511,9 +5331,7 @@ "type": "boolean", "tags": [], "label": "darkMode", - "description": [ - "True if the theme is in \"dark\" mode, false otherwise." - ], + "description": ["True if the theme is in \"dark\" mode, false otherwise."], "path": "packages/react/kibana_context/styled/styled_provider.tsx", "deprecated": false, "trackAdoption": false @@ -5526,4 +5344,4 @@ "misc": [], "objects": [] } -} \ No newline at end of file +} diff --git a/api_docs/kibana_react.mdx b/api_docs/kibana_react.mdx index e99fd2724b769..cddad30204965 100644 --- a/api_docs/kibana_react.mdx +++ b/api_docs/kibana_react.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kibanaReact title: "kibanaReact" image: https://source.unsplash.com/400x175/?github description: API docs for the kibanaReact plugin -date: 2024-02-19 +date: 2024-02-22 tags: ['contributor', 'dev', 'apidocs', 'kibana', 'kibanaReact'] --- import kibanaReactObj from './kibana_react.devdocs.json'; diff --git a/api_docs/kibana_utils.mdx b/api_docs/kibana_utils.mdx index 126b432992de3..b522b2669fa08 100644 --- a/api_docs/kibana_utils.mdx +++ b/api_docs/kibana_utils.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kibanaUtils title: "kibanaUtils" image: https://source.unsplash.com/400x175/?github description: API docs for the kibanaUtils plugin -date: 2024-02-19 +date: 2024-02-22 tags: ['contributor', 'dev', 'apidocs', 'kibana', 'kibanaUtils'] --- import kibanaUtilsObj from './kibana_utils.devdocs.json'; diff --git a/api_docs/kubernetes_security.mdx b/api_docs/kubernetes_security.mdx index 3ba03cbe0fc35..5eb125707a186 100644 --- a/api_docs/kubernetes_security.mdx +++ b/api_docs/kubernetes_security.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kubernetesSecurity title: "kubernetesSecurity" image: https://source.unsplash.com/400x175/?github description: API docs for the kubernetesSecurity plugin -date: 2024-02-19 +date: 2024-02-22 tags: ['contributor', 'dev', 'apidocs', 'kibana', 'kubernetesSecurity'] --- import kubernetesSecurityObj from './kubernetes_security.devdocs.json'; diff --git a/api_docs/lens.devdocs.json b/api_docs/lens.devdocs.json index c4a7fd1a51056..643651d03a000 100644 --- a/api_docs/lens.devdocs.json +++ b/api_docs/lens.devdocs.json @@ -944,7 +944,13 @@ "description": [], "signature": [ "() => Readonly<", - "Document", + { + "pluginId": "lens", + "scope": "public", + "docId": "kibLensPluginApi", + "section": "def-public.LensSavedObjectAttributes", + "text": "LensSavedObjectAttributes" + }, " | undefined>" ], "path": "x-pack/plugins/lens/public/embeddable/embeddable.tsx", @@ -9441,7 +9447,7 @@ "ExternalPointerEventsSettings", " | undefined>; pointBuffer?: ", "MarkBuffer", - " | undefined; resizeDebounce?: number | undefined; pointerUpdateTrigger?: ", + " | undefined; pointerUpdateTrigger?: ", "PointerUpdateTrigger", " | undefined; brushAxis?: ", "BrushAxis", @@ -9451,7 +9457,7 @@ "CustomXDomain", " | undefined>; ariaDescription?: string | undefined; ariaDescribedBy?: string | undefined; ariaLabelledBy?: string | undefined; ariaTableCaption?: string | undefined; legendAction?: \"ignore\" | undefined; legendStrategy?: ", "LegendStrategy", - " | undefined; onLegendItemClick?: \"ignore\" | undefined; customLegend?: \"ignore\" | undefined; onLegendItemMinusClick?: \"ignore\" | undefined; onLegendItemOut?: \"ignore\" | undefined; onLegendItemOver?: \"ignore\" | undefined; onLegendItemPlusClick?: \"ignore\" | undefined; debugState?: boolean | undefined; onProjectionClick?: \"ignore\" | undefined; onElementClick?: \"ignore\" | undefined; onElementOver?: \"ignore\" | undefined; onElementOut?: \"ignore\" | undefined; onBrushEnd?: \"ignore\" | undefined; onResize?: \"ignore\" | undefined; onWillRender?: \"ignore\" | undefined; onProjectionAreaChange?: \"ignore\" | undefined; onAnnotationClick?: \"ignore\" | undefined; pointerUpdateDebounce?: number | undefined; roundHistogramBrushValues?: boolean | undefined; noResults?: React.ReactChild | React.ComponentType<{}> | undefined; legendSort?: \"ignore\" | undefined; }>> & Partial>) | undefined" + " | undefined; onLegendItemClick?: \"ignore\" | undefined; customLegend?: \"ignore\" | undefined; onLegendItemMinusClick?: \"ignore\" | undefined; onLegendItemOut?: \"ignore\" | undefined; onLegendItemOver?: \"ignore\" | undefined; onLegendItemPlusClick?: \"ignore\" | undefined; debugState?: boolean | undefined; onProjectionClick?: \"ignore\" | undefined; onElementClick?: \"ignore\" | undefined; onElementOver?: \"ignore\" | undefined; onElementOut?: \"ignore\" | undefined; onBrushEnd?: \"ignore\" | undefined; onResize?: \"ignore\" | undefined; onWillRender?: \"ignore\" | undefined; onProjectionAreaChange?: \"ignore\" | undefined; onAnnotationClick?: \"ignore\" | undefined; resizeDebounce?: number | undefined; pointerUpdateDebounce?: number | undefined; roundHistogramBrushValues?: boolean | undefined; noResults?: React.ReactChild | React.ComponentType<{}> | undefined; legendSort?: \"ignore\" | undefined; }>> & Partial>) | undefined" ], "path": "src/plugins/chart_expressions/expression_xy/common/types/expression_renderers.ts", "deprecated": false, @@ -10798,7 +10804,13 @@ "text": "HasType" }, "<\"lens\"> & { getSavedVis: () => Readonly<", - "Document", + { + "pluginId": "lens", + "scope": "public", + "docId": "kibLensPluginApi", + "section": "def-public.LensSavedObjectAttributes", + "text": "LensSavedObjectAttributes" + }, " | undefined>; }" ], "path": "x-pack/plugins/lens/public/embeddable/interfaces/has_lens_config.ts", @@ -11006,7 +11018,9 @@ "section": "def-common.DataView", "text": "DataView" }, - ", excludedVisualizations?: string[] | undefined) => ", + ", excludedVisualizations?: string[] | undefined, preferredChartType?: ", + "ChartType", + " | undefined) => ", { "pluginId": "lens", "scope": "public", @@ -11085,6 +11099,21 @@ "path": "x-pack/plugins/lens/public/plugin.ts", "deprecated": false, "trackAdoption": false + }, + { + "parentPluginId": "lens", + "id": "def-public.LensSuggestionsApi.$4", + "type": "CompoundType", + "tags": [], + "label": "preferredChartType", + "description": [], + "signature": [ + "ChartType", + " | undefined" + ], + "path": "x-pack/plugins/lens/public/plugin.ts", + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -11476,7 +11505,7 @@ "ExternalPointerEventsSettings", " | undefined>; pointBuffer?: ", "MarkBuffer", - " | undefined; resizeDebounce?: number | undefined; pointerUpdateTrigger?: ", + " | undefined; pointerUpdateTrigger?: ", "PointerUpdateTrigger", " | undefined; brushAxis?: ", "BrushAxis", @@ -11486,7 +11515,7 @@ "CustomXDomain", " | undefined>; ariaDescription?: string | undefined; ariaDescribedBy?: string | undefined; ariaLabelledBy?: string | undefined; ariaTableCaption?: string | undefined; legendAction?: \"ignore\" | undefined; legendStrategy?: ", "LegendStrategy", - " | undefined; onLegendItemClick?: \"ignore\" | undefined; customLegend?: \"ignore\" | undefined; onLegendItemMinusClick?: \"ignore\" | undefined; onLegendItemOut?: \"ignore\" | undefined; onLegendItemOver?: \"ignore\" | undefined; onLegendItemPlusClick?: \"ignore\" | undefined; debugState?: boolean | undefined; onProjectionClick?: \"ignore\" | undefined; onElementClick?: \"ignore\" | undefined; onElementOver?: \"ignore\" | undefined; onElementOut?: \"ignore\" | undefined; onBrushEnd?: \"ignore\" | undefined; onResize?: \"ignore\" | undefined; onWillRender?: \"ignore\" | undefined; onProjectionAreaChange?: \"ignore\" | undefined; onAnnotationClick?: \"ignore\" | undefined; pointerUpdateDebounce?: number | undefined; roundHistogramBrushValues?: boolean | undefined; noResults?: React.ReactChild | React.ComponentType<{}> | undefined; legendSort?: \"ignore\" | undefined; }>> | Partial | undefined; legendSort?: \"ignore\" | undefined; }>> | Partial ", - "PublicLicenseJSON" - ], + "description": ["\nReturns"], + "signature": ["() => ", "PublicLicenseJSON"], "path": "x-pack/plugins/licensing/common/types.ts", "deprecated": false, "trackAdoption": false, @@ -167,9 +141,7 @@ "description": [ "\nA potential error denoting the failure of the license from being retrieved." ], - "signature": [ - "string | undefined" - ], + "signature": ["string | undefined"], "path": "x-pack/plugins/licensing/common/types.ts", "deprecated": false, "trackAdoption": false @@ -183,9 +155,7 @@ "description": [ "\nIf the license is not available, provides a string or Error containing the reason." ], - "signature": [ - "() => string | undefined" - ], + "signature": ["() => string | undefined"], "path": "x-pack/plugins/licensing/common/types.ts", "deprecated": false, "trackAdoption": false, @@ -198,9 +168,7 @@ "type": "Function", "tags": [], "label": "hasAtLeast", - "description": [ - "\nDetermine if license type >= minimal required license type." - ], + "description": ["\nDetermine if license type >= minimal required license type."], "signature": [ "(minimumLicenseRequired: \"basic\" | \"standard\" | \"gold\" | \"platinum\" | \"enterprise\" | \"trial\") => boolean" ], @@ -214,9 +182,7 @@ "type": "CompoundType", "tags": [], "label": "minimumLicenseRequired", - "description": [ - "the minimum valid license required for the given feature" - ], + "description": ["the minimum valid license required for the given feature"], "signature": [ "\"basic\" | \"standard\" | \"gold\" | \"platinum\" | \"enterprise\" | \"trial\"" ], @@ -251,12 +217,8 @@ "type": "string", "tags": [], "label": "pluginName", - "description": [ - "the name of the plugin" - ], - "signature": [ - "string" - ], + "description": ["the name of the plugin"], + "signature": ["string"], "path": "x-pack/plugins/licensing/common/types.ts", "deprecated": false, "trackAdoption": false, @@ -268,9 +230,7 @@ "type": "CompoundType", "tags": [], "label": "minimumLicenseRequired", - "description": [ - "the minimum valid license for operating the given plugin" - ], + "description": ["the minimum valid license for operating the given plugin"], "signature": [ "\"basic\" | \"standard\" | \"gold\" | \"platinum\" | \"enterprise\" | \"trial\"" ], @@ -291,10 +251,7 @@ "description": [ "\nA specific API for interacting with the specific features of the license." ], - "signature": [ - "(name: string) => ", - "LicenseFeature" - ], + "signature": ["(name: string) => ", "LicenseFeature"], "path": "x-pack/plugins/licensing/common/types.ts", "deprecated": false, "trackAdoption": false, @@ -305,12 +262,8 @@ "type": "string", "tags": [], "label": "name", - "description": [ - "the name of the feature to interact with" - ], - "signature": [ - "string" - ], + "description": ["the name of the feature to interact with"], + "signature": ["string"], "path": "x-pack/plugins/licensing/common/types.ts", "deprecated": false, "trackAdoption": false, @@ -342,9 +295,7 @@ "description": [ "\nThe state of checking the results of a license type meeting the license minimum." ], - "signature": [ - "\"valid\" | \"invalid\" | \"unavailable\" | \"expired\"" - ], + "signature": ["\"valid\" | \"invalid\" | \"unavailable\" | \"expired\""], "path": "x-pack/plugins/licensing/common/types.ts", "deprecated": false, "trackAdoption": false @@ -358,9 +309,7 @@ "description": [ "\nA message containing the reason for a license type not being valid." ], - "signature": [ - "string | undefined" - ], + "signature": ["string | undefined"], "path": "x-pack/plugins/licensing/common/types.ts", "deprecated": false, "trackAdoption": false @@ -423,9 +372,7 @@ "type": "string", "tags": [], "label": "uid", - "description": [ - "\nUID for license." - ], + "description": ["\nUID for license."], "path": "x-pack/plugins/licensing/common/types.ts", "deprecated": false, "trackAdoption": false @@ -436,12 +383,8 @@ "type": "CompoundType", "tags": [], "label": "status", - "description": [ - "\nThe validity status of the license." - ], - "signature": [ - "\"active\" | \"invalid\" | \"expired\"" - ], + "description": ["\nThe validity status of the license."], + "signature": ["\"active\" | \"invalid\" | \"expired\""], "path": "x-pack/plugins/licensing/common/types.ts", "deprecated": false, "trackAdoption": false @@ -452,9 +395,7 @@ "type": "number", "tags": [], "label": "expiryDateInMillis", - "description": [ - "\nUnix epoch of the expiration date of the license." - ], + "description": ["\nUnix epoch of the expiration date of the license."], "path": "x-pack/plugins/licensing/common/types.ts", "deprecated": false, "trackAdoption": false @@ -479,9 +420,7 @@ "parentPluginId": "licensing", "id": "def-public.PublicLicense.mode", "type": "CompoundType", - "tags": [ - "deprecated" - ], + "tags": ["deprecated"], "label": "mode", "description": [ "\nThe license type, being usually one of basic, standard, gold, platinum, or trial." @@ -667,10 +606,7 @@ "tags": [], "label": "license", "description": [], - "signature": [ - "PublicLicense", - " | undefined" - ], + "signature": ["PublicLicense", " | undefined"], "path": "x-pack/plugins/licensing/common/types.ts", "deprecated": false, "trackAdoption": false @@ -682,10 +618,7 @@ "tags": [], "label": "features", "description": [], - "signature": [ - "PublicFeatures", - " | undefined" - ], + "signature": ["PublicFeatures", " | undefined"], "path": "x-pack/plugins/licensing/common/types.ts", "deprecated": false, "trackAdoption": false @@ -714,9 +647,7 @@ "tags": [], "label": "LicenseCheckState", "description": [], - "signature": [ - "\"valid\" | \"invalid\" | \"unavailable\" | \"expired\"" - ], + "signature": ["\"valid\" | \"invalid\" | \"unavailable\" | \"expired\""], "path": "x-pack/plugins/licensing/common/types.ts", "deprecated": false, "trackAdoption": false, @@ -729,9 +660,7 @@ "tags": [], "label": "LicenseStatus", "description": [], - "signature": [ - "\"active\" | \"invalid\" | \"expired\"" - ], + "signature": ["\"active\" | \"invalid\" | \"expired\""], "path": "x-pack/plugins/licensing/common/types.ts", "deprecated": false, "trackAdoption": false, @@ -761,11 +690,7 @@ "description": [ "\nProvides information about feature availability for the current license." ], - "signature": [ - "{ [x: string]: ", - "LicenseFeature", - "; }" - ], + "signature": ["{ [x: string]: ", "LicenseFeature", "; }"], "path": "x-pack/plugins/licensing/common/types.ts", "deprecated": false, "trackAdoption": false, @@ -788,19 +713,10 @@ "parentPluginId": "licensing", "id": "def-public.LicensingPluginSetup.license$", "type": "Object", - "tags": [ - "deprecated" - ], + "tags": ["deprecated"], "label": "license$", - "description": [ - "\nSteam of licensing information {@link ILicense}." - ], - "signature": [ - "Observable", - "<", - "ILicense", - ">" - ], + "description": ["\nSteam of licensing information {@link ILicense}."], + "signature": ["Observable", "<", "ILicense", ">"], "path": "x-pack/plugins/licensing/public/types.ts", "deprecated": true, "removeBy": "8.8.0", @@ -828,7 +744,7 @@ }, { "plugin": "profiling", - "path": "x-pack/plugins/profiling/public/components/contexts/license/license_context.tsx" + "path": "x-pack/plugins/observability_solution/profiling/public/components/contexts/license/license_context.tsx" }, { "plugin": "apm", @@ -872,18 +788,10 @@ "parentPluginId": "licensing", "id": "def-public.LicensingPluginSetup.refresh", "type": "Function", - "tags": [ - "deprecated" - ], + "tags": ["deprecated"], "label": "refresh", - "description": [ - "\nTriggers licensing information re-fetch." - ], - "signature": [ - "() => Promise<", - "ILicense", - ">" - ], + "description": ["\nTriggers licensing information re-fetch."], + "signature": ["() => Promise<", "ILicense", ">"], "path": "x-pack/plugins/licensing/public/types.ts", "deprecated": true, "removeBy": "8.8.0", @@ -898,12 +806,8 @@ "type": "Object", "tags": [], "label": "featureUsage", - "description": [ - "\nAPIs to register licensed feature usage." - ], - "signature": [ - "FeatureUsageServiceSetup" - ], + "description": ["\nAPIs to register licensed feature usage."], + "signature": ["FeatureUsageServiceSetup"], "path": "x-pack/plugins/licensing/public/types.ts", "deprecated": false, "trackAdoption": false @@ -929,15 +833,8 @@ "type": "Object", "tags": [], "label": "license$", - "description": [ - "\nSteam of licensing information {@link ILicense}." - ], - "signature": [ - "Observable", - "<", - "ILicense", - ">" - ], + "description": ["\nSteam of licensing information {@link ILicense}."], + "signature": ["Observable", "<", "ILicense", ">"], "path": "x-pack/plugins/licensing/public/types.ts", "deprecated": false, "trackAdoption": false @@ -948,14 +845,8 @@ "type": "Function", "tags": [], "label": "refresh", - "description": [ - "\nTriggers licensing information re-fetch." - ], - "signature": [ - "() => Promise<", - "ILicense", - ">" - ], + "description": ["\nTriggers licensing information re-fetch."], + "signature": ["() => Promise<", "ILicense", ">"], "path": "x-pack/plugins/licensing/public/types.ts", "deprecated": false, "trackAdoption": false, @@ -968,12 +859,8 @@ "type": "Object", "tags": [], "label": "featureUsage", - "description": [ - "\nAPIs to manage licensed feature usage." - ], - "signature": [ - "FeatureUsageServiceStart" - ], + "description": ["\nAPIs to manage licensed feature usage."], + "signature": ["FeatureUsageServiceStart"], "path": "x-pack/plugins/licensing/public/types.ts", "deprecated": false, "trackAdoption": false @@ -1107,9 +994,7 @@ "tags": [], "label": "status", "description": [], - "signature": [ - "number | undefined" - ], + "signature": ["number | undefined"], "path": "x-pack/plugins/licensing/server/types.ts", "deprecated": false, "trackAdoption": false @@ -1151,9 +1036,7 @@ "tags": [], "label": "featureName", "description": [], - "signature": [ - "string" - ], + "signature": ["string"], "path": "x-pack/plugins/licensing/server/services/feature_usage_service.ts", "deprecated": false, "trackAdoption": false, @@ -1197,12 +1080,8 @@ "type": "Function", "tags": [], "label": "notifyUsage", - "description": [ - "\nNotify of a registered feature usage at given time.\n" - ], - "signature": [ - "(featureName: string, usedAt?: number | Date | undefined) => void" - ], + "description": ["\nNotify of a registered feature usage at given time.\n"], + "signature": ["(featureName: string, usedAt?: number | Date | undefined) => void"], "path": "x-pack/plugins/licensing/server/services/feature_usage_service.ts", "deprecated": false, "trackAdoption": false, @@ -1213,12 +1092,8 @@ "type": "string", "tags": [], "label": "featureName", - "description": [ - "- the name of the feature to notify usage of" - ], - "signature": [ - "string" - ], + "description": ["- the name of the feature to notify usage of"], + "signature": ["string"], "path": "x-pack/plugins/licensing/server/services/feature_usage_service.ts", "deprecated": false, "trackAdoption": false, @@ -1233,9 +1108,7 @@ "description": [ "- Either a `Date` or an unix timestamp with ms. If not specified, it will be set to the current time." ], - "signature": [ - "number | Date | undefined" - ], + "signature": ["number | Date | undefined"], "path": "x-pack/plugins/licensing/server/services/feature_usage_service.ts", "deprecated": false, "trackAdoption": false, @@ -1253,11 +1126,7 @@ "description": [ "\nReturn a map containing last usage timestamp for all features.\nFeatures that were not used yet do not appear in the map." ], - "signature": [ - "() => ", - "LastFeatureUsage", - "[]" - ], + "signature": ["() => ", "LastFeatureUsage", "[]"], "path": "x-pack/plugins/licensing/server/services/feature_usage_service.ts", "deprecated": false, "trackAdoption": false, @@ -1284,12 +1153,8 @@ "type": "string", "tags": [], "label": "uid", - "description": [ - "\nUID for license." - ], - "signature": [ - "string | undefined" - ], + "description": ["\nUID for license."], + "signature": ["string | undefined"], "path": "x-pack/plugins/licensing/common/types.ts", "deprecated": false, "trackAdoption": false @@ -1300,13 +1165,8 @@ "type": "CompoundType", "tags": [], "label": "status", - "description": [ - "\nThe validity status of the license." - ], - "signature": [ - "LicenseStatus", - " | undefined" - ], + "description": ["\nThe validity status of the license."], + "signature": ["LicenseStatus", " | undefined"], "path": "x-pack/plugins/licensing/common/types.ts", "deprecated": false, "trackAdoption": false @@ -1317,9 +1177,7 @@ "type": "boolean", "tags": [], "label": "isActive", - "description": [ - "\nDetermine if the status of the license is active." - ], + "description": ["\nDetermine if the status of the license is active."], "path": "x-pack/plugins/licensing/common/types.ts", "deprecated": false, "trackAdoption": false @@ -1330,12 +1188,8 @@ "type": "number", "tags": [], "label": "expiryDateInMillis", - "description": [ - "\nUnix epoch of the expiration date of the license." - ], - "signature": [ - "number | undefined" - ], + "description": ["\nUnix epoch of the expiration date of the license."], + "signature": ["number | undefined"], "path": "x-pack/plugins/licensing/common/types.ts", "deprecated": false, "trackAdoption": false @@ -1360,9 +1214,7 @@ "parentPluginId": "licensing", "id": "def-server.ILicense.mode", "type": "CompoundType", - "tags": [ - "deprecated" - ], + "tags": ["deprecated"], "label": "mode", "description": [ "\nThe license type, being usually one of basic, standard, gold, platinum, or trial." @@ -1382,9 +1234,7 @@ "type": "string", "tags": [], "label": "signature", - "description": [ - "\nSignature of the license content." - ], + "description": ["\nSignature of the license content."], "path": "x-pack/plugins/licensing/common/types.ts", "deprecated": false, "trackAdoption": false @@ -1395,9 +1245,7 @@ "type": "boolean", "tags": [], "label": "isAvailable", - "description": [ - "\nDetermine if the license container has information." - ], + "description": ["\nDetermine if the license container has information."], "path": "x-pack/plugins/licensing/common/types.ts", "deprecated": false, "trackAdoption": false @@ -1408,13 +1256,8 @@ "type": "Function", "tags": [], "label": "toJSON", - "description": [ - "\nReturns" - ], - "signature": [ - "() => ", - "PublicLicenseJSON" - ], + "description": ["\nReturns"], + "signature": ["() => ", "PublicLicenseJSON"], "path": "x-pack/plugins/licensing/common/types.ts", "deprecated": false, "trackAdoption": false, @@ -1430,9 +1273,7 @@ "description": [ "\nA potential error denoting the failure of the license from being retrieved." ], - "signature": [ - "string | undefined" - ], + "signature": ["string | undefined"], "path": "x-pack/plugins/licensing/common/types.ts", "deprecated": false, "trackAdoption": false @@ -1446,9 +1287,7 @@ "description": [ "\nIf the license is not available, provides a string or Error containing the reason." ], - "signature": [ - "() => string | undefined" - ], + "signature": ["() => string | undefined"], "path": "x-pack/plugins/licensing/common/types.ts", "deprecated": false, "trackAdoption": false, @@ -1461,9 +1300,7 @@ "type": "Function", "tags": [], "label": "hasAtLeast", - "description": [ - "\nDetermine if license type >= minimal required license type." - ], + "description": ["\nDetermine if license type >= minimal required license type."], "signature": [ "(minimumLicenseRequired: \"basic\" | \"standard\" | \"gold\" | \"platinum\" | \"enterprise\" | \"trial\") => boolean" ], @@ -1477,9 +1314,7 @@ "type": "CompoundType", "tags": [], "label": "minimumLicenseRequired", - "description": [ - "the minimum valid license required for the given feature" - ], + "description": ["the minimum valid license required for the given feature"], "signature": [ "\"basic\" | \"standard\" | \"gold\" | \"platinum\" | \"enterprise\" | \"trial\"" ], @@ -1514,12 +1349,8 @@ "type": "string", "tags": [], "label": "pluginName", - "description": [ - "the name of the plugin" - ], - "signature": [ - "string" - ], + "description": ["the name of the plugin"], + "signature": ["string"], "path": "x-pack/plugins/licensing/common/types.ts", "deprecated": false, "trackAdoption": false, @@ -1531,9 +1362,7 @@ "type": "CompoundType", "tags": [], "label": "minimumLicenseRequired", - "description": [ - "the minimum valid license for operating the given plugin" - ], + "description": ["the minimum valid license for operating the given plugin"], "signature": [ "\"basic\" | \"standard\" | \"gold\" | \"platinum\" | \"enterprise\" | \"trial\"" ], @@ -1554,10 +1383,7 @@ "description": [ "\nA specific API for interacting with the specific features of the license." ], - "signature": [ - "(name: string) => ", - "LicenseFeature" - ], + "signature": ["(name: string) => ", "LicenseFeature"], "path": "x-pack/plugins/licensing/common/types.ts", "deprecated": false, "trackAdoption": false, @@ -1568,12 +1394,8 @@ "type": "string", "tags": [], "label": "name", - "description": [ - "the name of the feature to interact with" - ], - "signature": [ - "string" - ], + "description": ["the name of the feature to interact with"], + "signature": ["string"], "path": "x-pack/plugins/licensing/common/types.ts", "deprecated": false, "trackAdoption": false, @@ -1605,9 +1427,7 @@ "description": [ "\nThe state of checking the results of a license type meeting the license minimum." ], - "signature": [ - "\"valid\" | \"invalid\" | \"unavailable\" | \"expired\"" - ], + "signature": ["\"valid\" | \"invalid\" | \"unavailable\" | \"expired\""], "path": "x-pack/plugins/licensing/common/types.ts", "deprecated": false, "trackAdoption": false @@ -1621,9 +1441,7 @@ "description": [ "\nA message containing the reason for a license type not being valid." ], - "signature": [ - "string | undefined" - ], + "signature": ["string | undefined"], "path": "x-pack/plugins/licensing/common/types.ts", "deprecated": false, "trackAdoption": false @@ -1707,9 +1525,7 @@ "tags": [], "label": "license", "description": [], - "signature": [ - "ILicense" - ], + "signature": ["ILicense"], "path": "x-pack/plugins/licensing/server/types.ts", "deprecated": false, "trackAdoption": false @@ -1736,9 +1552,7 @@ "type": "string", "tags": [], "label": "uid", - "description": [ - "\nUID for license." - ], + "description": ["\nUID for license."], "path": "x-pack/plugins/licensing/common/types.ts", "deprecated": false, "trackAdoption": false @@ -1749,12 +1563,8 @@ "type": "CompoundType", "tags": [], "label": "status", - "description": [ - "\nThe validity status of the license." - ], - "signature": [ - "\"active\" | \"invalid\" | \"expired\"" - ], + "description": ["\nThe validity status of the license."], + "signature": ["\"active\" | \"invalid\" | \"expired\""], "path": "x-pack/plugins/licensing/common/types.ts", "deprecated": false, "trackAdoption": false @@ -1765,9 +1575,7 @@ "type": "number", "tags": [], "label": "expiryDateInMillis", - "description": [ - "\nUnix epoch of the expiration date of the license." - ], + "description": ["\nUnix epoch of the expiration date of the license."], "path": "x-pack/plugins/licensing/common/types.ts", "deprecated": false, "trackAdoption": false @@ -1792,9 +1600,7 @@ "parentPluginId": "licensing", "id": "def-server.PublicLicense.mode", "type": "CompoundType", - "tags": [ - "deprecated" - ], + "tags": ["deprecated"], "label": "mode", "description": [ "\nThe license type, being usually one of basic, standard, gold, platinum, or trial." @@ -1980,10 +1786,7 @@ "tags": [], "label": "license", "description": [], - "signature": [ - "PublicLicense", - " | undefined" - ], + "signature": ["PublicLicense", " | undefined"], "path": "x-pack/plugins/licensing/common/types.ts", "deprecated": false, "trackAdoption": false @@ -1995,10 +1798,7 @@ "tags": [], "label": "features", "description": [], - "signature": [ - "PublicFeatures", - " | undefined" - ], + "signature": ["PublicFeatures", " | undefined"], "path": "x-pack/plugins/licensing/common/types.ts", "deprecated": false, "trackAdoption": false @@ -2057,9 +1857,7 @@ "tags": [], "label": "license", "description": [], - "signature": [ - "ILicense" - ], + "signature": ["ILicense"], "path": "x-pack/plugins/licensing/server/wrap_route_with_license_check.ts", "deprecated": false, "trackAdoption": false @@ -2074,9 +1872,7 @@ "tags": [], "label": "LicenseCheckState", "description": [], - "signature": [ - "\"valid\" | \"invalid\" | \"unavailable\" | \"expired\"" - ], + "signature": ["\"valid\" | \"invalid\" | \"unavailable\" | \"expired\""], "path": "x-pack/plugins/licensing/common/types.ts", "deprecated": false, "trackAdoption": false, @@ -2089,9 +1885,7 @@ "tags": [], "label": "LicenseStatus", "description": [], - "signature": [ - "\"active\" | \"invalid\" | \"expired\"" - ], + "signature": ["\"active\" | \"invalid\" | \"expired\""], "path": "x-pack/plugins/licensing/common/types.ts", "deprecated": false, "trackAdoption": false, @@ -2121,11 +1915,7 @@ "description": [ "\nProvides information about feature availability for the current license." ], - "signature": [ - "{ [x: string]: ", - "LicenseFeature", - "; }" - ], + "signature": ["{ [x: string]: ", "LicenseFeature", "; }"], "path": "x-pack/plugins/licensing/common/types.ts", "deprecated": false, "trackAdoption": false, @@ -2148,19 +1938,10 @@ "parentPluginId": "licensing", "id": "def-server.LicensingPluginSetup.license$", "type": "Object", - "tags": [ - "deprecated" - ], + "tags": ["deprecated"], "label": "license$", - "description": [ - "\nSteam of licensing information {@link ILicense}." - ], - "signature": [ - "Observable", - "<", - "ILicense", - ">" - ], + "description": ["\nSteam of licensing information {@link ILicense}."], + "signature": ["Observable", "<", "ILicense", ">"], "path": "x-pack/plugins/licensing/server/types.ts", "deprecated": true, "removeBy": "8.8.0", @@ -2288,18 +2069,10 @@ "parentPluginId": "licensing", "id": "def-server.LicensingPluginSetup.refresh", "type": "Function", - "tags": [ - "deprecated" - ], + "tags": ["deprecated"], "label": "refresh", - "description": [ - "\nTriggers licensing information re-fetch." - ], - "signature": [ - "() => Promise<", - "ILicense", - ">" - ], + "description": ["\nTriggers licensing information re-fetch."], + "signature": ["() => Promise<", "ILicense", ">"], "path": "x-pack/plugins/licensing/server/types.ts", "deprecated": true, "removeBy": "8.8.0", @@ -2319,9 +2092,7 @@ "type": "Object", "tags": [], "label": "featureUsage", - "description": [ - "\nAPIs to register licensed feature usage." - ], + "description": ["\nAPIs to register licensed feature usage."], "signature": [ { "pluginId": "licensing", @@ -2356,15 +2127,8 @@ "type": "Object", "tags": [], "label": "license$", - "description": [ - "\nSteam of licensing information {@link ILicense}." - ], - "signature": [ - "Observable", - "<", - "ILicense", - ">" - ], + "description": ["\nSteam of licensing information {@link ILicense}."], + "signature": ["Observable", "<", "ILicense", ">"], "path": "x-pack/plugins/licensing/server/types.ts", "deprecated": false, "trackAdoption": false @@ -2375,14 +2139,8 @@ "type": "Function", "tags": [], "label": "refresh", - "description": [ - "\nTriggers licensing information re-fetch." - ], - "signature": [ - "() => Promise<", - "ILicense", - ">" - ], + "description": ["\nTriggers licensing information re-fetch."], + "signature": ["() => Promise<", "ILicense", ">"], "path": "x-pack/plugins/licensing/server/types.ts", "deprecated": false, "trackAdoption": false, @@ -2447,9 +2205,7 @@ "tags": [], "label": "pollingFrequency", "description": [], - "signature": [ - "number" - ], + "signature": ["number"], "path": "x-pack/plugins/licensing/server/types.ts", "deprecated": false, "trackAdoption": false, @@ -2464,9 +2220,7 @@ "type": "Object", "tags": [], "label": "featureUsage", - "description": [ - "\nAPIs to manage licensed feature usage." - ], + "description": ["\nAPIs to manage licensed feature usage."], "signature": [ { "pluginId": "licensing", @@ -2493,4 +2247,4 @@ "misc": [], "objects": [] } -} \ No newline at end of file +} diff --git a/api_docs/licensing.mdx b/api_docs/licensing.mdx index 5c7afa0a6866a..3da4f27ee571c 100644 --- a/api_docs/licensing.mdx +++ b/api_docs/licensing.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/licensing title: "licensing" image: https://source.unsplash.com/400x175/?github description: API docs for the licensing plugin -date: 2024-02-19 +date: 2024-02-22 tags: ['contributor', 'dev', 'apidocs', 'kibana', 'licensing'] --- import licensingObj from './licensing.devdocs.json'; diff --git a/api_docs/links.mdx b/api_docs/links.mdx index e855288cda2a6..326ef62d133ea 100644 --- a/api_docs/links.mdx +++ b/api_docs/links.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/links title: "links" image: https://source.unsplash.com/400x175/?github description: API docs for the links plugin -date: 2024-02-19 +date: 2024-02-22 tags: ['contributor', 'dev', 'apidocs', 'kibana', 'links'] --- import linksObj from './links.devdocs.json'; diff --git a/api_docs/lists.mdx b/api_docs/lists.mdx index 1a0291f4460aa..72c7dd63b2d8d 100644 --- a/api_docs/lists.mdx +++ b/api_docs/lists.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/lists title: "lists" image: https://source.unsplash.com/400x175/?github description: API docs for the lists plugin -date: 2024-02-19 +date: 2024-02-22 tags: ['contributor', 'dev', 'apidocs', 'kibana', 'lists'] --- import listsObj from './lists.devdocs.json'; diff --git a/api_docs/logs_explorer.devdocs.json b/api_docs/logs_explorer.devdocs.json index 143de97ecd90a..4c377f721d569 100644 --- a/api_docs/logs_explorer.devdocs.json +++ b/api_docs/logs_explorer.devdocs.json @@ -972,7 +972,7 @@ }, " & { controls: ", "ControlOptions", - "; datasetSelection: { selectionType: \"all\"; } | { selectionType: \"dataView\"; selection: { dataView: { id: string; name: string; title: string; dataType: \"unknown\" | \"logs\"; } & { kibanaSpaces?: string[] | undefined; type?: string | undefined; }; }; } | { selectionType: \"single\"; selection: { name?: string | undefined; } & { title?: string | undefined; } & { version?: string | undefined; } & { dataset: { name: ", + "; datasetSelection: { selectionType: \"all\"; } | { selectionType: \"dataView\"; selection: { dataView: { id: string; } & { dataType?: \"unknown\" | \"logs\" | \"unresolved\" | undefined; kibanaSpaces?: string[] | undefined; name?: string | undefined; title?: string | undefined; type?: string | undefined; }; }; } | { selectionType: \"single\"; selection: { name?: string | undefined; } & { title?: string | undefined; } & { version?: string | undefined; } & { dataset: { name: ", "Branded", " ", + "DataViewSpecWithId" + ], + "path": "x-pack/plugins/observability_solution/logs_explorer/common/dataset_selection/data_view_selection.ts", + "deprecated": false, + "trackAdoption": false, + "children": [], + "returnComment": [] + }, + { + "parentPluginId": "logsExplorer", + "id": "def-common.DataViewSelection.toPlainSelection", + "type": "Function", + "tags": [], + "label": "toPlainSelection", + "description": [], + "signature": [ + "() => { selectionType: \"dataView\"; selection: { dataView: { id: string; dataType: \"unknown\" | \"logs\" | \"unresolved\" | undefined; name: string | undefined; title: string | undefined; }; }; }" + ], + "path": "x-pack/plugins/observability_solution/logs_explorer/common/dataset_selection/data_view_selection.ts", + "deprecated": false, + "trackAdoption": false, + "children": [], + "returnComment": [] + }, + { + "parentPluginId": "logsExplorer", + "id": "def-common.DataViewSelection.fromSelection", + "type": "Function", + "tags": [], + "label": "fromSelection", + "description": [], + "signature": [ + "(selection: { dataView: { id: string; } & { dataType?: \"unknown\" | \"logs\" | \"unresolved\" | undefined; kibanaSpaces?: string[] | undefined; name?: string | undefined; title?: string | undefined; type?: string | undefined; }; }) => ", + { + "pluginId": "logsExplorer", + "scope": "common", + "docId": "kibLogsExplorerPluginApi", + "section": "def-common.DataViewSelection", + "text": "DataViewSelection" + } + ], + "path": "x-pack/plugins/observability_solution/logs_explorer/common/dataset_selection/data_view_selection.ts", + "deprecated": false, + "trackAdoption": false, + "children": [ + { + "parentPluginId": "logsExplorer", + "id": "def-common.DataViewSelection.fromSelection.$1", + "type": "Object", + "tags": [], + "label": "selection", + "description": [], + "signature": [ + "{ dataView: { id: string; } & { dataType?: \"unknown\" | \"logs\" | \"unresolved\" | undefined; kibanaSpaces?: string[] | undefined; name?: string | undefined; title?: string | undefined; type?: string | undefined; }; }" + ], + "path": "x-pack/plugins/observability_solution/logs_explorer/common/dataset_selection/data_view_selection.ts", + "deprecated": false, + "trackAdoption": false, + "isRequired": true + } + ], + "returnComment": [] + }, + { + "parentPluginId": "logsExplorer", + "id": "def-common.DataViewSelection.create", + "type": "Function", + "tags": [], + "label": "create", + "description": [], + "signature": [ + "(dataViewDescriptor: ", + "DataViewDescriptor", + ") => ", + { + "pluginId": "logsExplorer", + "scope": "common", + "docId": "kibLogsExplorerPluginApi", + "section": "def-common.DataViewSelection", + "text": "DataViewSelection" + } + ], + "path": "x-pack/plugins/observability_solution/logs_explorer/common/dataset_selection/data_view_selection.ts", + "deprecated": false, + "trackAdoption": false, + "children": [ + { + "parentPluginId": "logsExplorer", + "id": "def-common.DataViewSelection.create.$1", + "type": "Object", + "tags": [], + "label": "dataViewDescriptor", + "description": [], + "signature": [ + "DataViewDescriptor" + ], + "path": "x-pack/plugins/observability_solution/logs_explorer/common/dataset_selection/data_view_selection.ts", + "deprecated": false, + "trackAdoption": false, + "isRequired": true + } + ], + "returnComment": [] + } + ], + "initialIsOpen": false + }, { "parentPluginId": "logsExplorer", "id": "def-common.UnresolvedDatasetSelection", @@ -1474,7 +1642,7 @@ "label": "hydrateDatasetSelection", "description": [], "signature": [ - "(datasetSelection: { selectionType: \"all\"; } | { selectionType: \"dataView\"; selection: { dataView: { id: string; name: string; title: string; dataType: \"unknown\" | \"logs\"; } & { kibanaSpaces?: string[] | undefined; type?: string | undefined; }; }; } | { selectionType: \"single\"; selection: { name?: string | undefined; } & { title?: string | undefined; } & { version?: string | undefined; } & { dataset: { name: ", + "(datasetSelection: { selectionType: \"all\"; } | { selectionType: \"dataView\"; selection: { dataView: { id: string; } & { dataType?: \"unknown\" | \"logs\" | \"unresolved\" | undefined; kibanaSpaces?: string[] | undefined; name?: string | undefined; title?: string | undefined; type?: string | undefined; }; }; } | { selectionType: \"single\"; selection: { name?: string | undefined; } & { title?: string | undefined; } & { version?: string | undefined; } & { dataset: { name: ", "Branded", " input is ", - "DataViewSelection" + { + "pluginId": "logsExplorer", + "scope": "common", + "docId": "kibLogsExplorerPluginApi", + "section": "def-common.DataViewSelection", + "text": "DataViewSelection" + } ], "path": "x-pack/plugins/observability_solution/logs_explorer/common/dataset_selection/index.ts", "deprecated": false, @@ -1954,7 +2134,7 @@ "label": "DatasetSelectionPlain", "description": [], "signature": [ - "{ selectionType: \"all\"; } | { selectionType: \"dataView\"; selection: { dataView: { id: string; name: string; title: string; dataType: \"unknown\" | \"logs\"; } & { kibanaSpaces?: string[] | undefined; type?: string | undefined; }; }; } | { selectionType: \"single\"; selection: { name?: string | undefined; } & { title?: string | undefined; } & { version?: string | undefined; } & { dataset: { name: ", + "{ selectionType: \"all\"; } | { selectionType: \"dataView\"; selection: { dataView: { id: string; } & { dataType?: \"unknown\" | \"logs\" | \"unresolved\" | undefined; kibanaSpaces?: string[] | undefined; name?: string | undefined; title?: string | undefined; type?: string | undefined; }; }; } | { selectionType: \"single\"; selection: { name?: string | undefined; } & { title?: string | undefined; } & { version?: string | undefined; } & { dataset: { name: ", "Branded", "; }>, ", + "; }>, ", "PartialC", - "<{ kibanaSpaces: ", + "<{ dataType: ", + "KeyofC", + "<{ logs: null; unknown: null; unresolved: null; }>; kibanaSpaces: ", "ArrayC", "<", "StringC", - ">; type: ", + ">; name: ", + "StringC", + "; title: ", + "StringC", + "; type: ", "StringC", "; }>]>>; }>; }>, ", "TypeC", diff --git a/api_docs/logs_explorer.mdx b/api_docs/logs_explorer.mdx index 7f4f7c3263fe3..e35ecbf188c8f 100644 --- a/api_docs/logs_explorer.mdx +++ b/api_docs/logs_explorer.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/logsExplorer title: "logsExplorer" image: https://source.unsplash.com/400x175/?github description: API docs for the logsExplorer plugin -date: 2024-02-19 +date: 2024-02-22 tags: ['contributor', 'dev', 'apidocs', 'kibana', 'logsExplorer'] --- import logsExplorerObj from './logs_explorer.devdocs.json'; @@ -21,7 +21,7 @@ Contact [@elastic/obs-ux-logs-team](https://github.com/orgs/elastic/teams/obs-ux | Public API count | Any count | Items lacking comments | Missing exports | |-------------------|-----------|------------------------|-----------------| -| 110 | 3 | 110 | 22 | +| 119 | 3 | 119 | 22 | ## Client diff --git a/api_docs/logs_shared.mdx b/api_docs/logs_shared.mdx index 7b7970373cb8e..f20155eba7b49 100644 --- a/api_docs/logs_shared.mdx +++ b/api_docs/logs_shared.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/logsShared title: "logsShared" image: https://source.unsplash.com/400x175/?github description: API docs for the logsShared plugin -date: 2024-02-19 +date: 2024-02-22 tags: ['contributor', 'dev', 'apidocs', 'kibana', 'logsShared'] --- import logsSharedObj from './logs_shared.devdocs.json'; diff --git a/api_docs/management.mdx b/api_docs/management.mdx index 1b0cf3db40859..95e0e10793843 100644 --- a/api_docs/management.mdx +++ b/api_docs/management.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/management title: "management" image: https://source.unsplash.com/400x175/?github description: API docs for the management plugin -date: 2024-02-19 +date: 2024-02-22 tags: ['contributor', 'dev', 'apidocs', 'kibana', 'management'] --- import managementObj from './management.devdocs.json'; diff --git a/api_docs/maps.mdx b/api_docs/maps.mdx index c8518fcca3e4f..26336b3c0283c 100644 --- a/api_docs/maps.mdx +++ b/api_docs/maps.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/maps title: "maps" image: https://source.unsplash.com/400x175/?github description: API docs for the maps plugin -date: 2024-02-19 +date: 2024-02-22 tags: ['contributor', 'dev', 'apidocs', 'kibana', 'maps'] --- import mapsObj from './maps.devdocs.json'; diff --git a/api_docs/maps_ems.mdx b/api_docs/maps_ems.mdx index 139aec384ac76..cd6a3f5260d77 100644 --- a/api_docs/maps_ems.mdx +++ b/api_docs/maps_ems.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/mapsEms title: "mapsEms" image: https://source.unsplash.com/400x175/?github description: API docs for the mapsEms plugin -date: 2024-02-19 +date: 2024-02-22 tags: ['contributor', 'dev', 'apidocs', 'kibana', 'mapsEms'] --- import mapsEmsObj from './maps_ems.devdocs.json'; diff --git a/api_docs/metrics_data_access.mdx b/api_docs/metrics_data_access.mdx index 2a3e86386590e..24c149dda13b8 100644 --- a/api_docs/metrics_data_access.mdx +++ b/api_docs/metrics_data_access.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/metricsDataAccess title: "metricsDataAccess" image: https://source.unsplash.com/400x175/?github description: API docs for the metricsDataAccess plugin -date: 2024-02-19 +date: 2024-02-22 tags: ['contributor', 'dev', 'apidocs', 'kibana', 'metricsDataAccess'] --- import metricsDataAccessObj from './metrics_data_access.devdocs.json'; diff --git a/api_docs/ml.mdx b/api_docs/ml.mdx index 83597a95222cd..291d53cfdf858 100644 --- a/api_docs/ml.mdx +++ b/api_docs/ml.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/ml title: "ml" image: https://source.unsplash.com/400x175/?github description: API docs for the ml plugin -date: 2024-02-19 +date: 2024-02-22 tags: ['contributor', 'dev', 'apidocs', 'kibana', 'ml'] --- import mlObj from './ml.devdocs.json'; diff --git a/api_docs/mock_idp_plugin.mdx b/api_docs/mock_idp_plugin.mdx index 6e2b4d6a5622f..5ff541e37a8c3 100644 --- a/api_docs/mock_idp_plugin.mdx +++ b/api_docs/mock_idp_plugin.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/mockIdpPlugin title: "mockIdpPlugin" image: https://source.unsplash.com/400x175/?github description: API docs for the mockIdpPlugin plugin -date: 2024-02-19 +date: 2024-02-22 tags: ['contributor', 'dev', 'apidocs', 'kibana', 'mockIdpPlugin'] --- import mockIdpPluginObj from './mock_idp_plugin.devdocs.json'; diff --git a/api_docs/monitoring.mdx b/api_docs/monitoring.mdx index b8e6b6f8b9144..56dac30d6ff7a 100644 --- a/api_docs/monitoring.mdx +++ b/api_docs/monitoring.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/monitoring title: "monitoring" image: https://source.unsplash.com/400x175/?github description: API docs for the monitoring plugin -date: 2024-02-19 +date: 2024-02-22 tags: ['contributor', 'dev', 'apidocs', 'kibana', 'monitoring'] --- import monitoringObj from './monitoring.devdocs.json'; diff --git a/api_docs/monitoring_collection.mdx b/api_docs/monitoring_collection.mdx index 649c2a54a9bb8..19394e2a57acc 100644 --- a/api_docs/monitoring_collection.mdx +++ b/api_docs/monitoring_collection.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/monitoringCollection title: "monitoringCollection" image: https://source.unsplash.com/400x175/?github description: API docs for the monitoringCollection plugin -date: 2024-02-19 +date: 2024-02-22 tags: ['contributor', 'dev', 'apidocs', 'kibana', 'monitoringCollection'] --- import monitoringCollectionObj from './monitoring_collection.devdocs.json'; diff --git a/api_docs/navigation.mdx b/api_docs/navigation.mdx index 2dac3cd93bbb4..8d21cb0d2efcc 100644 --- a/api_docs/navigation.mdx +++ b/api_docs/navigation.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/navigation title: "navigation" image: https://source.unsplash.com/400x175/?github description: API docs for the navigation plugin -date: 2024-02-19 +date: 2024-02-22 tags: ['contributor', 'dev', 'apidocs', 'kibana', 'navigation'] --- import navigationObj from './navigation.devdocs.json'; diff --git a/api_docs/newsfeed.mdx b/api_docs/newsfeed.mdx index 124d94a2aed8c..84ee12f84b8c7 100644 --- a/api_docs/newsfeed.mdx +++ b/api_docs/newsfeed.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/newsfeed title: "newsfeed" image: https://source.unsplash.com/400x175/?github description: API docs for the newsfeed plugin -date: 2024-02-19 +date: 2024-02-22 tags: ['contributor', 'dev', 'apidocs', 'kibana', 'newsfeed'] --- import newsfeedObj from './newsfeed.devdocs.json'; diff --git a/api_docs/no_data_page.mdx b/api_docs/no_data_page.mdx index 11052481a252c..4bcfa7bd4444e 100644 --- a/api_docs/no_data_page.mdx +++ b/api_docs/no_data_page.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/noDataPage title: "noDataPage" image: https://source.unsplash.com/400x175/?github description: API docs for the noDataPage plugin -date: 2024-02-19 +date: 2024-02-22 tags: ['contributor', 'dev', 'apidocs', 'kibana', 'noDataPage'] --- import noDataPageObj from './no_data_page.devdocs.json'; diff --git a/api_docs/notifications.mdx b/api_docs/notifications.mdx index 4699c3d811ae0..30cb8ffd5b94f 100644 --- a/api_docs/notifications.mdx +++ b/api_docs/notifications.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/notifications title: "notifications" image: https://source.unsplash.com/400x175/?github description: API docs for the notifications plugin -date: 2024-02-19 +date: 2024-02-22 tags: ['contributor', 'dev', 'apidocs', 'kibana', 'notifications'] --- import notificationsObj from './notifications.devdocs.json'; diff --git a/api_docs/observability.mdx b/api_docs/observability.mdx index 695e289e9f26d..0558d7f6f5034 100644 --- a/api_docs/observability.mdx +++ b/api_docs/observability.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/observability title: "observability" image: https://source.unsplash.com/400x175/?github description: API docs for the observability plugin -date: 2024-02-19 +date: 2024-02-22 tags: ['contributor', 'dev', 'apidocs', 'kibana', 'observability'] --- import observabilityObj from './observability.devdocs.json'; diff --git a/api_docs/observability_a_i_assistant.devdocs.json b/api_docs/observability_a_i_assistant.devdocs.json index 855d13a6934bc..64169c5d0ed3f 100644 --- a/api_docs/observability_a_i_assistant.devdocs.json +++ b/api_docs/observability_a_i_assistant.devdocs.json @@ -11,7 +11,7 @@ "tags": [], "label": "Conversation", "description": [], - "path": "x-pack/plugins/observability_ai_assistant/common/types.ts", + "path": "x-pack/plugins/observability_solution/observability_ai_assistant/common/types.ts", "deprecated": false, "trackAdoption": false, "children": [ @@ -22,7 +22,7 @@ "tags": [], "label": "'@timestamp'", "description": [], - "path": "x-pack/plugins/observability_ai_assistant/common/types.ts", + "path": "x-pack/plugins/observability_solution/observability_ai_assistant/common/types.ts", "deprecated": false, "trackAdoption": false }, @@ -36,7 +36,7 @@ "signature": [ "{ id?: string | undefined; name: string; }" ], - "path": "x-pack/plugins/observability_ai_assistant/common/types.ts", + "path": "x-pack/plugins/observability_solution/observability_ai_assistant/common/types.ts", "deprecated": false, "trackAdoption": false }, @@ -50,7 +50,7 @@ "signature": [ "{ id: string; title: string; last_updated: string; }" ], - "path": "x-pack/plugins/observability_ai_assistant/common/types.ts", + "path": "x-pack/plugins/observability_solution/observability_ai_assistant/common/types.ts", "deprecated": false, "trackAdoption": false }, @@ -71,7 +71,7 @@ }, "[]" ], - "path": "x-pack/plugins/observability_ai_assistant/common/types.ts", + "path": "x-pack/plugins/observability_solution/observability_ai_assistant/common/types.ts", "deprecated": false, "trackAdoption": false }, @@ -85,7 +85,7 @@ "signature": [ "{ [x: string]: string; }" ], - "path": "x-pack/plugins/observability_ai_assistant/common/types.ts", + "path": "x-pack/plugins/observability_solution/observability_ai_assistant/common/types.ts", "deprecated": false, "trackAdoption": false }, @@ -99,7 +99,7 @@ "signature": [ "{ [x: string]: number; }" ], - "path": "x-pack/plugins/observability_ai_assistant/common/types.ts", + "path": "x-pack/plugins/observability_solution/observability_ai_assistant/common/types.ts", "deprecated": false, "trackAdoption": false }, @@ -110,7 +110,7 @@ "tags": [], "label": "namespace", "description": [], - "path": "x-pack/plugins/observability_ai_assistant/common/types.ts", + "path": "x-pack/plugins/observability_solution/observability_ai_assistant/common/types.ts", "deprecated": false, "trackAdoption": false }, @@ -121,7 +121,7 @@ "tags": [], "label": "public", "description": [], - "path": "x-pack/plugins/observability_ai_assistant/common/types.ts", + "path": "x-pack/plugins/observability_solution/observability_ai_assistant/common/types.ts", "deprecated": false, "trackAdoption": false } @@ -135,7 +135,7 @@ "tags": [], "label": "KnowledgeBaseEntry", "description": [], - "path": "x-pack/plugins/observability_ai_assistant/common/types.ts", + "path": "x-pack/plugins/observability_solution/observability_ai_assistant/common/types.ts", "deprecated": false, "trackAdoption": false, "children": [ @@ -146,7 +146,7 @@ "tags": [], "label": "'@timestamp'", "description": [], - "path": "x-pack/plugins/observability_ai_assistant/common/types.ts", + "path": "x-pack/plugins/observability_solution/observability_ai_assistant/common/types.ts", "deprecated": false, "trackAdoption": false }, @@ -157,7 +157,7 @@ "tags": [], "label": "id", "description": [], - "path": "x-pack/plugins/observability_ai_assistant/common/types.ts", + "path": "x-pack/plugins/observability_solution/observability_ai_assistant/common/types.ts", "deprecated": false, "trackAdoption": false }, @@ -168,7 +168,7 @@ "tags": [], "label": "text", "description": [], - "path": "x-pack/plugins/observability_ai_assistant/common/types.ts", + "path": "x-pack/plugins/observability_solution/observability_ai_assistant/common/types.ts", "deprecated": false, "trackAdoption": false }, @@ -179,7 +179,7 @@ "tags": [], "label": "doc_id", "description": [], - "path": "x-pack/plugins/observability_ai_assistant/common/types.ts", + "path": "x-pack/plugins/observability_solution/observability_ai_assistant/common/types.ts", "deprecated": false, "trackAdoption": false }, @@ -193,7 +193,7 @@ "signature": [ "\"medium\" | \"high\" | \"low\"" ], - "path": "x-pack/plugins/observability_ai_assistant/common/types.ts", + "path": "x-pack/plugins/observability_solution/observability_ai_assistant/common/types.ts", "deprecated": false, "trackAdoption": false }, @@ -204,7 +204,7 @@ "tags": [], "label": "is_correction", "description": [], - "path": "x-pack/plugins/observability_ai_assistant/common/types.ts", + "path": "x-pack/plugins/observability_solution/observability_ai_assistant/common/types.ts", "deprecated": false, "trackAdoption": false }, @@ -215,7 +215,7 @@ "tags": [], "label": "public", "description": [], - "path": "x-pack/plugins/observability_ai_assistant/common/types.ts", + "path": "x-pack/plugins/observability_solution/observability_ai_assistant/common/types.ts", "deprecated": false, "trackAdoption": false }, @@ -229,7 +229,7 @@ "signature": [ "Record | undefined" ], - "path": "x-pack/plugins/observability_ai_assistant/common/types.ts", + "path": "x-pack/plugins/observability_solution/observability_ai_assistant/common/types.ts", "deprecated": false, "trackAdoption": false }, @@ -249,7 +249,7 @@ "text": "KnowledgeBaseEntryRole" } ], - "path": "x-pack/plugins/observability_ai_assistant/common/types.ts", + "path": "x-pack/plugins/observability_solution/observability_ai_assistant/common/types.ts", "deprecated": false, "trackAdoption": false } @@ -263,7 +263,7 @@ "tags": [], "label": "Message", "description": [], - "path": "x-pack/plugins/observability_ai_assistant/common/types.ts", + "path": "x-pack/plugins/observability_solution/observability_ai_assistant/common/types.ts", "deprecated": false, "trackAdoption": false, "children": [ @@ -274,7 +274,7 @@ "tags": [], "label": "'@timestamp'", "description": [], - "path": "x-pack/plugins/observability_ai_assistant/common/types.ts", + "path": "x-pack/plugins/observability_solution/observability_ai_assistant/common/types.ts", "deprecated": false, "trackAdoption": false }, @@ -320,7 +320,7 @@ }, ".Elastic; } | undefined; data?: string | undefined; }" ], - "path": "x-pack/plugins/observability_ai_assistant/common/types.ts", + "path": "x-pack/plugins/observability_solution/observability_ai_assistant/common/types.ts", "deprecated": false, "trackAdoption": false } @@ -334,7 +334,7 @@ "tags": [], "label": "ObservabilityAIAssistantService", "description": [], - "path": "x-pack/plugins/observability_ai_assistant/public/types.ts", + "path": "x-pack/plugins/observability_solution/observability_ai_assistant/public/types.ts", "deprecated": false, "trackAdoption": false, "children": [ @@ -348,7 +348,7 @@ "signature": [ "() => boolean" ], - "path": "x-pack/plugins/observability_ai_assistant/public/types.ts", + "path": "x-pack/plugins/observability_solution/observability_ai_assistant/public/types.ts", "deprecated": false, "trackAdoption": false, "children": [], @@ -1376,7 +1376,7 @@ "ObservabilityAIAssistantRouteCreateOptions", "; }, TEndpoint>>" ], - "path": "x-pack/plugins/observability_ai_assistant/public/types.ts", + "path": "x-pack/plugins/observability_solution/observability_ai_assistant/public/types.ts", "deprecated": false, "trackAdoption": false, "returnComment": [], @@ -1454,7 +1454,7 @@ }, ">" ], - "path": "x-pack/plugins/observability_ai_assistant/public/types.ts", + "path": "x-pack/plugins/observability_solution/observability_ai_assistant/public/types.ts", "deprecated": false, "trackAdoption": false, "children": [], @@ -1474,7 +1474,7 @@ "ILicense", ">" ], - "path": "x-pack/plugins/observability_ai_assistant/public/types.ts", + "path": "x-pack/plugins/observability_solution/observability_ai_assistant/public/types.ts", "deprecated": false, "trackAdoption": false, "children": [], @@ -1497,7 +1497,7 @@ "text": "SharePublicStart" } ], - "path": "x-pack/plugins/observability_ai_assistant/public/types.ts", + "path": "x-pack/plugins/observability_solution/observability_ai_assistant/public/types.ts", "deprecated": false, "trackAdoption": false, "children": [], @@ -1515,7 +1515,7 @@ "ObservabilityAIAssistantChatService", ">" ], - "path": "x-pack/plugins/observability_ai_assistant/public/types.ts", + "path": "x-pack/plugins/observability_solution/observability_ai_assistant/public/types.ts", "deprecated": false, "trackAdoption": false, "children": [ @@ -1526,7 +1526,7 @@ "tags": [], "label": "{}", "description": [], - "path": "x-pack/plugins/observability_ai_assistant/public/types.ts", + "path": "x-pack/plugins/observability_solution/observability_ai_assistant/public/types.ts", "deprecated": false, "trackAdoption": false, "children": [ @@ -1540,7 +1540,7 @@ "signature": [ "AbortSignal" ], - "path": "x-pack/plugins/observability_ai_assistant/public/types.ts", + "path": "x-pack/plugins/observability_solution/observability_ai_assistant/public/types.ts", "deprecated": false, "trackAdoption": false } @@ -1561,7 +1561,7 @@ "ChatRegistrationRenderFunction", ") => void" ], - "path": "x-pack/plugins/observability_ai_assistant/public/types.ts", + "path": "x-pack/plugins/observability_solution/observability_ai_assistant/public/types.ts", "deprecated": false, "trackAdoption": false, "children": [ @@ -1575,7 +1575,7 @@ "signature": [ "ChatRegistrationRenderFunction" ], - "path": "x-pack/plugins/observability_ai_assistant/public/types.ts", + "path": "x-pack/plugins/observability_solution/observability_ai_assistant/public/types.ts", "deprecated": false, "trackAdoption": false, "isRequired": true @@ -1595,7 +1595,7 @@ "ObservabilityAIAssistantScreenContext", ") => () => void" ], - "path": "x-pack/plugins/observability_ai_assistant/public/types.ts", + "path": "x-pack/plugins/observability_solution/observability_ai_assistant/public/types.ts", "deprecated": false, "trackAdoption": false, "children": [ @@ -1609,7 +1609,7 @@ "signature": [ "ObservabilityAIAssistantScreenContext" ], - "path": "x-pack/plugins/observability_ai_assistant/public/types.ts", + "path": "x-pack/plugins/observability_solution/observability_ai_assistant/public/types.ts", "deprecated": false, "trackAdoption": false, "isRequired": true @@ -1629,7 +1629,7 @@ "ObservabilityAIAssistantScreenContext", "[]" ], - "path": "x-pack/plugins/observability_ai_assistant/public/types.ts", + "path": "x-pack/plugins/observability_solution/observability_ai_assistant/public/types.ts", "deprecated": false, "trackAdoption": false, "children": [], @@ -1647,7 +1647,7 @@ "tags": [], "label": "KnowledgeBaseEntryRole", "description": [], - "path": "x-pack/plugins/observability_ai_assistant/common/types.ts", + "path": "x-pack/plugins/observability_solution/observability_ai_assistant/common/types.ts", "deprecated": false, "trackAdoption": false, "initialIsOpen": false @@ -1659,7 +1659,7 @@ "tags": [], "label": "MessageRole", "description": [], - "path": "x-pack/plugins/observability_ai_assistant/common/types.ts", + "path": "x-pack/plugins/observability_solution/observability_ai_assistant/common/types.ts", "deprecated": false, "trackAdoption": false, "initialIsOpen": false @@ -2176,7 +2176,7 @@ "ServerRouteCreateOptions", " ? TReturnType : never" ], - "path": "x-pack/plugins/observability_ai_assistant/public/api/index.ts", + "path": "x-pack/plugins/observability_solution/observability_ai_assistant/public/api/index.ts", "deprecated": false, "trackAdoption": false, "initialIsOpen": false @@ -2707,7 +2707,7 @@ }, " ? ClientRequestParamsOfType : {} : never" ], - "path": "x-pack/plugins/observability_ai_assistant/public/api/index.ts", + "path": "x-pack/plugins/observability_solution/observability_ai_assistant/public/api/index.ts", "deprecated": false, "trackAdoption": false, "initialIsOpen": false @@ -2722,7 +2722,7 @@ "signature": [ "\"POST /internal/observability_ai_assistant/chat\" | \"POST /internal/observability_ai_assistant/chat/complete\" | \"GET /internal/observability_ai_assistant/conversation/{conversationId}\" | \"POST /internal/observability_ai_assistant/conversations\" | \"POST /internal/observability_ai_assistant/conversation\" | \"PUT /internal/observability_ai_assistant/conversation/{conversationId}\" | \"PUT /internal/observability_ai_assistant/conversation/{conversationId}/title\" | \"DELETE /internal/observability_ai_assistant/conversation/{conversationId}\" | \"GET /internal/observability_ai_assistant/connectors\" | \"GET /internal/observability_ai_assistant/functions\" | \"POST /internal/observability_ai_assistant/functions/recall\" | \"POST /internal/observability_ai_assistant/functions/summarize\" | \"POST /internal/observability_ai_assistant/kb/setup\" | \"GET /internal/observability_ai_assistant/kb/status\" | \"GET /internal/observability_ai_assistant/kb/entries\" | \"POST /internal/observability_ai_assistant/kb/entries/import\" | \"POST /internal/observability_ai_assistant/kb/entries/save\" | \"DELETE /internal/observability_ai_assistant/kb/entries/{entryId}\"" ], - "path": "x-pack/plugins/observability_ai_assistant/public/api/index.ts", + "path": "x-pack/plugins/observability_solution/observability_ai_assistant/public/api/index.ts", "deprecated": false, "trackAdoption": false, "initialIsOpen": false @@ -2736,7 +2736,7 @@ "tags": [], "label": "ObservabilityAIAssistantPluginSetup", "description": [], - "path": "x-pack/plugins/observability_ai_assistant/public/types.ts", + "path": "x-pack/plugins/observability_solution/observability_ai_assistant/public/types.ts", "deprecated": false, "trackAdoption": false, "children": [], @@ -2750,7 +2750,7 @@ "tags": [], "label": "ObservabilityAIAssistantPluginStart", "description": [], - "path": "x-pack/plugins/observability_ai_assistant/public/types.ts", + "path": "x-pack/plugins/observability_solution/observability_ai_assistant/public/types.ts", "deprecated": false, "trackAdoption": false, "children": [ @@ -2770,7 +2770,7 @@ "text": "ObservabilityAIAssistantService" } ], - "path": "x-pack/plugins/observability_ai_assistant/public/types.ts", + "path": "x-pack/plugins/observability_solution/observability_ai_assistant/public/types.ts", "deprecated": false, "trackAdoption": false }, @@ -2786,7 +2786,7 @@ "InsightProps", "> | null" ], - "path": "x-pack/plugins/observability_ai_assistant/public/types.ts", + "path": "x-pack/plugins/observability_solution/observability_ai_assistant/public/types.ts", "deprecated": false, "trackAdoption": false }, @@ -2808,7 +2808,7 @@ }, ", \"key\" | \"css\" | \"analytics\"> & React.RefAttributes<{}>> | null" ], - "path": "x-pack/plugins/observability_ai_assistant/public/types.ts", + "path": "x-pack/plugins/observability_solution/observability_ai_assistant/public/types.ts", "deprecated": false, "trackAdoption": false }, @@ -2823,7 +2823,7 @@ "() => ", "UseGenAIConnectorsResult" ], - "path": "x-pack/plugins/observability_ai_assistant/public/types.ts", + "path": "x-pack/plugins/observability_solution/observability_ai_assistant/public/types.ts", "deprecated": false, "trackAdoption": false, "children": [], @@ -3348,7 +3348,7 @@ "ObservabilityAIAssistantRouteCreateOptions", "; }" ], - "path": "x-pack/plugins/observability_ai_assistant/server/routes/get_global_observability_ai_assistant_route_repository.ts", + "path": "x-pack/plugins/observability_solution/observability_ai_assistant/server/routes/get_global_observability_ai_assistant_route_repository.ts", "deprecated": false, "trackAdoption": false, "initialIsOpen": false @@ -3362,7 +3362,7 @@ "tags": [], "label": "ObservabilityAIAssistantPluginStart", "description": [], - "path": "x-pack/plugins/observability_ai_assistant/server/types.ts", + "path": "x-pack/plugins/observability_solution/observability_ai_assistant/server/types.ts", "deprecated": false, "trackAdoption": false, "children": [ @@ -3378,7 +3378,7 @@ "signature": [ "ObservabilityAIAssistantService" ], - "path": "x-pack/plugins/observability_ai_assistant/server/types.ts", + "path": "x-pack/plugins/observability_solution/observability_ai_assistant/server/types.ts", "deprecated": false, "trackAdoption": false } @@ -3393,7 +3393,7 @@ "tags": [], "label": "ObservabilityAIAssistantPluginSetup", "description": [], - "path": "x-pack/plugins/observability_ai_assistant/server/types.ts", + "path": "x-pack/plugins/observability_solution/observability_ai_assistant/server/types.ts", "deprecated": false, "trackAdoption": false, "children": [ @@ -3409,7 +3409,7 @@ "signature": [ "ObservabilityAIAssistantService" ], - "path": "x-pack/plugins/observability_ai_assistant/server/types.ts", + "path": "x-pack/plugins/observability_solution/observability_ai_assistant/server/types.ts", "deprecated": false, "trackAdoption": false } @@ -3429,7 +3429,7 @@ "tags": [], "label": "Conversation", "description": [], - "path": "x-pack/plugins/observability_ai_assistant/common/types.ts", + "path": "x-pack/plugins/observability_solution/observability_ai_assistant/common/types.ts", "deprecated": false, "trackAdoption": false, "children": [ @@ -3440,7 +3440,7 @@ "tags": [], "label": "'@timestamp'", "description": [], - "path": "x-pack/plugins/observability_ai_assistant/common/types.ts", + "path": "x-pack/plugins/observability_solution/observability_ai_assistant/common/types.ts", "deprecated": false, "trackAdoption": false }, @@ -3454,7 +3454,7 @@ "signature": [ "{ id?: string | undefined; name: string; }" ], - "path": "x-pack/plugins/observability_ai_assistant/common/types.ts", + "path": "x-pack/plugins/observability_solution/observability_ai_assistant/common/types.ts", "deprecated": false, "trackAdoption": false }, @@ -3468,7 +3468,7 @@ "signature": [ "{ id: string; title: string; last_updated: string; }" ], - "path": "x-pack/plugins/observability_ai_assistant/common/types.ts", + "path": "x-pack/plugins/observability_solution/observability_ai_assistant/common/types.ts", "deprecated": false, "trackAdoption": false }, @@ -3489,7 +3489,7 @@ }, "[]" ], - "path": "x-pack/plugins/observability_ai_assistant/common/types.ts", + "path": "x-pack/plugins/observability_solution/observability_ai_assistant/common/types.ts", "deprecated": false, "trackAdoption": false }, @@ -3503,7 +3503,7 @@ "signature": [ "{ [x: string]: string; }" ], - "path": "x-pack/plugins/observability_ai_assistant/common/types.ts", + "path": "x-pack/plugins/observability_solution/observability_ai_assistant/common/types.ts", "deprecated": false, "trackAdoption": false }, @@ -3517,7 +3517,7 @@ "signature": [ "{ [x: string]: number; }" ], - "path": "x-pack/plugins/observability_ai_assistant/common/types.ts", + "path": "x-pack/plugins/observability_solution/observability_ai_assistant/common/types.ts", "deprecated": false, "trackAdoption": false }, @@ -3528,7 +3528,7 @@ "tags": [], "label": "namespace", "description": [], - "path": "x-pack/plugins/observability_ai_assistant/common/types.ts", + "path": "x-pack/plugins/observability_solution/observability_ai_assistant/common/types.ts", "deprecated": false, "trackAdoption": false }, @@ -3539,7 +3539,7 @@ "tags": [], "label": "public", "description": [], - "path": "x-pack/plugins/observability_ai_assistant/common/types.ts", + "path": "x-pack/plugins/observability_solution/observability_ai_assistant/common/types.ts", "deprecated": false, "trackAdoption": false } @@ -3553,7 +3553,7 @@ "tags": [], "label": "KnowledgeBaseEntry", "description": [], - "path": "x-pack/plugins/observability_ai_assistant/common/types.ts", + "path": "x-pack/plugins/observability_solution/observability_ai_assistant/common/types.ts", "deprecated": false, "trackAdoption": false, "children": [ @@ -3564,7 +3564,7 @@ "tags": [], "label": "'@timestamp'", "description": [], - "path": "x-pack/plugins/observability_ai_assistant/common/types.ts", + "path": "x-pack/plugins/observability_solution/observability_ai_assistant/common/types.ts", "deprecated": false, "trackAdoption": false }, @@ -3575,7 +3575,7 @@ "tags": [], "label": "id", "description": [], - "path": "x-pack/plugins/observability_ai_assistant/common/types.ts", + "path": "x-pack/plugins/observability_solution/observability_ai_assistant/common/types.ts", "deprecated": false, "trackAdoption": false }, @@ -3586,7 +3586,7 @@ "tags": [], "label": "text", "description": [], - "path": "x-pack/plugins/observability_ai_assistant/common/types.ts", + "path": "x-pack/plugins/observability_solution/observability_ai_assistant/common/types.ts", "deprecated": false, "trackAdoption": false }, @@ -3597,7 +3597,7 @@ "tags": [], "label": "doc_id", "description": [], - "path": "x-pack/plugins/observability_ai_assistant/common/types.ts", + "path": "x-pack/plugins/observability_solution/observability_ai_assistant/common/types.ts", "deprecated": false, "trackAdoption": false }, @@ -3611,7 +3611,7 @@ "signature": [ "\"medium\" | \"high\" | \"low\"" ], - "path": "x-pack/plugins/observability_ai_assistant/common/types.ts", + "path": "x-pack/plugins/observability_solution/observability_ai_assistant/common/types.ts", "deprecated": false, "trackAdoption": false }, @@ -3622,7 +3622,7 @@ "tags": [], "label": "is_correction", "description": [], - "path": "x-pack/plugins/observability_ai_assistant/common/types.ts", + "path": "x-pack/plugins/observability_solution/observability_ai_assistant/common/types.ts", "deprecated": false, "trackAdoption": false }, @@ -3633,7 +3633,7 @@ "tags": [], "label": "public", "description": [], - "path": "x-pack/plugins/observability_ai_assistant/common/types.ts", + "path": "x-pack/plugins/observability_solution/observability_ai_assistant/common/types.ts", "deprecated": false, "trackAdoption": false }, @@ -3647,7 +3647,7 @@ "signature": [ "Record | undefined" ], - "path": "x-pack/plugins/observability_ai_assistant/common/types.ts", + "path": "x-pack/plugins/observability_solution/observability_ai_assistant/common/types.ts", "deprecated": false, "trackAdoption": false }, @@ -3667,7 +3667,7 @@ "text": "KnowledgeBaseEntryRole" } ], - "path": "x-pack/plugins/observability_ai_assistant/common/types.ts", + "path": "x-pack/plugins/observability_solution/observability_ai_assistant/common/types.ts", "deprecated": false, "trackAdoption": false } @@ -3681,7 +3681,7 @@ "tags": [], "label": "Message", "description": [], - "path": "x-pack/plugins/observability_ai_assistant/common/types.ts", + "path": "x-pack/plugins/observability_solution/observability_ai_assistant/common/types.ts", "deprecated": false, "trackAdoption": false, "children": [ @@ -3692,7 +3692,7 @@ "tags": [], "label": "'@timestamp'", "description": [], - "path": "x-pack/plugins/observability_ai_assistant/common/types.ts", + "path": "x-pack/plugins/observability_solution/observability_ai_assistant/common/types.ts", "deprecated": false, "trackAdoption": false }, @@ -3738,7 +3738,7 @@ }, ".Elastic; } | undefined; data?: string | undefined; }" ], - "path": "x-pack/plugins/observability_ai_assistant/common/types.ts", + "path": "x-pack/plugins/observability_solution/observability_ai_assistant/common/types.ts", "deprecated": false, "trackAdoption": false } @@ -3754,7 +3754,7 @@ "tags": [], "label": "KnowledgeBaseEntryRole", "description": [], - "path": "x-pack/plugins/observability_ai_assistant/common/types.ts", + "path": "x-pack/plugins/observability_solution/observability_ai_assistant/common/types.ts", "deprecated": false, "trackAdoption": false, "initialIsOpen": false @@ -3766,7 +3766,7 @@ "tags": [], "label": "MessageRole", "description": [], - "path": "x-pack/plugins/observability_ai_assistant/common/types.ts", + "path": "x-pack/plugins/observability_solution/observability_ai_assistant/common/types.ts", "deprecated": false, "trackAdoption": false, "initialIsOpen": false diff --git a/api_docs/observability_a_i_assistant.mdx b/api_docs/observability_a_i_assistant.mdx index d16dddc2f44d5..27ebc977bd813 100644 --- a/api_docs/observability_a_i_assistant.mdx +++ b/api_docs/observability_a_i_assistant.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/observabilityAIAssistant title: "observabilityAIAssistant" image: https://source.unsplash.com/400x175/?github description: API docs for the observabilityAIAssistant plugin -date: 2024-02-19 +date: 2024-02-22 tags: ['contributor', 'dev', 'apidocs', 'kibana', 'observabilityAIAssistant'] --- import observabilityAIAssistantObj from './observability_a_i_assistant.devdocs.json'; diff --git a/api_docs/observability_logs_explorer.devdocs.json b/api_docs/observability_logs_explorer.devdocs.json index 5c60b9f47b230..6f15cfcf43927 100644 --- a/api_docs/observability_logs_explorer.devdocs.json +++ b/api_docs/observability_logs_explorer.devdocs.json @@ -51,7 +51,7 @@ }, ">" ], - "path": "x-pack/plugins/observability_solution/observability_logs_explorer/common/locators/all_datasets/all_datasets_locator.ts", + "path": "x-pack/plugins/observability_solution/observability_logs_explorer/common/locators/all_datasets_locator.ts", "deprecated": false, "trackAdoption": false, "children": [ @@ -65,7 +65,7 @@ "signature": [ "\"ALL_DATASETS_LOCATOR\"" ], - "path": "x-pack/plugins/observability_solution/observability_logs_explorer/common/locators/all_datasets/all_datasets_locator.ts", + "path": "x-pack/plugins/observability_solution/observability_logs_explorer/common/locators/all_datasets_locator.ts", "deprecated": false, "trackAdoption": false }, @@ -79,7 +79,7 @@ "signature": [ "any" ], - "path": "x-pack/plugins/observability_solution/observability_logs_explorer/common/locators/all_datasets/all_datasets_locator.ts", + "path": "x-pack/plugins/observability_solution/observability_logs_explorer/common/locators/all_datasets_locator.ts", "deprecated": false, "trackAdoption": false, "children": [ @@ -91,9 +91,9 @@ "label": "deps", "description": [], "signature": [ - "DatasetLocatorDependencies" + "ObsLogsExplorerLocatorDependencies" ], - "path": "x-pack/plugins/observability_solution/observability_logs_explorer/common/locators/all_datasets/all_datasets_locator.ts", + "path": "x-pack/plugins/observability_solution/observability_logs_explorer/common/locators/all_datasets_locator.ts", "deprecated": false, "trackAdoption": false, "isRequired": true @@ -119,7 +119,7 @@ }, ") => Promise<{ app: string; path: string; state: { origin?: { id: \"application-log-onboarding\"; } | undefined; }; }>" ], - "path": "x-pack/plugins/observability_solution/observability_logs_explorer/common/locators/all_datasets/all_datasets_locator.ts", + "path": "x-pack/plugins/observability_solution/observability_logs_explorer/common/locators/all_datasets_locator.ts", "deprecated": false, "trackAdoption": false, "children": [ @@ -139,7 +139,7 @@ "text": "DatasetLocatorParams" } ], - "path": "x-pack/plugins/observability_solution/observability_logs_explorer/common/locators/all_datasets/all_datasets_locator.ts", + "path": "x-pack/plugins/observability_solution/observability_logs_explorer/common/locators/all_datasets_locator.ts", "deprecated": false, "trackAdoption": false, "isRequired": true @@ -183,7 +183,7 @@ }, ">" ], - "path": "x-pack/plugins/observability_solution/observability_logs_explorer/common/locators/single_dataset/single_dataset_locator.ts", + "path": "x-pack/plugins/observability_solution/observability_logs_explorer/common/locators/single_dataset_locator.ts", "deprecated": false, "trackAdoption": false, "children": [ @@ -197,7 +197,7 @@ "signature": [ "\"SINGLE_DATASET_LOCATOR\"" ], - "path": "x-pack/plugins/observability_solution/observability_logs_explorer/common/locators/single_dataset/single_dataset_locator.ts", + "path": "x-pack/plugins/observability_solution/observability_logs_explorer/common/locators/single_dataset_locator.ts", "deprecated": false, "trackAdoption": false }, @@ -211,7 +211,7 @@ "signature": [ "any" ], - "path": "x-pack/plugins/observability_solution/observability_logs_explorer/common/locators/single_dataset/single_dataset_locator.ts", + "path": "x-pack/plugins/observability_solution/observability_logs_explorer/common/locators/single_dataset_locator.ts", "deprecated": false, "trackAdoption": false, "children": [ @@ -223,9 +223,9 @@ "label": "deps", "description": [], "signature": [ - "DatasetLocatorDependencies" + "ObsLogsExplorerLocatorDependencies" ], - "path": "x-pack/plugins/observability_solution/observability_logs_explorer/common/locators/single_dataset/single_dataset_locator.ts", + "path": "x-pack/plugins/observability_solution/observability_logs_explorer/common/locators/single_dataset_locator.ts", "deprecated": false, "trackAdoption": false, "isRequired": true @@ -251,7 +251,7 @@ }, ") => Promise<{ app: string; path: string; state: { origin?: { id: \"application-log-onboarding\"; } | undefined; }; }>" ], - "path": "x-pack/plugins/observability_solution/observability_logs_explorer/common/locators/single_dataset/single_dataset_locator.ts", + "path": "x-pack/plugins/observability_solution/observability_logs_explorer/common/locators/single_dataset_locator.ts", "deprecated": false, "trackAdoption": false, "children": [ @@ -271,7 +271,7 @@ "text": "SingleDatasetLocatorParams" } ], - "path": "x-pack/plugins/observability_solution/observability_logs_explorer/common/locators/single_dataset/single_dataset_locator.ts", + "path": "x-pack/plugins/observability_solution/observability_logs_explorer/common/locators/single_dataset_locator.ts", "deprecated": false, "trackAdoption": false, "isRequired": true @@ -359,6 +359,35 @@ "deprecated": false, "trackAdoption": false }, + { + "parentPluginId": "observabilityLogsExplorer", + "id": "def-common.ObservabilityLogsExplorerLocators.dataViewLocator", + "type": "Object", + "tags": [], + "label": "dataViewLocator", + "description": [], + "signature": [ + { + "pluginId": "share", + "scope": "common", + "docId": "kibSharePluginApi", + "section": "def-common.LocatorPublic", + "text": "LocatorPublic" + }, + "<", + { + "pluginId": "@kbn/deeplinks-observability", + "scope": "common", + "docId": "kibKbnDeeplinksObservabilityPluginApi", + "section": "def-common.ObsLogsExplorerDataViewLocatorParams", + "text": "ObsLogsExplorerDataViewLocatorParams" + }, + ">" + ], + "path": "x-pack/plugins/observability_solution/observability_logs_explorer/common/locators/index.ts", + "deprecated": false, + "trackAdoption": false + }, { "parentPluginId": "observabilityLogsExplorer", "id": "def-common.ObservabilityLogsExplorerLocators.singleDatasetLocator", diff --git a/api_docs/observability_logs_explorer.mdx b/api_docs/observability_logs_explorer.mdx index 9e27455623b1d..a207cbea07392 100644 --- a/api_docs/observability_logs_explorer.mdx +++ b/api_docs/observability_logs_explorer.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/observabilityLogsExplorer title: "observabilityLogsExplorer" image: https://source.unsplash.com/400x175/?github description: API docs for the observabilityLogsExplorer plugin -date: 2024-02-19 +date: 2024-02-22 tags: ['contributor', 'dev', 'apidocs', 'kibana', 'observabilityLogsExplorer'] --- import observabilityLogsExplorerObj from './observability_logs_explorer.devdocs.json'; @@ -21,7 +21,7 @@ Contact [@elastic/obs-ux-logs-team](https://github.com/orgs/elastic/teams/obs-ux | Public API count | Any count | Items lacking comments | Missing exports | |-------------------|-----------|------------------------|-----------------| -| 19 | 0 | 19 | 1 | +| 20 | 0 | 20 | 1 | ## Common diff --git a/api_docs/observability_onboarding.mdx b/api_docs/observability_onboarding.mdx index 103cd41a0c7ea..cd3723266efff 100644 --- a/api_docs/observability_onboarding.mdx +++ b/api_docs/observability_onboarding.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/observabilityOnboarding title: "observabilityOnboarding" image: https://source.unsplash.com/400x175/?github description: API docs for the observabilityOnboarding plugin -date: 2024-02-19 +date: 2024-02-22 tags: ['contributor', 'dev', 'apidocs', 'kibana', 'observabilityOnboarding'] --- import observabilityOnboardingObj from './observability_onboarding.devdocs.json'; diff --git a/api_docs/observability_shared.devdocs.json b/api_docs/observability_shared.devdocs.json index 1867134f22f2e..3f7f79f8f872d 100644 --- a/api_docs/observability_shared.devdocs.json +++ b/api_docs/observability_shared.devdocs.json @@ -27,7 +27,7 @@ }, "" ], - "path": "x-pack/plugins/observability_shared/public/plugin.ts", + "path": "x-pack/plugins/observability_solution/observability_shared/public/plugin.ts", "deprecated": false, "trackAdoption": false, "children": [ @@ -38,10 +38,8 @@ "tags": [], "label": "Constructor", "description": [], - "signature": [ - "any" - ], - "path": "x-pack/plugins/observability_shared/public/plugin.ts", + "signature": ["any"], + "path": "x-pack/plugins/observability_solution/observability_shared/public/plugin.ts", "deprecated": false, "trackAdoption": false, "children": [], @@ -77,7 +75,7 @@ }, "[]>) => void; }; }" ], - "path": "x-pack/plugins/observability_shared/public/plugin.ts", + "path": "x-pack/plugins/observability_solution/observability_shared/public/plugin.ts", "deprecated": false, "trackAdoption": false, "children": [ @@ -98,7 +96,7 @@ }, "" ], - "path": "x-pack/plugins/observability_shared/public/plugin.ts", + "path": "x-pack/plugins/observability_solution/observability_shared/public/plugin.ts", "deprecated": false, "trackAdoption": false, "isRequired": true @@ -110,10 +108,8 @@ "tags": [], "label": "pluginsSetup", "description": [], - "signature": [ - "ObservabilitySharedSetup" - ], - "path": "x-pack/plugins/observability_shared/public/plugin.ts", + "signature": ["ObservabilitySharedSetup"], + "path": "x-pack/plugins/observability_solution/observability_shared/public/plugin.ts", "deprecated": false, "trackAdoption": false, "isRequired": true @@ -171,7 +167,7 @@ }, ">; }) => void; setIsSidebarEnabled: (isEnabled: boolean) => void; }" ], - "path": "x-pack/plugins/observability_shared/public/plugin.ts", + "path": "x-pack/plugins/observability_solution/observability_shared/public/plugin.ts", "deprecated": false, "trackAdoption": false, "children": [ @@ -191,7 +187,7 @@ "text": "CoreStart" } ], - "path": "x-pack/plugins/observability_shared/public/plugin.ts", + "path": "x-pack/plugins/observability_solution/observability_shared/public/plugin.ts", "deprecated": false, "trackAdoption": false, "isRequired": true @@ -203,10 +199,8 @@ "tags": [], "label": "plugins", "description": [], - "signature": [ - "ObservabilitySharedStart" - ], - "path": "x-pack/plugins/observability_shared/public/plugin.ts", + "signature": ["ObservabilitySharedStart"], + "path": "x-pack/plugins/observability_solution/observability_shared/public/plugin.ts", "deprecated": false, "trackAdoption": false, "isRequired": true @@ -221,10 +215,8 @@ "tags": [], "label": "stop", "description": [], - "signature": [ - "() => void" - ], - "path": "x-pack/plugins/observability_shared/public/plugin.ts", + "signature": ["() => void"], + "path": "x-pack/plugins/observability_solution/observability_shared/public/plugin.ts", "deprecated": false, "trackAdoption": false, "children": [], @@ -242,10 +234,8 @@ "tags": [], "label": "ActionMenu", "description": [], - "signature": [ - "(props: Props) => JSX.Element" - ], - "path": "x-pack/plugins/observability_shared/public/components/action_menu/action_menu.tsx", + "signature": ["(props: Props) => JSX.Element"], + "path": "x-pack/plugins/observability_solution/observability_shared/public/components/action_menu/action_menu.tsx", "deprecated": false, "trackAdoption": false, "children": [ @@ -256,10 +246,8 @@ "tags": [], "label": "props", "description": [], - "signature": [ - "Props" - ], - "path": "x-pack/plugins/observability_shared/public/components/action_menu/action_menu.tsx", + "signature": ["Props"], + "path": "x-pack/plugins/observability_solution/observability_shared/public/components/action_menu/action_menu.tsx", "deprecated": false, "trackAdoption": false, "isRequired": true @@ -275,10 +263,8 @@ "tags": [], "label": "ActionMenuDivider", "description": [], - "signature": [ - "() => JSX.Element" - ], - "path": "x-pack/plugins/observability_shared/public/components/action_menu/action_menu.tsx", + "signature": ["() => JSX.Element"], + "path": "x-pack/plugins/observability_solution/observability_shared/public/components/action_menu/action_menu.tsx", "deprecated": false, "trackAdoption": false, "children": [], @@ -295,7 +281,7 @@ "signature": [ "() => { all: boolean; create: boolean; read: boolean; update: boolean; delete: boolean; push: boolean; connectors: boolean; settings: boolean; }" ], - "path": "x-pack/plugins/observability_shared/public/utils/cases_permissions.ts", + "path": "x-pack/plugins/observability_solution/observability_shared/public/utils/cases_permissions.ts", "deprecated": false, "trackAdoption": false, "children": [], @@ -312,7 +298,7 @@ "signature": [ "({ isLoading, onDiscardChanges, onSave, unsavedChangesCount, saveLabel, appTestSubj, areChangesInvalid, }: Props) => JSX.Element" ], - "path": "x-pack/plugins/observability_shared/public/components/bottom_bar_actions/bottom_bar_actions.tsx", + "path": "x-pack/plugins/observability_solution/observability_shared/public/components/bottom_bar_actions/bottom_bar_actions.tsx", "deprecated": false, "trackAdoption": false, "children": [ @@ -323,10 +309,8 @@ "tags": [], "label": "{\n isLoading,\n onDiscardChanges,\n onSave,\n unsavedChangesCount,\n saveLabel,\n appTestSubj,\n areChangesInvalid = false,\n}", "description": [], - "signature": [ - "Props" - ], - "path": "x-pack/plugins/observability_shared/public/components/bottom_bar_actions/bottom_bar_actions.tsx", + "signature": ["Props"], + "path": "x-pack/plugins/observability_solution/observability_shared/public/components/bottom_bar_actions/bottom_bar_actions.tsx", "deprecated": false, "trackAdoption": false, "isRequired": true @@ -342,10 +326,8 @@ "tags": [], "label": "createEsParams", "description": [], - "signature": [ - "(params: T) => T" - ], - "path": "x-pack/plugins/observability_shared/public/hooks/use_es_search.ts", + "signature": ["(params: T) => T"], + "path": "x-pack/plugins/observability_solution/observability_shared/public/hooks/use_es_search.ts", "deprecated": false, "trackAdoption": false, "children": [ @@ -356,10 +338,8 @@ "tags": [], "label": "params", "description": [], - "signature": [ - "T" - ], - "path": "x-pack/plugins/observability_shared/public/hooks/use_es_search.ts", + "signature": ["T"], + "path": "x-pack/plugins/observability_solution/observability_shared/public/hooks/use_es_search.ts", "deprecated": false, "trackAdoption": false, "isRequired": true @@ -375,10 +355,8 @@ "tags": [], "label": "EmbeddableFlamegraph", "description": [], - "signature": [ - "(props: Props) => JSX.Element" - ], - "path": "x-pack/plugins/observability_shared/public/components/profiling/embeddables/embeddable_flamegraph.tsx", + "signature": ["(props: Props) => JSX.Element"], + "path": "x-pack/plugins/observability_solution/observability_shared/public/components/profiling/embeddables/embeddable_flamegraph.tsx", "deprecated": false, "trackAdoption": false, "children": [ @@ -389,10 +367,8 @@ "tags": [], "label": "props", "description": [], - "signature": [ - "Props" - ], - "path": "x-pack/plugins/observability_shared/public/components/profiling/embeddables/embeddable_flamegraph.tsx", + "signature": ["Props"], + "path": "x-pack/plugins/observability_solution/observability_shared/public/components/profiling/embeddables/embeddable_flamegraph.tsx", "deprecated": false, "trackAdoption": false, "isRequired": true @@ -408,10 +384,8 @@ "tags": [], "label": "EmbeddableFunctions", "description": [], - "signature": [ - "(props: Props) => JSX.Element" - ], - "path": "x-pack/plugins/observability_shared/public/components/profiling/embeddables/embeddable_functions.tsx", + "signature": ["(props: Props) => JSX.Element"], + "path": "x-pack/plugins/observability_solution/observability_shared/public/components/profiling/embeddables/embeddable_functions.tsx", "deprecated": false, "trackAdoption": false, "children": [ @@ -422,10 +396,8 @@ "tags": [], "label": "props", "description": [], - "signature": [ - "Props" - ], - "path": "x-pack/plugins/observability_shared/public/components/profiling/embeddables/embeddable_functions.tsx", + "signature": ["Props"], + "path": "x-pack/plugins/observability_solution/observability_shared/public/components/profiling/embeddables/embeddable_functions.tsx", "deprecated": false, "trackAdoption": false, "isRequired": true @@ -452,7 +424,7 @@ }, ") => JSX.Element" ], - "path": "x-pack/plugins/observability_shared/public/components/profiling/embeddables/embeddable_profiling_search_bar.tsx", + "path": "x-pack/plugins/observability_solution/observability_shared/public/components/profiling/embeddables/embeddable_profiling_search_bar.tsx", "deprecated": false, "trackAdoption": false, "children": [ @@ -472,7 +444,7 @@ "text": "EmbeddableProfilingSearchBarProps" } ], - "path": "x-pack/plugins/observability_shared/public/components/profiling/embeddables/embeddable_profiling_search_bar.tsx", + "path": "x-pack/plugins/observability_solution/observability_shared/public/components/profiling/embeddables/embeddable_profiling_search_bar.tsx", "deprecated": false, "trackAdoption": false, "isRequired": true @@ -488,10 +460,8 @@ "tags": [], "label": "EmbeddableStackTraces", "description": [], - "signature": [ - "(props: Props) => JSX.Element" - ], - "path": "x-pack/plugins/observability_shared/public/components/profiling/embeddables/embeddable_stack_traces.tsx", + "signature": ["(props: Props) => JSX.Element"], + "path": "x-pack/plugins/observability_solution/observability_shared/public/components/profiling/embeddables/embeddable_stack_traces.tsx", "deprecated": false, "trackAdoption": false, "children": [ @@ -502,10 +472,8 @@ "tags": [], "label": "props", "description": [], - "signature": [ - "Props" - ], - "path": "x-pack/plugins/observability_shared/public/components/profiling/embeddables/embeddable_stack_traces.tsx", + "signature": ["Props"], + "path": "x-pack/plugins/observability_solution/observability_shared/public/components/profiling/embeddables/embeddable_stack_traces.tsx", "deprecated": false, "trackAdoption": false, "isRequired": true @@ -524,7 +492,7 @@ "signature": [ "({ formUrl, formConfig, \"data-test-subj\": dts, onClickCapture, defaultButton, kibanaVersion, isCloudEnv, isServerlessEnv, sanitizedPath, surveyButtonText, }: FeatureFeedbackButtonProps) => JSX.Element" ], - "path": "x-pack/plugins/observability_shared/public/components/feature_feedback_button/feature_feedback_button.tsx", + "path": "x-pack/plugins/observability_solution/observability_shared/public/components/feature_feedback_button/feature_feedback_button.tsx", "deprecated": false, "trackAdoption": false, "children": [ @@ -535,10 +503,8 @@ "tags": [], "label": "{\n formUrl,\n formConfig,\n 'data-test-subj': dts,\n onClickCapture,\n defaultButton,\n kibanaVersion,\n isCloudEnv,\n isServerlessEnv,\n sanitizedPath,\n surveyButtonText = (\n \n ),\n}", "description": [], - "signature": [ - "FeatureFeedbackButtonProps" - ], - "path": "x-pack/plugins/observability_shared/public/components/feature_feedback_button/feature_feedback_button.tsx", + "signature": ["FeatureFeedbackButtonProps"], + "path": "x-pack/plugins/observability_solution/observability_shared/public/components/feature_feedback_button/feature_feedback_button.tsx", "deprecated": false, "trackAdoption": false, "isRequired": true @@ -554,12 +520,8 @@ "tags": [], "label": "FieldValueSelection", "description": [], - "signature": [ - "(props: ", - "FieldValueSelectionProps", - ") => JSX.Element" - ], - "path": "x-pack/plugins/observability_shared/public/components/index.tsx", + "signature": ["(props: ", "FieldValueSelectionProps", ") => JSX.Element"], + "path": "x-pack/plugins/observability_solution/observability_shared/public/components/index.tsx", "deprecated": false, "trackAdoption": false, "children": [ @@ -570,10 +532,8 @@ "tags": [], "label": "props", "description": [], - "signature": [ - "FieldValueSelectionProps" - ], - "path": "x-pack/plugins/observability_shared/public/components/index.tsx", + "signature": ["FieldValueSelectionProps"], + "path": "x-pack/plugins/observability_solution/observability_shared/public/components/index.tsx", "deprecated": false, "trackAdoption": false, "isRequired": true @@ -589,12 +549,8 @@ "tags": [], "label": "FieldValueSuggestions", "description": [], - "signature": [ - "(props: ", - "FieldValueSuggestionsProps", - ") => JSX.Element" - ], - "path": "x-pack/plugins/observability_shared/public/components/index.tsx", + "signature": ["(props: ", "FieldValueSuggestionsProps", ") => JSX.Element"], + "path": "x-pack/plugins/observability_solution/observability_shared/public/components/index.tsx", "deprecated": false, "trackAdoption": false, "children": [ @@ -605,10 +561,8 @@ "tags": [], "label": "props", "description": [], - "signature": [ - "FieldValueSuggestionsProps" - ], - "path": "x-pack/plugins/observability_shared/public/components/index.tsx", + "signature": ["FieldValueSuggestionsProps"], + "path": "x-pack/plugins/observability_solution/observability_shared/public/components/index.tsx", "deprecated": false, "trackAdoption": false, "isRequired": true @@ -651,7 +605,7 @@ }, "[]>" ], - "path": "x-pack/plugins/observability_shared/public/services/get_context_menu_items_from_actions.ts", + "path": "x-pack/plugins/observability_solution/observability_shared/public/services/get_context_menu_items_from_actions.ts", "deprecated": false, "trackAdoption": false, "children": [ @@ -662,7 +616,7 @@ "tags": [], "label": "{\n uiActions,\n triggerId,\n context,\n}", "description": [], - "path": "x-pack/plugins/observability_shared/public/services/get_context_menu_items_from_actions.ts", + "path": "x-pack/plugins/observability_solution/observability_shared/public/services/get_context_menu_items_from_actions.ts", "deprecated": false, "trackAdoption": false, "children": [ @@ -750,7 +704,7 @@ }, "; }" ], - "path": "x-pack/plugins/observability_shared/public/services/get_context_menu_items_from_actions.ts", + "path": "x-pack/plugins/observability_solution/observability_shared/public/services/get_context_menu_items_from_actions.ts", "deprecated": false, "trackAdoption": false }, @@ -770,7 +724,7 @@ "text": "ObservabilityTriggerId" } ], - "path": "x-pack/plugins/observability_shared/public/services/get_context_menu_items_from_actions.ts", + "path": "x-pack/plugins/observability_solution/observability_shared/public/services/get_context_menu_items_from_actions.ts", "deprecated": false, "trackAdoption": false }, @@ -781,10 +735,8 @@ "tags": [], "label": "context", "description": [], - "signature": [ - "{ [x: string]: any; }" - ], - "path": "x-pack/plugins/observability_shared/public/services/get_context_menu_items_from_actions.ts", + "signature": ["{ [x: string]: any; }"], + "path": "x-pack/plugins/observability_solution/observability_shared/public/services/get_context_menu_items_from_actions.ts", "deprecated": false, "trackAdoption": false } @@ -801,12 +753,8 @@ "tags": [], "label": "HeaderMenuPortal", "description": [], - "signature": [ - "(props: ", - "HeaderMenuPortalProps", - ") => JSX.Element" - ], - "path": "x-pack/plugins/observability_shared/public/components/header_menu/index.tsx", + "signature": ["(props: ", "HeaderMenuPortalProps", ") => JSX.Element"], + "path": "x-pack/plugins/observability_solution/observability_shared/public/components/header_menu/index.tsx", "deprecated": false, "trackAdoption": false, "children": [ @@ -817,10 +765,8 @@ "tags": [], "label": "props", "description": [], - "signature": [ - "HeaderMenuPortalProps" - ], - "path": "x-pack/plugins/observability_shared/public/components/header_menu/index.tsx", + "signature": ["HeaderMenuPortalProps"], + "path": "x-pack/plugins/observability_solution/observability_shared/public/components/header_menu/index.tsx", "deprecated": false, "trackAdoption": false, "isRequired": true @@ -836,10 +782,8 @@ "tags": [], "label": "InspectorContextProvider", "description": [], - "signature": [ - "({ children }: { children: React.ReactNode; }) => JSX.Element" - ], - "path": "x-pack/plugins/observability_shared/public/contexts/inspector/inspector_context.tsx", + "signature": ["({ children }: { children: React.ReactNode; }) => JSX.Element"], + "path": "x-pack/plugins/observability_solution/observability_shared/public/contexts/inspector/inspector_context.tsx", "deprecated": false, "trackAdoption": false, "children": [ @@ -850,7 +794,7 @@ "tags": [], "label": "{ children }", "description": [], - "path": "x-pack/plugins/observability_shared/public/contexts/inspector/inspector_context.tsx", + "path": "x-pack/plugins/observability_solution/observability_shared/public/contexts/inspector/inspector_context.tsx", "deprecated": false, "trackAdoption": false, "children": [ @@ -864,7 +808,7 @@ "signature": [ "boolean | React.ReactChild | React.ReactFragment | React.ReactPortal | null | undefined" ], - "path": "x-pack/plugins/observability_shared/public/contexts/inspector/inspector_context.tsx", + "path": "x-pack/plugins/observability_solution/observability_shared/public/contexts/inspector/inspector_context.tsx", "deprecated": false, "trackAdoption": false } @@ -881,12 +825,8 @@ "tags": [], "label": "LoadWhenInView", "description": [], - "signature": [ - "(props: ", - "LoadWhenInViewProps", - ") => JSX.Element" - ], - "path": "x-pack/plugins/observability_shared/public/components/load_when_in_view/get_load_when_in_view_lazy.tsx", + "signature": ["(props: ", "LoadWhenInViewProps", ") => JSX.Element"], + "path": "x-pack/plugins/observability_solution/observability_shared/public/components/load_when_in_view/get_load_when_in_view_lazy.tsx", "deprecated": false, "trackAdoption": false, "children": [ @@ -897,10 +837,8 @@ "tags": [], "label": "props", "description": [], - "signature": [ - "LoadWhenInViewProps" - ], - "path": "x-pack/plugins/observability_shared/public/components/load_when_in_view/get_load_when_in_view_lazy.tsx", + "signature": ["LoadWhenInViewProps"], + "path": "x-pack/plugins/observability_solution/observability_shared/public/components/load_when_in_view/get_load_when_in_view_lazy.tsx", "deprecated": false, "trackAdoption": false, "isRequired": true @@ -916,10 +854,8 @@ "tags": [], "label": "NavigationWarningPromptProvider", "description": [], - "signature": [ - "({ children }: { children?: React.ReactNode; }) => JSX.Element" - ], - "path": "x-pack/plugins/observability_shared/public/components/navigation_warning_prompt/context.tsx", + "signature": ["({ children }: { children?: React.ReactNode; }) => JSX.Element"], + "path": "x-pack/plugins/observability_solution/observability_shared/public/components/navigation_warning_prompt/context.tsx", "deprecated": false, "trackAdoption": false, "children": [ @@ -930,10 +866,8 @@ "tags": [], "label": "{ children }", "description": [], - "signature": [ - "{ children?: React.ReactNode; }" - ], - "path": "x-pack/plugins/observability_shared/public/components/navigation_warning_prompt/context.tsx", + "signature": ["{ children?: React.ReactNode; }"], + "path": "x-pack/plugins/observability_solution/observability_shared/public/components/navigation_warning_prompt/context.tsx", "deprecated": false, "trackAdoption": false, "isRequired": true @@ -952,7 +886,7 @@ "signature": [ "() => { all: boolean; create: boolean; read: boolean; update: boolean; delete: boolean; push: boolean; connectors: boolean; settings: boolean; }" ], - "path": "x-pack/plugins/observability_shared/public/utils/cases_permissions.ts", + "path": "x-pack/plugins/observability_solution/observability_shared/public/utils/cases_permissions.ts", "deprecated": false, "trackAdoption": false, "children": [], @@ -966,10 +900,8 @@ "tags": [], "label": "ProfilingEmptyState", "description": [], - "signature": [ - "() => JSX.Element" - ], - "path": "x-pack/plugins/observability_shared/public/components/profiling/profiling_empty_state.tsx", + "signature": ["() => JSX.Element"], + "path": "x-pack/plugins/observability_solution/observability_shared/public/components/profiling/profiling_empty_state.tsx", "deprecated": false, "trackAdoption": false, "children": [], @@ -983,10 +915,8 @@ "tags": [], "label": "Prompt", "description": [], - "signature": [ - "({ prompt }: React.PropsWithChildren) => null" - ], - "path": "x-pack/plugins/observability_shared/public/components/navigation_warning_prompt/prompt.tsx", + "signature": ["({ prompt }: React.PropsWithChildren) => null"], + "path": "x-pack/plugins/observability_solution/observability_shared/public/components/navigation_warning_prompt/prompt.tsx", "deprecated": false, "trackAdoption": false, "children": [ @@ -997,10 +927,8 @@ "tags": [], "label": "{ prompt }", "description": [], - "signature": [ - "React.PropsWithChildren" - ], - "path": "x-pack/plugins/observability_shared/public/components/navigation_warning_prompt/prompt.tsx", + "signature": ["React.PropsWithChildren"], + "path": "x-pack/plugins/observability_solution/observability_shared/public/components/navigation_warning_prompt/prompt.tsx", "deprecated": false, "trackAdoption": false, "isRequired": true @@ -1023,7 +951,7 @@ "NonReactStatics", "" ], - "path": "x-pack/plugins/observability_shared/public/components/section/section.tsx", + "path": "x-pack/plugins/observability_solution/observability_shared/public/components/section/section.tsx", "deprecated": false, "trackAdoption": false, "initialIsOpen": false @@ -1036,35 +964,11 @@ "label": "SectionLink", "description": [], "signature": [ - "({\n showNewBadge,\n ...props\n}: ", - "CommonProps", - " & Omit<(", - "DisambiguateSet", - "<(", - "DisambiguateSet", - ", Omit, \"href\">> & Omit, \"href\">) | (", - "DisambiguateSet", - ", \"href\">, React.ButtonHTMLAttributes> & React.ButtonHTMLAttributes), React.HTMLAttributes> & React.HTMLAttributes) | (", - "DisambiguateSet", - ", (", - "DisambiguateSet", - ", Omit, \"href\">> & Omit, \"href\">) | (", - "DisambiguateSet", - ", \"href\">, React.ButtonHTMLAttributes> & React.ButtonHTMLAttributes)> & ((", - "DisambiguateSet", - ", Omit, \"href\">> & Omit, \"href\">) | (", - "DisambiguateSet", - ", \"href\">, React.ButtonHTMLAttributes> & React.ButtonHTMLAttributes))), \"color\" | \"onClick\" | \"rel\" | \"target\"> & { size?: \"m\" | \"s\" | \"l\" | \"xs\" | undefined; color?: \"text\" | \"subdued\" | \"primary\" | undefined; label: React.ReactNode; isActive?: boolean | undefined; isDisabled?: boolean | undefined; href?: string | undefined; rel?: string | undefined; target?: string | undefined; external?: boolean | undefined; iconType?: ", - "IconType", - " | undefined; iconProps?: Omit<", - "EuiIconProps", - ", \"type\"> | undefined; icon?: React.ReactElement> | undefined; showToolTip?: boolean | undefined; extraAction?: ", - "EuiListGroupItemExtraActionProps", - " | undefined; onClick?: React.MouseEventHandler | undefined; wrapText?: boolean | undefined; buttonRef?: React.Ref | undefined; toolTipText?: string | undefined; toolTipProps?: Partial<", - "EuiToolTipProps", - "> | undefined; } & { showNewBadge?: boolean | undefined; }) => JSX.Element" + "({ ...props }: ", + "EuiListGroupItemProps", + ") => JSX.Element" ], - "path": "x-pack/plugins/observability_shared/public/components/section/section.tsx", + "path": "x-pack/plugins/observability_solution/observability_shared/public/components/section/section.tsx", "deprecated": false, "trackAdoption": false, "children": [ @@ -1073,37 +977,12 @@ "id": "def-public.SectionLink.$1", "type": "CompoundType", "tags": [], - "label": "{\n showNewBadge,\n ...props\n}", + "label": "{ ...props }", "description": [], "signature": [ - "CommonProps", - " & Omit<(", - "DisambiguateSet", - "<(", - "DisambiguateSet", - ", Omit, \"href\">> & Omit, \"href\">) | (", - "DisambiguateSet", - ", \"href\">, React.ButtonHTMLAttributes> & React.ButtonHTMLAttributes), React.HTMLAttributes> & React.HTMLAttributes) | (", - "DisambiguateSet", - ", (", - "DisambiguateSet", - ", Omit, \"href\">> & Omit, \"href\">) | (", - "DisambiguateSet", - ", \"href\">, React.ButtonHTMLAttributes> & React.ButtonHTMLAttributes)> & ((", - "DisambiguateSet", - ", Omit, \"href\">> & Omit, \"href\">) | (", - "DisambiguateSet", - ", \"href\">, React.ButtonHTMLAttributes> & React.ButtonHTMLAttributes))), \"color\" | \"onClick\" | \"rel\" | \"target\"> & { size?: \"m\" | \"s\" | \"l\" | \"xs\" | undefined; color?: \"text\" | \"subdued\" | \"primary\" | undefined; label: React.ReactNode; isActive?: boolean | undefined; isDisabled?: boolean | undefined; href?: string | undefined; rel?: string | undefined; target?: string | undefined; external?: boolean | undefined; iconType?: ", - "IconType", - " | undefined; iconProps?: Omit<", - "EuiIconProps", - ", \"type\"> | undefined; icon?: React.ReactElement> | undefined; showToolTip?: boolean | undefined; extraAction?: ", - "EuiListGroupItemExtraActionProps", - " | undefined; onClick?: React.MouseEventHandler | undefined; wrapText?: boolean | undefined; buttonRef?: React.Ref | undefined; toolTipText?: string | undefined; toolTipProps?: Partial<", - "EuiToolTipProps", - "> | undefined; } & { showNewBadge?: boolean | undefined; }" + "EuiListGroupItemProps" ], - "path": "x-pack/plugins/observability_shared/public/components/section/section.tsx", + "path": "x-pack/plugins/observability_solution/observability_shared/public/components/section/section.tsx", "deprecated": false, "trackAdoption": false, "isRequired": true @@ -1128,7 +1007,7 @@ "Property", ".MaxWidth | undefined; showToolTips?: boolean | undefined; wrapText?: boolean | undefined; ariaLabelledby?: string | undefined; }) => JSX.Element" ], - "path": "x-pack/plugins/observability_shared/public/components/section/section.tsx", + "path": "x-pack/plugins/observability_solution/observability_shared/public/components/section/section.tsx", "deprecated": false, "trackAdoption": false, "children": [ @@ -1148,7 +1027,7 @@ "Property", ".MaxWidth | undefined; showToolTips?: boolean | undefined; wrapText?: boolean | undefined; ariaLabelledby?: string | undefined; }" ], - "path": "x-pack/plugins/observability_shared/public/components/section/section.tsx", + "path": "x-pack/plugins/observability_solution/observability_shared/public/components/section/section.tsx", "deprecated": false, "trackAdoption": false, "isRequired": true @@ -1164,10 +1043,8 @@ "tags": [], "label": "SectionSpacer", "description": [], - "signature": [ - "() => JSX.Element" - ], - "path": "x-pack/plugins/observability_shared/public/components/section/section.tsx", + "signature": ["() => JSX.Element"], + "path": "x-pack/plugins/observability_solution/observability_shared/public/components/section/section.tsx", "deprecated": false, "trackAdoption": false, "children": [], @@ -1181,10 +1058,8 @@ "tags": [], "label": "SectionSubtitle", "description": [], - "signature": [ - "({ children }: { children?: React.ReactNode; }) => JSX.Element" - ], - "path": "x-pack/plugins/observability_shared/public/components/section/section.tsx", + "signature": ["({ children }: { children?: React.ReactNode; }) => JSX.Element"], + "path": "x-pack/plugins/observability_solution/observability_shared/public/components/section/section.tsx", "deprecated": false, "trackAdoption": false, "children": [ @@ -1195,7 +1070,7 @@ "tags": [], "label": "{ children }", "description": [], - "path": "x-pack/plugins/observability_shared/public/components/section/section.tsx", + "path": "x-pack/plugins/observability_solution/observability_shared/public/components/section/section.tsx", "deprecated": false, "trackAdoption": false, "children": [ @@ -1209,7 +1084,7 @@ "signature": [ "boolean | React.ReactChild | React.ReactFragment | React.ReactPortal | null | undefined" ], - "path": "x-pack/plugins/observability_shared/public/components/section/section.tsx", + "path": "x-pack/plugins/observability_solution/observability_shared/public/components/section/section.tsx", "deprecated": false, "trackAdoption": false } @@ -1226,10 +1101,8 @@ "tags": [], "label": "SectionTitle", "description": [], - "signature": [ - "({ children }: { children?: React.ReactNode; }) => JSX.Element" - ], - "path": "x-pack/plugins/observability_shared/public/components/section/section.tsx", + "signature": ["({ children }: { children?: React.ReactNode; }) => JSX.Element"], + "path": "x-pack/plugins/observability_solution/observability_shared/public/components/section/section.tsx", "deprecated": false, "trackAdoption": false, "children": [ @@ -1240,7 +1113,7 @@ "tags": [], "label": "{ children }", "description": [], - "path": "x-pack/plugins/observability_shared/public/components/section/section.tsx", + "path": "x-pack/plugins/observability_solution/observability_shared/public/components/section/section.tsx", "deprecated": false, "trackAdoption": false, "children": [ @@ -1254,7 +1127,7 @@ "signature": [ "boolean | React.ReactChild | React.ReactFragment | React.ReactPortal | null | undefined" ], - "path": "x-pack/plugins/observability_shared/public/components/section/section.tsx", + "path": "x-pack/plugins/observability_solution/observability_shared/public/components/section/section.tsx", "deprecated": false, "trackAdoption": false } @@ -1274,7 +1147,7 @@ "signature": [ "(e: React.MouseEvent | React.MouseEvent) => boolean" ], - "path": "x-pack/plugins/observability_shared/public/hooks/use_link_props.ts", + "path": "x-pack/plugins/observability_solution/observability_shared/public/hooks/use_link_props.ts", "deprecated": false, "trackAdoption": false, "children": [ @@ -1288,7 +1161,7 @@ "signature": [ "React.MouseEvent | React.MouseEvent" ], - "path": "x-pack/plugins/observability_shared/public/hooks/use_link_props.ts", + "path": "x-pack/plugins/observability_solution/observability_shared/public/hooks/use_link_props.ts", "deprecated": false, "trackAdoption": false, "isRequired": true @@ -1315,7 +1188,7 @@ }, ") => JSX.Element" ], - "path": "x-pack/plugins/observability_shared/public/components/tags_list/tags_list_lazy.tsx", + "path": "x-pack/plugins/observability_solution/observability_shared/public/components/tags_list/tags_list_lazy.tsx", "deprecated": false, "trackAdoption": false, "children": [ @@ -1335,7 +1208,7 @@ "text": "TagsListProps" } ], - "path": "x-pack/plugins/observability_shared/public/components/tags_list/tags_list_lazy.tsx", + "path": "x-pack/plugins/observability_solution/observability_shared/public/components/tags_list/tags_list_lazy.tsx", "deprecated": false, "trackAdoption": false, "isRequired": true @@ -1351,10 +1224,8 @@ "tags": [], "label": "TechnicalPreviewBadge", "description": [], - "signature": [ - "({ icon = 'beaker', size, style }: Props) => JSX.Element" - ], - "path": "x-pack/plugins/observability_shared/public/components/technical_preview_badge/technical_preview_badge.tsx", + "signature": ["({ icon = 'beaker', size, style }: Props) => JSX.Element"], + "path": "x-pack/plugins/observability_solution/observability_shared/public/components/technical_preview_badge/technical_preview_badge.tsx", "deprecated": false, "trackAdoption": false, "children": [ @@ -1365,10 +1236,8 @@ "tags": [], "label": "{ icon = 'beaker', size, style }", "description": [], - "signature": [ - "Props" - ], - "path": "x-pack/plugins/observability_shared/public/components/technical_preview_badge/technical_preview_badge.tsx", + "signature": ["Props"], + "path": "x-pack/plugins/observability_solution/observability_shared/public/components/technical_preview_badge/technical_preview_badge.tsx", "deprecated": false, "trackAdoption": false, "isRequired": true @@ -1403,7 +1272,7 @@ }, " | undefined) => void" ], - "path": "x-pack/plugins/observability_shared/public/hooks/use_breadcrumbs.ts", + "path": "x-pack/plugins/observability_solution/observability_shared/public/hooks/use_breadcrumbs.ts", "deprecated": false, "trackAdoption": false, "children": [ @@ -1424,7 +1293,7 @@ }, "[]" ], - "path": "x-pack/plugins/observability_shared/public/hooks/use_breadcrumbs.ts", + "path": "x-pack/plugins/observability_solution/observability_shared/public/hooks/use_breadcrumbs.ts", "deprecated": false, "trackAdoption": false, "isRequired": true @@ -1436,7 +1305,7 @@ "tags": [], "label": "app", "description": [], - "path": "x-pack/plugins/observability_shared/public/hooks/use_breadcrumbs.ts", + "path": "x-pack/plugins/observability_solution/observability_shared/public/hooks/use_breadcrumbs.ts", "deprecated": false, "trackAdoption": false, "children": [ @@ -1447,7 +1316,7 @@ "tags": [], "label": "id", "description": [], - "path": "x-pack/plugins/observability_shared/public/hooks/use_breadcrumbs.ts", + "path": "x-pack/plugins/observability_solution/observability_shared/public/hooks/use_breadcrumbs.ts", "deprecated": false, "trackAdoption": false }, @@ -1458,7 +1327,7 @@ "tags": [], "label": "label", "description": [], - "path": "x-pack/plugins/observability_shared/public/hooks/use_breadcrumbs.ts", + "path": "x-pack/plugins/observability_solution/observability_shared/public/hooks/use_breadcrumbs.ts", "deprecated": false, "trackAdoption": false } @@ -1481,7 +1350,7 @@ }, " | undefined" ], - "path": "x-pack/plugins/observability_shared/public/hooks/use_breadcrumbs.ts", + "path": "x-pack/plugins/observability_solution/observability_shared/public/hooks/use_breadcrumbs.ts", "deprecated": false, "trackAdoption": false, "isRequired": false @@ -1506,7 +1375,7 @@ "Theme", ">[]; }" ], - "path": "x-pack/plugins/observability_shared/public/hooks/use_chart_theme.tsx", + "path": "x-pack/plugins/observability_solution/observability_shared/public/hooks/use_chart_theme.tsx", "deprecated": false, "trackAdoption": false, "children": [], @@ -1573,7 +1442,7 @@ }, ">; saveAll: () => Promise; isSaving: boolean; cleanUnsavedChanges: () => void; }" ], - "path": "x-pack/plugins/observability_shared/public/hooks/use_editable_settings.tsx", + "path": "x-pack/plugins/observability_solution/observability_shared/public/hooks/use_editable_settings.tsx", "deprecated": false, "trackAdoption": false, "children": [ @@ -1584,10 +1453,8 @@ "tags": [], "label": "app", "description": [], - "signature": [ - "ObservabilityApp" - ], - "path": "x-pack/plugins/observability_shared/public/hooks/use_editable_settings.tsx", + "signature": ["ObservabilityApp"], + "path": "x-pack/plugins/observability_solution/observability_shared/public/hooks/use_editable_settings.tsx", "deprecated": false, "trackAdoption": false, "isRequired": true @@ -1599,10 +1466,8 @@ "tags": [], "label": "settingsKeys", "description": [], - "signature": [ - "string[]" - ], - "path": "x-pack/plugins/observability_shared/public/hooks/use_editable_settings.tsx", + "signature": ["string[]"], + "path": "x-pack/plugins/observability_solution/observability_shared/public/hooks/use_editable_settings.tsx", "deprecated": false, "trackAdoption": false, "isRequired": true @@ -1639,7 +1504,7 @@ }, "; loading: boolean; }" ], - "path": "x-pack/plugins/observability_shared/public/hooks/use_es_search.ts", + "path": "x-pack/plugins/observability_solution/observability_shared/public/hooks/use_es_search.ts", "deprecated": false, "trackAdoption": false, "children": [ @@ -1650,10 +1515,8 @@ "tags": [], "label": "params", "description": [], - "signature": [ - "TParams" - ], - "path": "x-pack/plugins/observability_shared/public/hooks/use_es_search.ts", + "signature": ["TParams"], + "path": "x-pack/plugins/observability_solution/observability_shared/public/hooks/use_es_search.ts", "deprecated": false, "trackAdoption": false, "isRequired": true @@ -1665,10 +1528,8 @@ "tags": [], "label": "fnDeps", "description": [], - "signature": [ - "any[]" - ], - "path": "x-pack/plugins/observability_shared/public/hooks/use_es_search.ts", + "signature": ["any[]"], + "path": "x-pack/plugins/observability_solution/observability_shared/public/hooks/use_es_search.ts", "deprecated": false, "trackAdoption": false, "isRequired": true @@ -1680,7 +1541,7 @@ "tags": [], "label": "options", "description": [], - "path": "x-pack/plugins/observability_shared/public/hooks/use_es_search.ts", + "path": "x-pack/plugins/observability_solution/observability_shared/public/hooks/use_es_search.ts", "deprecated": false, "trackAdoption": false, "children": [ @@ -1701,7 +1562,7 @@ }, " | undefined" ], - "path": "x-pack/plugins/observability_shared/public/hooks/use_es_search.ts", + "path": "x-pack/plugins/observability_solution/observability_shared/public/hooks/use_es_search.ts", "deprecated": false, "trackAdoption": false }, @@ -1712,7 +1573,7 @@ "tags": [], "label": "name", "description": [], - "path": "x-pack/plugins/observability_shared/public/hooks/use_es_search.ts", + "path": "x-pack/plugins/observability_solution/observability_shared/public/hooks/use_es_search.ts", "deprecated": false, "trackAdoption": false } @@ -1740,7 +1601,7 @@ }, "> & { refetch: () => void; }" ], - "path": "x-pack/plugins/observability_shared/public/hooks/use_fetcher.tsx", + "path": "x-pack/plugins/observability_solution/observability_shared/public/hooks/use_fetcher.tsx", "deprecated": false, "trackAdoption": false, "children": [ @@ -1751,10 +1612,8 @@ "tags": [], "label": "fn", "description": [], - "signature": [ - "({}: { signal: AbortSignal; }) => TReturn" - ], - "path": "x-pack/plugins/observability_shared/public/hooks/use_fetcher.tsx", + "signature": ["({}: { signal: AbortSignal; }) => TReturn"], + "path": "x-pack/plugins/observability_solution/observability_shared/public/hooks/use_fetcher.tsx", "deprecated": false, "trackAdoption": false, "isRequired": true @@ -1766,10 +1625,8 @@ "tags": [], "label": "fnDeps", "description": [], - "signature": [ - "any[]" - ], - "path": "x-pack/plugins/observability_shared/public/hooks/use_fetcher.tsx", + "signature": ["any[]"], + "path": "x-pack/plugins/observability_solution/observability_shared/public/hooks/use_fetcher.tsx", "deprecated": false, "trackAdoption": false, "isRequired": true @@ -1781,7 +1638,7 @@ "tags": [], "label": "options", "description": [], - "path": "x-pack/plugins/observability_shared/public/hooks/use_fetcher.tsx", + "path": "x-pack/plugins/observability_solution/observability_shared/public/hooks/use_fetcher.tsx", "deprecated": false, "trackAdoption": false, "children": [ @@ -1792,10 +1649,8 @@ "tags": [], "label": "preservePreviousData", "description": [], - "signature": [ - "boolean | undefined" - ], - "path": "x-pack/plugins/observability_shared/public/hooks/use_fetcher.tsx", + "signature": ["boolean | undefined"], + "path": "x-pack/plugins/observability_solution/observability_shared/public/hooks/use_fetcher.tsx", "deprecated": false, "trackAdoption": false } @@ -1812,11 +1667,8 @@ "tags": [], "label": "useInspectorContext", "description": [], - "signature": [ - "() => ", - "InspectorContextValue" - ], - "path": "x-pack/plugins/observability_shared/public/contexts/inspector/use_inspector_context.tsx", + "signature": ["() => ", "InspectorContextValue"], + "path": "x-pack/plugins/observability_solution/observability_shared/public/contexts/inspector/use_inspector_context.tsx", "deprecated": false, "trackAdoption": false, "children": [], @@ -1841,7 +1693,7 @@ }, " | undefined; loading: boolean | undefined; error: Error | undefined; }" ], - "path": "x-pack/plugins/observability_shared/public/hooks/use_kibana_space.tsx", + "path": "x-pack/plugins/observability_solution/observability_shared/public/hooks/use_kibana_space.tsx", "deprecated": false, "trackAdoption": false, "children": [], @@ -1875,7 +1727,7 @@ ") => ", "LinkProps" ], - "path": "x-pack/plugins/observability_shared/public/hooks/use_link_props.ts", + "path": "x-pack/plugins/observability_solution/observability_shared/public/hooks/use_link_props.ts", "deprecated": false, "trackAdoption": false, "children": [ @@ -1895,7 +1747,7 @@ "text": "LinkDescriptor" } ], - "path": "x-pack/plugins/observability_shared/public/hooks/use_link_props.ts", + "path": "x-pack/plugins/observability_solution/observability_shared/public/hooks/use_link_props.ts", "deprecated": false, "trackAdoption": false, "isRequired": true @@ -1916,7 +1768,7 @@ "text": "Options" } ], - "path": "x-pack/plugins/observability_shared/public/hooks/use_link_props.ts", + "path": "x-pack/plugins/observability_solution/observability_shared/public/hooks/use_link_props.ts", "deprecated": false, "trackAdoption": false, "isRequired": true @@ -1932,11 +1784,8 @@ "tags": [], "label": "useObservabilityTourContext", "description": [], - "signature": [ - "() => ", - "ObservabilityTourContextValue" - ], - "path": "x-pack/plugins/observability_shared/public/components/tour/tour.tsx", + "signature": ["() => ", "ObservabilityTourContextValue"], + "path": "x-pack/plugins/observability_solution/observability_shared/public/components/tour/tour.tsx", "deprecated": false, "trackAdoption": false, "children": [], @@ -1950,10 +1799,8 @@ "tags": [], "label": "useQuickTimeRanges", "description": [], - "signature": [ - "() => { start: string; end: string; label: string; }[]" - ], - "path": "x-pack/plugins/observability_shared/public/hooks/use_quick_time_ranges.tsx", + "signature": ["() => { start: string; end: string; label: string; }[]"], + "path": "x-pack/plugins/observability_solution/observability_shared/public/hooks/use_quick_time_ranges.tsx", "deprecated": false, "trackAdoption": false, "children": [], @@ -1977,7 +1824,7 @@ "text": "EuiTheme" } ], - "path": "x-pack/plugins/observability_shared/public/hooks/use_theme.tsx", + "path": "x-pack/plugins/observability_solution/observability_shared/public/hooks/use_theme.tsx", "deprecated": false, "trackAdoption": false, "children": [], @@ -1991,10 +1838,8 @@ "tags": [], "label": "useTimeZone", "description": [], - "signature": [ - "() => string" - ], - "path": "x-pack/plugins/observability_shared/public/hooks/use_time_zone.ts", + "signature": ["() => string"], + "path": "x-pack/plugins/observability_solution/observability_shared/public/hooks/use_time_zone.ts", "deprecated": false, "trackAdoption": false, "children": [], @@ -2013,7 +1858,7 @@ "TrackMetricOptions", ", effectDependencies: EffectDeps) => void" ], - "path": "x-pack/plugins/observability_shared/public/hooks/use_track_metric.tsx", + "path": "x-pack/plugins/observability_solution/observability_shared/public/hooks/use_track_metric.tsx", "deprecated": false, "trackAdoption": false, "children": [ @@ -2024,10 +1869,8 @@ "tags": [], "label": "{ app, metric, metricType = METRIC_TYPE.COUNT, delay = 0 }", "description": [], - "signature": [ - "TrackMetricOptions" - ], - "path": "x-pack/plugins/observability_shared/public/hooks/use_track_metric.tsx", + "signature": ["TrackMetricOptions"], + "path": "x-pack/plugins/observability_solution/observability_shared/public/hooks/use_track_metric.tsx", "deprecated": false, "trackAdoption": false, "isRequired": true @@ -2039,10 +1882,8 @@ "tags": [], "label": "effectDependencies", "description": [], - "signature": [ - "EffectDeps" - ], - "path": "x-pack/plugins/observability_shared/public/hooks/use_track_metric.tsx", + "signature": ["EffectDeps"], + "path": "x-pack/plugins/observability_solution/observability_shared/public/hooks/use_track_metric.tsx", "deprecated": false, "trackAdoption": false, "isRequired": true @@ -2061,7 +1902,7 @@ "signature": [ "({ path, ...rest }: TrackPageviewProps, effectDependencies: EffectDeps) => void" ], - "path": "x-pack/plugins/observability_shared/public/hooks/use_track_metric.tsx", + "path": "x-pack/plugins/observability_solution/observability_shared/public/hooks/use_track_metric.tsx", "deprecated": false, "trackAdoption": false, "children": [ @@ -2072,10 +1913,8 @@ "tags": [], "label": "{ path, ...rest }", "description": [], - "signature": [ - "TrackPageviewProps" - ], - "path": "x-pack/plugins/observability_shared/public/hooks/use_track_metric.tsx", + "signature": ["TrackPageviewProps"], + "path": "x-pack/plugins/observability_solution/observability_shared/public/hooks/use_track_metric.tsx", "deprecated": false, "trackAdoption": false, "isRequired": true @@ -2087,10 +1926,8 @@ "tags": [], "label": "effectDependencies", "description": [], - "signature": [ - "EffectDeps" - ], - "path": "x-pack/plugins/observability_shared/public/hooks/use_track_metric.tsx", + "signature": ["EffectDeps"], + "path": "x-pack/plugins/observability_solution/observability_shared/public/hooks/use_track_metric.tsx", "deprecated": false, "trackAdoption": false, "isRequired": true @@ -2118,7 +1955,7 @@ "text": "TrackEvent" } ], - "path": "x-pack/plugins/observability_shared/public/hooks/use_track_metric.tsx", + "path": "x-pack/plugins/observability_solution/observability_shared/public/hooks/use_track_metric.tsx", "deprecated": false, "trackAdoption": false, "children": [ @@ -2129,7 +1966,7 @@ "tags": [], "label": "{\n app: defaultApp,\n}", "description": [], - "path": "x-pack/plugins/observability_shared/public/hooks/use_track_metric.tsx", + "path": "x-pack/plugins/observability_solution/observability_shared/public/hooks/use_track_metric.tsx", "deprecated": false, "trackAdoption": false, "children": [ @@ -2140,11 +1977,8 @@ "tags": [], "label": "app", "description": [], - "signature": [ - "ObservabilityApp", - " | undefined" - ], - "path": "x-pack/plugins/observability_shared/public/hooks/use_track_metric.tsx", + "signature": ["ObservabilityApp", " | undefined"], + "path": "x-pack/plugins/observability_solution/observability_shared/public/hooks/use_track_metric.tsx", "deprecated": false, "trackAdoption": false } @@ -2168,7 +2002,7 @@ "ListItem", "[]; loading?: boolean | undefined; }" ], - "path": "x-pack/plugins/observability_shared/public/hooks/use_values_list.ts", + "path": "x-pack/plugins/observability_solution/observability_shared/public/hooks/use_values_list.ts", "deprecated": false, "trackAdoption": false, "children": [ @@ -2179,10 +2013,8 @@ "tags": [], "label": "{\n sourceField,\n dataViewTitle,\n query = '',\n filters,\n time,\n label,\n keepHistory,\n cardinalityField,\n}", "description": [], - "signature": [ - "Props" - ], - "path": "x-pack/plugins/observability_shared/public/hooks/use_values_list.ts", + "signature": ["Props"], + "path": "x-pack/plugins/observability_solution/observability_shared/public/hooks/use_values_list.ts", "deprecated": false, "trackAdoption": false, "isRequired": true @@ -2200,7 +2032,7 @@ "tags": [], "label": "ApmIndicesConfig", "description": [], - "path": "x-pack/plugins/observability_shared/public/types.ts", + "path": "x-pack/plugins/observability_solution/observability_shared/public/types.ts", "deprecated": false, "trackAdoption": false, "children": [ @@ -2211,7 +2043,7 @@ "tags": [], "label": "error", "description": [], - "path": "x-pack/plugins/observability_shared/public/types.ts", + "path": "x-pack/plugins/observability_solution/observability_shared/public/types.ts", "deprecated": false, "trackAdoption": false }, @@ -2222,7 +2054,7 @@ "tags": [], "label": "onboarding", "description": [], - "path": "x-pack/plugins/observability_shared/public/types.ts", + "path": "x-pack/plugins/observability_solution/observability_shared/public/types.ts", "deprecated": false, "trackAdoption": false }, @@ -2233,7 +2065,7 @@ "tags": [], "label": "span", "description": [], - "path": "x-pack/plugins/observability_shared/public/types.ts", + "path": "x-pack/plugins/observability_solution/observability_shared/public/types.ts", "deprecated": false, "trackAdoption": false }, @@ -2244,7 +2076,7 @@ "tags": [], "label": "transaction", "description": [], - "path": "x-pack/plugins/observability_shared/public/types.ts", + "path": "x-pack/plugins/observability_solution/observability_shared/public/types.ts", "deprecated": false, "trackAdoption": false }, @@ -2255,7 +2087,7 @@ "tags": [], "label": "metric", "description": [], - "path": "x-pack/plugins/observability_shared/public/types.ts", + "path": "x-pack/plugins/observability_solution/observability_shared/public/types.ts", "deprecated": false, "trackAdoption": false } @@ -2269,7 +2101,7 @@ "tags": [], "label": "EmbeddableProfilingSearchBarProps", "description": [], - "path": "x-pack/plugins/observability_shared/public/components/profiling/embeddables/embeddable_profiling_search_bar.tsx", + "path": "x-pack/plugins/observability_solution/observability_shared/public/components/profiling/embeddables/embeddable_profiling_search_bar.tsx", "deprecated": false, "trackAdoption": false, "children": [ @@ -2280,7 +2112,7 @@ "tags": [], "label": "kuery", "description": [], - "path": "x-pack/plugins/observability_shared/public/components/profiling/embeddables/embeddable_profiling_search_bar.tsx", + "path": "x-pack/plugins/observability_solution/observability_shared/public/components/profiling/embeddables/embeddable_profiling_search_bar.tsx", "deprecated": false, "trackAdoption": false }, @@ -2291,10 +2123,8 @@ "tags": [], "label": "showDatePicker", "description": [], - "signature": [ - "boolean | undefined" - ], - "path": "x-pack/plugins/observability_shared/public/components/profiling/embeddables/embeddable_profiling_search_bar.tsx", + "signature": ["boolean | undefined"], + "path": "x-pack/plugins/observability_solution/observability_shared/public/components/profiling/embeddables/embeddable_profiling_search_bar.tsx", "deprecated": false, "trackAdoption": false }, @@ -2308,7 +2138,7 @@ "signature": [ "(params: { dateRange: { from: string; to: string; mode?: \"absolute\" | \"relative\" | undefined; }; query: string; }) => void" ], - "path": "x-pack/plugins/observability_shared/public/components/profiling/embeddables/embeddable_profiling_search_bar.tsx", + "path": "x-pack/plugins/observability_solution/observability_shared/public/components/profiling/embeddables/embeddable_profiling_search_bar.tsx", "deprecated": false, "trackAdoption": false, "children": [ @@ -2319,7 +2149,7 @@ "tags": [], "label": "params", "description": [], - "path": "x-pack/plugins/observability_shared/public/components/profiling/embeddables/embeddable_profiling_search_bar.tsx", + "path": "x-pack/plugins/observability_solution/observability_shared/public/components/profiling/embeddables/embeddable_profiling_search_bar.tsx", "deprecated": false, "trackAdoption": false, "children": [ @@ -2333,7 +2163,7 @@ "signature": [ "{ from: string; to: string; mode?: \"absolute\" | \"relative\" | undefined; }" ], - "path": "x-pack/plugins/observability_shared/public/components/profiling/embeddables/embeddable_profiling_search_bar.tsx", + "path": "x-pack/plugins/observability_solution/observability_shared/public/components/profiling/embeddables/embeddable_profiling_search_bar.tsx", "deprecated": false, "trackAdoption": false }, @@ -2344,7 +2174,7 @@ "tags": [], "label": "query", "description": [], - "path": "x-pack/plugins/observability_shared/public/components/profiling/embeddables/embeddable_profiling_search_bar.tsx", + "path": "x-pack/plugins/observability_solution/observability_shared/public/components/profiling/embeddables/embeddable_profiling_search_bar.tsx", "deprecated": false, "trackAdoption": false } @@ -2360,10 +2190,8 @@ "tags": [], "label": "onRefresh", "description": [], - "signature": [ - "() => void" - ], - "path": "x-pack/plugins/observability_shared/public/components/profiling/embeddables/embeddable_profiling_search_bar.tsx", + "signature": ["() => void"], + "path": "x-pack/plugins/observability_solution/observability_shared/public/components/profiling/embeddables/embeddable_profiling_search_bar.tsx", "deprecated": false, "trackAdoption": false, "children": [], @@ -2376,7 +2204,7 @@ "tags": [], "label": "rangeFrom", "description": [], - "path": "x-pack/plugins/observability_shared/public/components/profiling/embeddables/embeddable_profiling_search_bar.tsx", + "path": "x-pack/plugins/observability_solution/observability_shared/public/components/profiling/embeddables/embeddable_profiling_search_bar.tsx", "deprecated": false, "trackAdoption": false }, @@ -2387,7 +2215,7 @@ "tags": [], "label": "rangeTo", "description": [], - "path": "x-pack/plugins/observability_shared/public/components/profiling/embeddables/embeddable_profiling_search_bar.tsx", + "path": "x-pack/plugins/observability_solution/observability_shared/public/components/profiling/embeddables/embeddable_profiling_search_bar.tsx", "deprecated": false, "trackAdoption": false } @@ -2411,7 +2239,7 @@ }, "" ], - "path": "x-pack/plugins/observability_shared/public/hooks/use_fetcher.tsx", + "path": "x-pack/plugins/observability_solution/observability_shared/public/hooks/use_fetcher.tsx", "deprecated": false, "trackAdoption": false, "children": [ @@ -2422,10 +2250,8 @@ "tags": [], "label": "data", "description": [], - "signature": [ - "Data | undefined" - ], - "path": "x-pack/plugins/observability_shared/public/hooks/use_fetcher.tsx", + "signature": ["Data | undefined"], + "path": "x-pack/plugins/observability_solution/observability_shared/public/hooks/use_fetcher.tsx", "deprecated": false, "trackAdoption": false }, @@ -2445,7 +2271,7 @@ "text": "FETCH_STATUS" } ], - "path": "x-pack/plugins/observability_shared/public/hooks/use_fetcher.tsx", + "path": "x-pack/plugins/observability_solution/observability_shared/public/hooks/use_fetcher.tsx", "deprecated": false, "trackAdoption": false }, @@ -2456,10 +2282,8 @@ "tags": [], "label": "error", "description": [], - "signature": [ - "Error | undefined" - ], - "path": "x-pack/plugins/observability_shared/public/hooks/use_fetcher.tsx", + "signature": ["Error | undefined"], + "path": "x-pack/plugins/observability_solution/observability_shared/public/hooks/use_fetcher.tsx", "deprecated": false, "trackAdoption": false }, @@ -2470,10 +2294,8 @@ "tags": [], "label": "loading", "description": [], - "signature": [ - "boolean | undefined" - ], - "path": "x-pack/plugins/observability_shared/public/hooks/use_fetcher.tsx", + "signature": ["boolean | undefined"], + "path": "x-pack/plugins/observability_solution/observability_shared/public/hooks/use_fetcher.tsx", "deprecated": false, "trackAdoption": false } @@ -2487,7 +2309,7 @@ "tags": [], "label": "LinkDescriptor", "description": [], - "path": "x-pack/plugins/observability_shared/public/hooks/use_link_props.ts", + "path": "x-pack/plugins/observability_solution/observability_shared/public/hooks/use_link_props.ts", "deprecated": false, "trackAdoption": false, "children": [ @@ -2498,7 +2320,7 @@ "tags": [], "label": "app", "description": [], - "path": "x-pack/plugins/observability_shared/public/hooks/use_link_props.ts", + "path": "x-pack/plugins/observability_solution/observability_shared/public/hooks/use_link_props.ts", "deprecated": false, "trackAdoption": false }, @@ -2509,10 +2331,8 @@ "tags": [], "label": "pathname", "description": [], - "signature": [ - "string | undefined" - ], - "path": "x-pack/plugins/observability_shared/public/hooks/use_link_props.ts", + "signature": ["string | undefined"], + "path": "x-pack/plugins/observability_solution/observability_shared/public/hooks/use_link_props.ts", "deprecated": false, "trackAdoption": false }, @@ -2523,10 +2343,8 @@ "tags": [], "label": "hash", "description": [], - "signature": [ - "string | undefined" - ], - "path": "x-pack/plugins/observability_shared/public/hooks/use_link_props.ts", + "signature": ["string | undefined"], + "path": "x-pack/plugins/observability_solution/observability_shared/public/hooks/use_link_props.ts", "deprecated": false, "trackAdoption": false }, @@ -2537,10 +2355,8 @@ "tags": [], "label": "search", "description": [], - "signature": [ - "Search | undefined" - ], - "path": "x-pack/plugins/observability_shared/public/hooks/use_link_props.ts", + "signature": ["Search | undefined"], + "path": "x-pack/plugins/observability_solution/observability_shared/public/hooks/use_link_props.ts", "deprecated": false, "trackAdoption": false }, @@ -2551,10 +2367,8 @@ "tags": [], "label": "state", "description": [], - "signature": [ - "unknown" - ], - "path": "x-pack/plugins/observability_shared/public/hooks/use_link_props.ts", + "signature": ["unknown"], + "path": "x-pack/plugins/observability_solution/observability_shared/public/hooks/use_link_props.ts", "deprecated": false, "trackAdoption": false } @@ -2568,7 +2382,7 @@ "tags": [], "label": "NavigationEntry", "description": [], - "path": "x-pack/plugins/observability_shared/public/components/page_template/page_template.tsx", + "path": "x-pack/plugins/observability_solution/observability_shared/public/components/page_template/page_template.tsx", "deprecated": false, "trackAdoption": false, "children": [ @@ -2579,7 +2393,7 @@ "tags": [], "label": "label", "description": [], - "path": "x-pack/plugins/observability_shared/public/components/page_template/page_template.tsx", + "path": "x-pack/plugins/observability_solution/observability_shared/public/components/page_template/page_template.tsx", "deprecated": false, "trackAdoption": false }, @@ -2590,7 +2404,7 @@ "tags": [], "label": "app", "description": [], - "path": "x-pack/plugins/observability_shared/public/components/page_template/page_template.tsx", + "path": "x-pack/plugins/observability_solution/observability_shared/public/components/page_template/page_template.tsx", "deprecated": false, "trackAdoption": false }, @@ -2601,7 +2415,7 @@ "tags": [], "label": "path", "description": [], - "path": "x-pack/plugins/observability_shared/public/components/page_template/page_template.tsx", + "path": "x-pack/plugins/observability_solution/observability_shared/public/components/page_template/page_template.tsx", "deprecated": false, "trackAdoption": false }, @@ -2612,10 +2426,8 @@ "tags": [], "label": "matchFullPath", "description": [], - "signature": [ - "boolean | undefined" - ], - "path": "x-pack/plugins/observability_shared/public/components/page_template/page_template.tsx", + "signature": ["boolean | undefined"], + "path": "x-pack/plugins/observability_solution/observability_shared/public/components/page_template/page_template.tsx", "deprecated": false, "trackAdoption": false }, @@ -2626,10 +2438,8 @@ "tags": [], "label": "ignoreTrailingSlash", "description": [], - "signature": [ - "boolean | undefined" - ], - "path": "x-pack/plugins/observability_shared/public/components/page_template/page_template.tsx", + "signature": ["boolean | undefined"], + "path": "x-pack/plugins/observability_solution/observability_shared/public/components/page_template/page_template.tsx", "deprecated": false, "trackAdoption": false }, @@ -2643,7 +2453,7 @@ "signature": [ "((event: React.MouseEvent) => void) | undefined" ], - "path": "x-pack/plugins/observability_shared/public/components/page_template/page_template.tsx", + "path": "x-pack/plugins/observability_solution/observability_shared/public/components/page_template/page_template.tsx", "deprecated": false, "trackAdoption": false, "children": [ @@ -2654,10 +2464,8 @@ "tags": [], "label": "event", "description": [], - "signature": [ - "React.MouseEvent" - ], - "path": "x-pack/plugins/observability_shared/public/components/page_template/page_template.tsx", + "signature": ["React.MouseEvent"], + "path": "x-pack/plugins/observability_solution/observability_shared/public/components/page_template/page_template.tsx", "deprecated": false, "trackAdoption": false, "isRequired": true @@ -2672,10 +2480,8 @@ "tags": [], "label": "isNewFeature", "description": [], - "signature": [ - "boolean | undefined" - ], - "path": "x-pack/plugins/observability_shared/public/components/page_template/page_template.tsx", + "signature": ["boolean | undefined"], + "path": "x-pack/plugins/observability_solution/observability_shared/public/components/page_template/page_template.tsx", "deprecated": false, "trackAdoption": false }, @@ -2686,10 +2492,8 @@ "tags": [], "label": "isTechnicalPreview", "description": [], - "signature": [ - "boolean | undefined" - ], - "path": "x-pack/plugins/observability_shared/public/components/page_template/page_template.tsx", + "signature": ["boolean | undefined"], + "path": "x-pack/plugins/observability_solution/observability_shared/public/components/page_template/page_template.tsx", "deprecated": false, "trackAdoption": false }, @@ -2700,10 +2504,8 @@ "tags": [], "label": "isBetaFeature", "description": [], - "signature": [ - "boolean | undefined" - ], - "path": "x-pack/plugins/observability_shared/public/components/page_template/page_template.tsx", + "signature": ["boolean | undefined"], + "path": "x-pack/plugins/observability_solution/observability_shared/public/components/page_template/page_template.tsx", "deprecated": false, "trackAdoption": false }, @@ -2714,10 +2516,8 @@ "tags": [], "label": "matchPath", "description": [], - "signature": [ - "((path: string) => boolean) | undefined" - ], - "path": "x-pack/plugins/observability_shared/public/components/page_template/page_template.tsx", + "signature": ["((path: string) => boolean) | undefined"], + "path": "x-pack/plugins/observability_solution/observability_shared/public/components/page_template/page_template.tsx", "deprecated": false, "trackAdoption": false, "children": [ @@ -2728,10 +2528,8 @@ "tags": [], "label": "path", "description": [], - "signature": [ - "string" - ], - "path": "x-pack/plugins/observability_shared/public/components/page_template/page_template.tsx", + "signature": ["string"], + "path": "x-pack/plugins/observability_solution/observability_shared/public/components/page_template/page_template.tsx", "deprecated": false, "trackAdoption": false, "isRequired": true @@ -2749,7 +2547,7 @@ "tags": [], "label": "NavigationSection", "description": [], - "path": "x-pack/plugins/observability_shared/public/components/page_template/page_template.tsx", + "path": "x-pack/plugins/observability_solution/observability_shared/public/components/page_template/page_template.tsx", "deprecated": false, "trackAdoption": false, "children": [ @@ -2760,10 +2558,8 @@ "tags": [], "label": "label", "description": [], - "signature": [ - "string | undefined" - ], - "path": "x-pack/plugins/observability_shared/public/components/page_template/page_template.tsx", + "signature": ["string | undefined"], + "path": "x-pack/plugins/observability_solution/observability_shared/public/components/page_template/page_template.tsx", "deprecated": false, "trackAdoption": false }, @@ -2774,7 +2570,7 @@ "tags": [], "label": "sortKey", "description": [], - "path": "x-pack/plugins/observability_shared/public/components/page_template/page_template.tsx", + "path": "x-pack/plugins/observability_solution/observability_shared/public/components/page_template/page_template.tsx", "deprecated": false, "trackAdoption": false }, @@ -2795,7 +2591,7 @@ }, "[]" ], - "path": "x-pack/plugins/observability_shared/public/components/page_template/page_template.tsx", + "path": "x-pack/plugins/observability_solution/observability_shared/public/components/page_template/page_template.tsx", "deprecated": false, "trackAdoption": false }, @@ -2806,10 +2602,8 @@ "tags": [], "label": "isBetaFeature", "description": [], - "signature": [ - "boolean | undefined" - ], - "path": "x-pack/plugins/observability_shared/public/components/page_template/page_template.tsx", + "signature": ["boolean | undefined"], + "path": "x-pack/plugins/observability_solution/observability_shared/public/components/page_template/page_template.tsx", "deprecated": false, "trackAdoption": false } @@ -2823,7 +2617,7 @@ "tags": [], "label": "Options", "description": [], - "path": "x-pack/plugins/observability_shared/public/hooks/use_link_props.ts", + "path": "x-pack/plugins/observability_solution/observability_shared/public/hooks/use_link_props.ts", "deprecated": false, "trackAdoption": false, "children": [ @@ -2834,10 +2628,8 @@ "tags": [], "label": "hrefOnly", "description": [], - "signature": [ - "boolean | undefined" - ], - "path": "x-pack/plugins/observability_shared/public/hooks/use_link_props.ts", + "signature": ["boolean | undefined"], + "path": "x-pack/plugins/observability_solution/observability_shared/public/hooks/use_link_props.ts", "deprecated": false, "trackAdoption": false } @@ -2851,7 +2643,7 @@ "tags": [], "label": "TagsListProps", "description": [], - "path": "x-pack/plugins/observability_shared/public/components/tags_list/tags_list.tsx", + "path": "x-pack/plugins/observability_solution/observability_shared/public/components/tags_list/tags_list.tsx", "deprecated": false, "trackAdoption": false, "children": [ @@ -2862,10 +2654,8 @@ "tags": [], "label": "onClick", "description": [], - "signature": [ - "((tag: string) => void) | undefined" - ], - "path": "x-pack/plugins/observability_shared/public/components/tags_list/tags_list.tsx", + "signature": ["((tag: string) => void) | undefined"], + "path": "x-pack/plugins/observability_solution/observability_shared/public/components/tags_list/tags_list.tsx", "deprecated": false, "trackAdoption": false, "children": [ @@ -2876,10 +2666,8 @@ "tags": [], "label": "tag", "description": [], - "signature": [ - "string" - ], - "path": "x-pack/plugins/observability_shared/public/components/tags_list/tags_list.tsx", + "signature": ["string"], + "path": "x-pack/plugins/observability_solution/observability_shared/public/components/tags_list/tags_list.tsx", "deprecated": false, "trackAdoption": false, "isRequired": true @@ -2894,10 +2682,8 @@ "tags": [], "label": "tags", "description": [], - "signature": [ - "string[] | undefined" - ], - "path": "x-pack/plugins/observability_shared/public/components/tags_list/tags_list.tsx", + "signature": ["string[] | undefined"], + "path": "x-pack/plugins/observability_solution/observability_shared/public/components/tags_list/tags_list.tsx", "deprecated": false, "trackAdoption": false }, @@ -2908,10 +2694,8 @@ "tags": [], "label": "numberOfTagsToDisplay", "description": [], - "signature": [ - "number | undefined" - ], - "path": "x-pack/plugins/observability_shared/public/components/tags_list/tags_list.tsx", + "signature": ["number | undefined"], + "path": "x-pack/plugins/observability_solution/observability_shared/public/components/tags_list/tags_list.tsx", "deprecated": false, "trackAdoption": false }, @@ -2922,10 +2706,8 @@ "tags": [], "label": "color", "description": [], - "signature": [ - "string | undefined" - ], - "path": "x-pack/plugins/observability_shared/public/components/tags_list/tags_list.tsx", + "signature": ["string | undefined"], + "path": "x-pack/plugins/observability_solution/observability_shared/public/components/tags_list/tags_list.tsx", "deprecated": false, "trackAdoption": false }, @@ -2936,10 +2718,8 @@ "tags": [], "label": "ignoreEmpty", "description": [], - "signature": [ - "boolean | undefined" - ], - "path": "x-pack/plugins/observability_shared/public/components/tags_list/tags_list.tsx", + "signature": ["boolean | undefined"], + "path": "x-pack/plugins/observability_solution/observability_shared/public/components/tags_list/tags_list.tsx", "deprecated": false, "trackAdoption": false } @@ -2953,7 +2733,7 @@ "tags": [], "label": "UXMetrics", "description": [], - "path": "x-pack/plugins/observability_shared/public/types.ts", + "path": "x-pack/plugins/observability_solution/observability_shared/public/types.ts", "deprecated": false, "trackAdoption": false, "children": [ @@ -2964,10 +2744,8 @@ "tags": [], "label": "cls", "description": [], - "signature": [ - "number | null | undefined" - ], - "path": "x-pack/plugins/observability_shared/public/types.ts", + "signature": ["number | null | undefined"], + "path": "x-pack/plugins/observability_solution/observability_shared/public/types.ts", "deprecated": false, "trackAdoption": false }, @@ -2978,10 +2756,8 @@ "tags": [], "label": "lcp", "description": [], - "signature": [ - "number | null | undefined" - ], - "path": "x-pack/plugins/observability_shared/public/types.ts", + "signature": ["number | null | undefined"], + "path": "x-pack/plugins/observability_solution/observability_shared/public/types.ts", "deprecated": false, "trackAdoption": false }, @@ -2992,10 +2768,8 @@ "tags": [], "label": "tbt", "description": [], - "signature": [ - "number | undefined" - ], - "path": "x-pack/plugins/observability_shared/public/types.ts", + "signature": ["number | undefined"], + "path": "x-pack/plugins/observability_solution/observability_shared/public/types.ts", "deprecated": false, "trackAdoption": false }, @@ -3006,10 +2780,8 @@ "tags": [], "label": "fcp", "description": [], - "signature": [ - "number | null | undefined" - ], - "path": "x-pack/plugins/observability_shared/public/types.ts", + "signature": ["number | null | undefined"], + "path": "x-pack/plugins/observability_solution/observability_shared/public/types.ts", "deprecated": false, "trackAdoption": false }, @@ -3020,10 +2792,8 @@ "tags": [], "label": "coreVitalPages", "description": [], - "signature": [ - "number | undefined" - ], - "path": "x-pack/plugins/observability_shared/public/types.ts", + "signature": ["number | undefined"], + "path": "x-pack/plugins/observability_solution/observability_shared/public/types.ts", "deprecated": false, "trackAdoption": false }, @@ -3034,10 +2804,8 @@ "tags": [], "label": "lcpRanks", "description": [], - "signature": [ - "number[] | undefined" - ], - "path": "x-pack/plugins/observability_shared/public/types.ts", + "signature": ["number[] | undefined"], + "path": "x-pack/plugins/observability_solution/observability_shared/public/types.ts", "deprecated": false, "trackAdoption": false }, @@ -3048,10 +2816,8 @@ "tags": [], "label": "clsRanks", "description": [], - "signature": [ - "number[] | undefined" - ], - "path": "x-pack/plugins/observability_shared/public/types.ts", + "signature": ["number[] | undefined"], + "path": "x-pack/plugins/observability_solution/observability_shared/public/types.ts", "deprecated": false, "trackAdoption": false }, @@ -3062,10 +2828,8 @@ "tags": [], "label": "inp", "description": [], - "signature": [ - "number | null | undefined" - ], - "path": "x-pack/plugins/observability_shared/public/types.ts", + "signature": ["number | null | undefined"], + "path": "x-pack/plugins/observability_solution/observability_shared/public/types.ts", "deprecated": false, "trackAdoption": false }, @@ -3076,10 +2840,8 @@ "tags": [], "label": "hasINP", "description": [], - "signature": [ - "boolean | undefined" - ], - "path": "x-pack/plugins/observability_shared/public/types.ts", + "signature": ["boolean | undefined"], + "path": "x-pack/plugins/observability_solution/observability_shared/public/types.ts", "deprecated": false, "trackAdoption": false }, @@ -3090,10 +2852,8 @@ "tags": [], "label": "inpRanks", "description": [], - "signature": [ - "number[] | undefined" - ], - "path": "x-pack/plugins/observability_shared/public/types.ts", + "signature": ["number[] | undefined"], + "path": "x-pack/plugins/observability_solution/observability_shared/public/types.ts", "deprecated": false, "trackAdoption": false } @@ -3109,7 +2869,7 @@ "tags": [], "label": "FETCH_STATUS", "description": [], - "path": "x-pack/plugins/observability_shared/public/hooks/use_fetcher.tsx", + "path": "x-pack/plugins/observability_solution/observability_shared/public/hooks/use_fetcher.tsx", "deprecated": false, "trackAdoption": false, "initialIsOpen": false @@ -3146,7 +2906,7 @@ }, "<{ mainStatisticsData?: { _inspect?: InspectResponse | undefined; } | undefined; _inspect?: InspectResponse | undefined; }>) => void" ], - "path": "x-pack/plugins/observability_shared/public/contexts/inspector/inspector_context.tsx", + "path": "x-pack/plugins/observability_solution/observability_shared/public/contexts/inspector/inspector_context.tsx", "deprecated": false, "trackAdoption": false, "returnComment": [], @@ -3168,7 +2928,7 @@ }, "<{ mainStatisticsData?: { _inspect?: InspectResponse | undefined; } | undefined; _inspect?: InspectResponse | undefined; }>" ], - "path": "x-pack/plugins/observability_shared/public/contexts/inspector/inspector_context.tsx", + "path": "x-pack/plugins/observability_solution/observability_shared/public/contexts/inspector/inspector_context.tsx", "deprecated": false, "trackAdoption": false } @@ -3182,10 +2942,8 @@ "tags": [], "label": "casesFeatureId", "description": [], - "signature": [ - "\"observabilityCases\"" - ], - "path": "x-pack/plugins/observability_shared/common/index.ts", + "signature": ["\"observabilityCases\""], + "path": "x-pack/plugins/observability_solution/observability_shared/common/index.ts", "deprecated": false, "trackAdoption": false, "initialIsOpen": false @@ -3196,13 +2954,9 @@ "type": "string", "tags": [], "label": "EMBEDDABLE_FLAMEGRAPH", - "description": [ - "Profiling flamegraph embeddable key" - ], - "signature": [ - "\"EMBEDDABLE_FLAMEGRAPH\"" - ], - "path": "x-pack/plugins/observability_shared/public/components/profiling/embeddables/index.ts", + "description": ["Profiling flamegraph embeddable key"], + "signature": ["\"EMBEDDABLE_FLAMEGRAPH\""], + "path": "x-pack/plugins/observability_solution/observability_shared/public/components/profiling/embeddables/index.ts", "deprecated": false, "trackAdoption": false, "initialIsOpen": false @@ -3213,13 +2967,9 @@ "type": "string", "tags": [], "label": "EMBEDDABLE_FUNCTIONS", - "description": [ - "Profiling functions embeddable key" - ], - "signature": [ - "\"EMBEDDABLE_FUNCTIONS\"" - ], - "path": "x-pack/plugins/observability_shared/public/components/profiling/embeddables/index.ts", + "description": ["Profiling functions embeddable key"], + "signature": ["\"EMBEDDABLE_FUNCTIONS\""], + "path": "x-pack/plugins/observability_solution/observability_shared/public/components/profiling/embeddables/index.ts", "deprecated": false, "trackAdoption": false, "initialIsOpen": false @@ -3230,13 +2980,9 @@ "type": "string", "tags": [], "label": "EMBEDDABLE_PROFILING_SEARCH_BAR", - "description": [ - "Profiling search bar embeddable key" - ], - "signature": [ - "\"EMBEDDABLE_PROFILING_SEARCH_BAR\"" - ], - "path": "x-pack/plugins/observability_shared/public/components/profiling/embeddables/index.ts", + "description": ["Profiling search bar embeddable key"], + "signature": ["\"EMBEDDABLE_PROFILING_SEARCH_BAR\""], + "path": "x-pack/plugins/observability_solution/observability_shared/public/components/profiling/embeddables/index.ts", "deprecated": false, "trackAdoption": false, "initialIsOpen": false @@ -3247,13 +2993,9 @@ "type": "string", "tags": [], "label": "EMBEDDABLE_STACK_TRACES", - "description": [ - "Profiling threads embeddable key" - ], - "signature": [ - "\"EMBEDDABLE_STACK_TRACES\"" - ], - "path": "x-pack/plugins/observability_shared/public/components/profiling/embeddables/index.ts", + "description": ["Profiling threads embeddable key"], + "signature": ["\"EMBEDDABLE_STACK_TRACES\""], + "path": "x-pack/plugins/observability_solution/observability_shared/public/components/profiling/embeddables/index.ts", "deprecated": false, "trackAdoption": false, "initialIsOpen": false @@ -3274,7 +3016,7 @@ "_EuiPageBottomBarProps", " | undefined; topSearchBar?: React.ReactNode; }" ], - "path": "x-pack/plugins/observability_shared/public/components/page_template/page_template.tsx", + "path": "x-pack/plugins/observability_solution/observability_shared/public/components/page_template/page_template.tsx", "deprecated": false, "trackAdoption": false, "initialIsOpen": false @@ -3290,7 +3032,7 @@ "EuiContextMenuItemProps", " & { children: React.ReactElement>; }" ], - "path": "x-pack/plugins/observability_shared/public/services/get_context_menu_items_from_actions.ts", + "path": "x-pack/plugins/observability_solution/observability_shared/public/services/get_context_menu_items_from_actions.ts", "deprecated": false, "trackAdoption": false, "initialIsOpen": false @@ -3302,10 +3044,8 @@ "tags": [], "label": "observabilityAppId", "description": [], - "signature": [ - "\"observability-overview\"" - ], - "path": "x-pack/plugins/observability_shared/common/index.ts", + "signature": ["\"observability-overview\""], + "path": "x-pack/plugins/observability_solution/observability_shared/common/index.ts", "deprecated": false, "trackAdoption": false, "initialIsOpen": false @@ -3317,10 +3057,8 @@ "tags": [], "label": "observabilityFeatureId", "description": [], - "signature": [ - "\"observability\"" - ], - "path": "x-pack/plugins/observability_shared/common/index.ts", + "signature": ["\"observability\""], + "path": "x-pack/plugins/observability_solution/observability_shared/common/index.ts", "deprecated": false, "trackAdoption": false, "initialIsOpen": false @@ -3343,7 +3081,7 @@ "_EuiPageBottomBarProps", " | undefined; topSearchBar?: React.ReactNode; }" ], - "path": "x-pack/plugins/observability_shared/public/components/page_template/page_template.tsx", + "path": "x-pack/plugins/observability_solution/observability_shared/public/components/page_template/page_template.tsx", "deprecated": false, "trackAdoption": false, "initialIsOpen": false @@ -3368,7 +3106,7 @@ }, "[]>) => void; }; }" ], - "path": "x-pack/plugins/observability_shared/public/plugin.ts", + "path": "x-pack/plugins/observability_solution/observability_shared/public/plugin.ts", "deprecated": false, "trackAdoption": false, "initialIsOpen": false @@ -3413,7 +3151,7 @@ }, ">; }) => void; setIsSidebarEnabled: (isEnabled: boolean) => void; }" ], - "path": "x-pack/plugins/observability_shared/public/plugin.ts", + "path": "x-pack/plugins/observability_solution/observability_shared/public/plugin.ts", "deprecated": false, "trackAdoption": false, "initialIsOpen": false @@ -3425,10 +3163,8 @@ "tags": [], "label": "observTourStepStorageKey", "description": [], - "signature": [ - "\"guidedOnboarding.observability.tourStep\"" - ], - "path": "x-pack/plugins/observability_shared/public/components/tour/tour.tsx", + "signature": ["\"guidedOnboarding.observability.tourStep\""], + "path": "x-pack/plugins/observability_solution/observability_shared/public/components/tour/tour.tsx", "deprecated": false, "trackAdoption": false, "initialIsOpen": false @@ -3449,7 +3185,7 @@ "StacktracesLocator", "; }" ], - "path": "x-pack/plugins/observability_shared/public/plugin.ts", + "path": "x-pack/plugins/observability_solution/observability_shared/public/plugin.ts", "deprecated": false, "trackAdoption": false, "initialIsOpen": false @@ -3489,7 +3225,7 @@ "EuiToolTipProps", "> | undefined; }" ], - "path": "x-pack/plugins/observability_shared/public/components/section/section.tsx", + "path": "x-pack/plugins/observability_solution/observability_shared/public/components/section/section.tsx", "deprecated": false, "trackAdoption": false, "initialIsOpen": false @@ -3501,10 +3237,8 @@ "tags": [], "label": "sloFeatureId", "description": [], - "signature": [ - "\"slo\"" - ], - "path": "x-pack/plugins/observability_shared/common/index.ts", + "signature": ["\"slo\""], + "path": "x-pack/plugins/observability_solution/observability_shared/common/index.ts", "deprecated": false, "trackAdoption": false, "initialIsOpen": false @@ -3516,12 +3250,8 @@ "tags": [], "label": "TrackEvent", "description": [], - "signature": [ - "(options: ", - "TrackMetricOptions", - ") => void" - ], - "path": "x-pack/plugins/observability_shared/public/hooks/use_track_metric.tsx", + "signature": ["(options: ", "TrackMetricOptions", ") => void"], + "path": "x-pack/plugins/observability_solution/observability_shared/public/hooks/use_track_metric.tsx", "deprecated": false, "trackAdoption": false, "returnComment": [], @@ -3533,10 +3263,8 @@ "tags": [], "label": "options", "description": [], - "signature": [ - "TrackOptions & { metric: string; }" - ], - "path": "x-pack/plugins/observability_shared/public/hooks/use_track_metric.tsx", + "signature": ["TrackOptions & { metric: string; }"], + "path": "x-pack/plugins/observability_solution/observability_shared/public/hooks/use_track_metric.tsx", "deprecated": false, "trackAdoption": false } @@ -3594,7 +3322,7 @@ "text": "Request" } ], - "path": "x-pack/plugins/observability_shared/common/utils/get_inspect_response.ts", + "path": "x-pack/plugins/observability_solution/observability_shared/common/utils/get_inspect_response.ts", "deprecated": false, "trackAdoption": false, "children": [ @@ -3605,7 +3333,7 @@ "tags": [], "label": "{\n esError,\n esRequestParams,\n esRequestStatus,\n esResponse,\n kibanaRequest,\n operationName,\n startTime,\n}", "description": [], - "path": "x-pack/plugins/observability_shared/common/utils/get_inspect_response.ts", + "path": "x-pack/plugins/observability_solution/observability_shared/common/utils/get_inspect_response.ts", "deprecated": false, "trackAdoption": false, "children": [ @@ -3616,11 +3344,8 @@ "tags": [], "label": "esError", "description": [], - "signature": [ - "WrappedElasticsearchClientError", - " | null" - ], - "path": "x-pack/plugins/observability_shared/common/utils/get_inspect_response.ts", + "signature": ["WrappedElasticsearchClientError", " | null"], + "path": "x-pack/plugins/observability_solution/observability_shared/common/utils/get_inspect_response.ts", "deprecated": false, "trackAdoption": false }, @@ -3631,10 +3356,8 @@ "tags": [], "label": "esRequestParams", "description": [], - "signature": [ - "{ [x: string]: any; }" - ], - "path": "x-pack/plugins/observability_shared/common/utils/get_inspect_response.ts", + "signature": ["{ [x: string]: any; }"], + "path": "x-pack/plugins/observability_solution/observability_shared/common/utils/get_inspect_response.ts", "deprecated": false, "trackAdoption": false }, @@ -3654,7 +3377,7 @@ "text": "RequestStatus" } ], - "path": "x-pack/plugins/observability_shared/common/utils/get_inspect_response.ts", + "path": "x-pack/plugins/observability_solution/observability_shared/common/utils/get_inspect_response.ts", "deprecated": false, "trackAdoption": false }, @@ -3665,10 +3388,8 @@ "tags": [], "label": "esResponse", "description": [], - "signature": [ - "any" - ], - "path": "x-pack/plugins/observability_shared/common/utils/get_inspect_response.ts", + "signature": ["any"], + "path": "x-pack/plugins/observability_solution/observability_shared/common/utils/get_inspect_response.ts", "deprecated": false, "trackAdoption": false }, @@ -3689,7 +3410,7 @@ }, "" ], - "path": "x-pack/plugins/observability_shared/common/utils/get_inspect_response.ts", + "path": "x-pack/plugins/observability_solution/observability_shared/common/utils/get_inspect_response.ts", "deprecated": false, "trackAdoption": false }, @@ -3700,7 +3421,7 @@ "tags": [], "label": "operationName", "description": [], - "path": "x-pack/plugins/observability_shared/common/utils/get_inspect_response.ts", + "path": "x-pack/plugins/observability_solution/observability_shared/common/utils/get_inspect_response.ts", "deprecated": false, "trackAdoption": false }, @@ -3711,7 +3432,7 @@ "tags": [], "label": "startTime", "description": [], - "path": "x-pack/plugins/observability_shared/common/utils/get_inspect_response.ts", + "path": "x-pack/plugins/observability_solution/observability_shared/common/utils/get_inspect_response.ts", "deprecated": false, "trackAdoption": false } @@ -3731,7 +3452,7 @@ "tags": [], "label": "ObservabilityTriggerId", "description": [], - "path": "x-pack/plugins/observability_shared/common/trigger_ids.ts", + "path": "x-pack/plugins/observability_solution/observability_shared/common/trigger_ids.ts", "deprecated": false, "trackAdoption": false, "initialIsOpen": false @@ -3745,10 +3466,8 @@ "tags": [], "label": "AGENT", "description": [], - "signature": [ - "\"agent\"" - ], - "path": "x-pack/plugins/observability_shared/common/field_names/elasticsearch.ts", + "signature": ["\"agent\""], + "path": "x-pack/plugins/observability_solution/observability_shared/common/field_names/elasticsearch.ts", "deprecated": false, "trackAdoption": false, "initialIsOpen": false @@ -3760,10 +3479,8 @@ "tags": [], "label": "AGENT_NAME", "description": [], - "signature": [ - "\"agent.name\"" - ], - "path": "x-pack/plugins/observability_shared/common/field_names/elasticsearch.ts", + "signature": ["\"agent.name\""], + "path": "x-pack/plugins/observability_solution/observability_shared/common/field_names/elasticsearch.ts", "deprecated": false, "trackAdoption": false, "initialIsOpen": false @@ -3775,10 +3492,8 @@ "tags": [], "label": "AGENT_VERSION", "description": [], - "signature": [ - "\"agent.version\"" - ], - "path": "x-pack/plugins/observability_shared/common/field_names/elasticsearch.ts", + "signature": ["\"agent.version\""], + "path": "x-pack/plugins/observability_solution/observability_shared/common/field_names/elasticsearch.ts", "deprecated": false, "trackAdoption": false, "initialIsOpen": false @@ -3790,10 +3505,8 @@ "tags": [], "label": "casesFeatureId", "description": [], - "signature": [ - "\"observabilityCases\"" - ], - "path": "x-pack/plugins/observability_shared/common/index.ts", + "signature": ["\"observabilityCases\""], + "path": "x-pack/plugins/observability_solution/observability_shared/common/index.ts", "deprecated": false, "trackAdoption": false, "initialIsOpen": false @@ -3805,10 +3518,8 @@ "tags": [], "label": "CLIENT_GEO", "description": [], - "signature": [ - "\"client.geo\"" - ], - "path": "x-pack/plugins/observability_shared/common/field_names/elasticsearch.ts", + "signature": ["\"client.geo\""], + "path": "x-pack/plugins/observability_solution/observability_shared/common/field_names/elasticsearch.ts", "deprecated": false, "trackAdoption": false, "initialIsOpen": false @@ -3820,10 +3531,8 @@ "tags": [], "label": "CLIENT_GEO_COUNTRY_ISO_CODE", "description": [], - "signature": [ - "\"client.geo.country_iso_code\"" - ], - "path": "x-pack/plugins/observability_shared/common/field_names/elasticsearch.ts", + "signature": ["\"client.geo.country_iso_code\""], + "path": "x-pack/plugins/observability_solution/observability_shared/common/field_names/elasticsearch.ts", "deprecated": false, "trackAdoption": false, "initialIsOpen": false @@ -3835,10 +3544,8 @@ "tags": [], "label": "CLIENT_GEO_COUNTRY_NAME", "description": [], - "signature": [ - "\"client.geo.country_name\"" - ], - "path": "x-pack/plugins/observability_shared/common/field_names/elasticsearch.ts", + "signature": ["\"client.geo.country_name\""], + "path": "x-pack/plugins/observability_solution/observability_shared/common/field_names/elasticsearch.ts", "deprecated": false, "trackAdoption": false, "initialIsOpen": false @@ -3850,10 +3557,8 @@ "tags": [], "label": "CLOUD", "description": [], - "signature": [ - "\"cloud\"" - ], - "path": "x-pack/plugins/observability_shared/common/field_names/elasticsearch.ts", + "signature": ["\"cloud\""], + "path": "x-pack/plugins/observability_solution/observability_shared/common/field_names/elasticsearch.ts", "deprecated": false, "trackAdoption": false, "initialIsOpen": false @@ -3865,10 +3570,8 @@ "tags": [], "label": "CLOUD_AVAILABILITY_ZONE", "description": [], - "signature": [ - "\"cloud.availability_zone\"" - ], - "path": "x-pack/plugins/observability_shared/common/field_names/elasticsearch.ts", + "signature": ["\"cloud.availability_zone\""], + "path": "x-pack/plugins/observability_solution/observability_shared/common/field_names/elasticsearch.ts", "deprecated": false, "trackAdoption": false, "initialIsOpen": false @@ -3880,10 +3583,8 @@ "tags": [], "label": "CLOUD_MACHINE_TYPE", "description": [], - "signature": [ - "\"cloud.machine.type\"" - ], - "path": "x-pack/plugins/observability_shared/common/field_names/elasticsearch.ts", + "signature": ["\"cloud.machine.type\""], + "path": "x-pack/plugins/observability_solution/observability_shared/common/field_names/elasticsearch.ts", "deprecated": false, "trackAdoption": false, "initialIsOpen": false @@ -3895,10 +3596,8 @@ "tags": [], "label": "CLOUD_PROVIDER", "description": [], - "signature": [ - "\"cloud.provider\"" - ], - "path": "x-pack/plugins/observability_shared/common/field_names/elasticsearch.ts", + "signature": ["\"cloud.provider\""], + "path": "x-pack/plugins/observability_solution/observability_shared/common/field_names/elasticsearch.ts", "deprecated": false, "trackAdoption": false, "initialIsOpen": false @@ -3910,10 +3609,8 @@ "tags": [], "label": "CLOUD_REGION", "description": [], - "signature": [ - "\"cloud.region\"" - ], - "path": "x-pack/plugins/observability_shared/common/field_names/elasticsearch.ts", + "signature": ["\"cloud.region\""], + "path": "x-pack/plugins/observability_solution/observability_shared/common/field_names/elasticsearch.ts", "deprecated": false, "trackAdoption": false, "initialIsOpen": false @@ -3925,10 +3622,8 @@ "tags": [], "label": "CLS_FIELD", "description": [], - "signature": [ - "\"transaction.experience.cls\"" - ], - "path": "x-pack/plugins/observability_shared/common/field_names/elasticsearch.ts", + "signature": ["\"transaction.experience.cls\""], + "path": "x-pack/plugins/observability_solution/observability_shared/common/field_names/elasticsearch.ts", "deprecated": false, "trackAdoption": false, "initialIsOpen": false @@ -3940,10 +3635,8 @@ "tags": [], "label": "CONTAINER_ID", "description": [], - "signature": [ - "\"container.id\"" - ], - "path": "x-pack/plugins/observability_shared/common/field_names/elasticsearch.ts", + "signature": ["\"container.id\""], + "path": "x-pack/plugins/observability_solution/observability_shared/common/field_names/elasticsearch.ts", "deprecated": false, "trackAdoption": false, "initialIsOpen": false @@ -3955,10 +3648,8 @@ "tags": [], "label": "DESTINATION_ADDRESS", "description": [], - "signature": [ - "\"destination.address\"" - ], - "path": "x-pack/plugins/observability_shared/common/field_names/elasticsearch.ts", + "signature": ["\"destination.address\""], + "path": "x-pack/plugins/observability_solution/observability_shared/common/field_names/elasticsearch.ts", "deprecated": false, "trackAdoption": false, "initialIsOpen": false @@ -3970,10 +3661,8 @@ "tags": [], "label": "ERROR_CULPRIT", "description": [], - "signature": [ - "\"error.culprit\"" - ], - "path": "x-pack/plugins/observability_shared/common/field_names/elasticsearch.ts", + "signature": ["\"error.culprit\""], + "path": "x-pack/plugins/observability_solution/observability_shared/common/field_names/elasticsearch.ts", "deprecated": false, "trackAdoption": false, "initialIsOpen": false @@ -3985,10 +3674,8 @@ "tags": [], "label": "ERROR_EXC_HANDLED", "description": [], - "signature": [ - "\"error.exception.handled\"" - ], - "path": "x-pack/plugins/observability_shared/common/field_names/elasticsearch.ts", + "signature": ["\"error.exception.handled\""], + "path": "x-pack/plugins/observability_solution/observability_shared/common/field_names/elasticsearch.ts", "deprecated": false, "trackAdoption": false, "initialIsOpen": false @@ -4000,10 +3687,8 @@ "tags": [], "label": "ERROR_EXC_MESSAGE", "description": [], - "signature": [ - "\"error.exception.message\"" - ], - "path": "x-pack/plugins/observability_shared/common/field_names/elasticsearch.ts", + "signature": ["\"error.exception.message\""], + "path": "x-pack/plugins/observability_solution/observability_shared/common/field_names/elasticsearch.ts", "deprecated": false, "trackAdoption": false, "initialIsOpen": false @@ -4015,10 +3700,8 @@ "tags": [], "label": "ERROR_EXC_TYPE", "description": [], - "signature": [ - "\"error.exception.type\"" - ], - "path": "x-pack/plugins/observability_shared/common/field_names/elasticsearch.ts", + "signature": ["\"error.exception.type\""], + "path": "x-pack/plugins/observability_solution/observability_shared/common/field_names/elasticsearch.ts", "deprecated": false, "trackAdoption": false, "initialIsOpen": false @@ -4030,10 +3713,8 @@ "tags": [], "label": "ERROR_GROUP_ID", "description": [], - "signature": [ - "\"error.grouping_key\"" - ], - "path": "x-pack/plugins/observability_shared/common/field_names/elasticsearch.ts", + "signature": ["\"error.grouping_key\""], + "path": "x-pack/plugins/observability_solution/observability_shared/common/field_names/elasticsearch.ts", "deprecated": false, "trackAdoption": false, "initialIsOpen": false @@ -4045,10 +3726,8 @@ "tags": [], "label": "ERROR_LOG_LEVEL", "description": [], - "signature": [ - "\"error.log.level\"" - ], - "path": "x-pack/plugins/observability_shared/common/field_names/elasticsearch.ts", + "signature": ["\"error.log.level\""], + "path": "x-pack/plugins/observability_solution/observability_shared/common/field_names/elasticsearch.ts", "deprecated": false, "trackAdoption": false, "initialIsOpen": false @@ -4060,10 +3739,8 @@ "tags": [], "label": "ERROR_LOG_MESSAGE", "description": [], - "signature": [ - "\"error.log.message\"" - ], - "path": "x-pack/plugins/observability_shared/common/field_names/elasticsearch.ts", + "signature": ["\"error.log.message\""], + "path": "x-pack/plugins/observability_solution/observability_shared/common/field_names/elasticsearch.ts", "deprecated": false, "trackAdoption": false, "initialIsOpen": false @@ -4075,10 +3752,8 @@ "tags": [], "label": "ERROR_PAGE_URL", "description": [], - "signature": [ - "\"error.page.url\"" - ], - "path": "x-pack/plugins/observability_shared/common/field_names/elasticsearch.ts", + "signature": ["\"error.page.url\""], + "path": "x-pack/plugins/observability_solution/observability_shared/common/field_names/elasticsearch.ts", "deprecated": false, "trackAdoption": false, "initialIsOpen": false @@ -4090,10 +3765,8 @@ "tags": [], "label": "EVENT_OUTCOME", "description": [], - "signature": [ - "\"event.outcome\"" - ], - "path": "x-pack/plugins/observability_shared/common/field_names/elasticsearch.ts", + "signature": ["\"event.outcome\""], + "path": "x-pack/plugins/observability_solution/observability_shared/common/field_names/elasticsearch.ts", "deprecated": false, "trackAdoption": false, "initialIsOpen": false @@ -4105,10 +3778,8 @@ "tags": [], "label": "FCP_FIELD", "description": [], - "signature": [ - "\"transaction.marks.agent.firstContentfulPaint\"" - ], - "path": "x-pack/plugins/observability_shared/common/field_names/elasticsearch.ts", + "signature": ["\"transaction.marks.agent.firstContentfulPaint\""], + "path": "x-pack/plugins/observability_solution/observability_shared/common/field_names/elasticsearch.ts", "deprecated": false, "trackAdoption": false, "initialIsOpen": false @@ -4120,10 +3791,8 @@ "tags": [], "label": "FID_FIELD", "description": [], - "signature": [ - "\"transaction.experience.fid\"" - ], - "path": "x-pack/plugins/observability_shared/common/field_names/elasticsearch.ts", + "signature": ["\"transaction.experience.fid\""], + "path": "x-pack/plugins/observability_solution/observability_shared/common/field_names/elasticsearch.ts", "deprecated": false, "trackAdoption": false, "initialIsOpen": false @@ -4135,10 +3804,8 @@ "tags": [], "label": "HOST", "description": [], - "signature": [ - "\"host\"" - ], - "path": "x-pack/plugins/observability_shared/common/field_names/elasticsearch.ts", + "signature": ["\"host\""], + "path": "x-pack/plugins/observability_solution/observability_shared/common/field_names/elasticsearch.ts", "deprecated": false, "trackAdoption": false, "initialIsOpen": false @@ -4150,10 +3817,8 @@ "tags": [], "label": "HOST_HOSTNAME", "description": [], - "signature": [ - "\"host.hostname\"" - ], - "path": "x-pack/plugins/observability_shared/common/field_names/elasticsearch.ts", + "signature": ["\"host.hostname\""], + "path": "x-pack/plugins/observability_solution/observability_shared/common/field_names/elasticsearch.ts", "deprecated": false, "trackAdoption": false, "initialIsOpen": false @@ -4165,10 +3830,8 @@ "tags": [], "label": "HOST_OS_PLATFORM", "description": [], - "signature": [ - "\"host.os.platform\"" - ], - "path": "x-pack/plugins/observability_shared/common/field_names/elasticsearch.ts", + "signature": ["\"host.os.platform\""], + "path": "x-pack/plugins/observability_solution/observability_shared/common/field_names/elasticsearch.ts", "deprecated": false, "trackAdoption": false, "initialIsOpen": false @@ -4180,10 +3843,8 @@ "tags": [], "label": "HTTP_REQUEST_METHOD", "description": [], - "signature": [ - "\"http.request.method\"" - ], - "path": "x-pack/plugins/observability_shared/common/field_names/elasticsearch.ts", + "signature": ["\"http.request.method\""], + "path": "x-pack/plugins/observability_solution/observability_shared/common/field_names/elasticsearch.ts", "deprecated": false, "trackAdoption": false, "initialIsOpen": false @@ -4195,10 +3856,8 @@ "tags": [], "label": "HTTP_RESPONSE_STATUS_CODE", "description": [], - "signature": [ - "\"http.response.status_code\"" - ], - "path": "x-pack/plugins/observability_shared/common/field_names/elasticsearch.ts", + "signature": ["\"http.response.status_code\""], + "path": "x-pack/plugins/observability_solution/observability_shared/common/field_names/elasticsearch.ts", "deprecated": false, "trackAdoption": false, "initialIsOpen": false @@ -4210,10 +3869,8 @@ "tags": [], "label": "KUBERNETES", "description": [], - "signature": [ - "\"kubernetes\"" - ], - "path": "x-pack/plugins/observability_shared/common/field_names/elasticsearch.ts", + "signature": ["\"kubernetes\""], + "path": "x-pack/plugins/observability_solution/observability_shared/common/field_names/elasticsearch.ts", "deprecated": false, "trackAdoption": false, "initialIsOpen": false @@ -4225,10 +3882,8 @@ "tags": [], "label": "LABEL_NAME", "description": [], - "signature": [ - "\"labels.name\"" - ], - "path": "x-pack/plugins/observability_shared/common/field_names/elasticsearch.ts", + "signature": ["\"labels.name\""], + "path": "x-pack/plugins/observability_solution/observability_shared/common/field_names/elasticsearch.ts", "deprecated": false, "trackAdoption": false, "initialIsOpen": false @@ -4240,10 +3895,8 @@ "tags": [], "label": "LCP_FIELD", "description": [], - "signature": [ - "\"transaction.marks.agent.largestContentfulPaint\"" - ], - "path": "x-pack/plugins/observability_shared/common/field_names/elasticsearch.ts", + "signature": ["\"transaction.marks.agent.largestContentfulPaint\""], + "path": "x-pack/plugins/observability_solution/observability_shared/common/field_names/elasticsearch.ts", "deprecated": false, "trackAdoption": false, "initialIsOpen": false @@ -4255,10 +3908,8 @@ "tags": [], "label": "LOGS_EXPLORER_FEEDBACK_LINK", "description": [], - "signature": [ - "\"https://ela.st/explorer-feedback\"" - ], - "path": "x-pack/plugins/observability_shared/common/index.ts", + "signature": ["\"https://ela.st/explorer-feedback\""], + "path": "x-pack/plugins/observability_solution/observability_shared/common/index.ts", "deprecated": false, "trackAdoption": false, "initialIsOpen": false @@ -4270,10 +3921,8 @@ "tags": [], "label": "LOGS_ONBOARDING_FEEDBACK_LINK", "description": [], - "signature": [ - "\"https://ela.st/logs-onboarding-feedback\"" - ], - "path": "x-pack/plugins/observability_shared/common/index.ts", + "signature": ["\"https://ela.st/logs-onboarding-feedback\""], + "path": "x-pack/plugins/observability_solution/observability_shared/common/index.ts", "deprecated": false, "trackAdoption": false, "initialIsOpen": false @@ -4285,10 +3934,8 @@ "tags": [], "label": "METRIC_CGROUP_MEMORY_LIMIT_BYTES", "description": [], - "signature": [ - "\"system.process.cgroup.memory.mem.limit.bytes\"" - ], - "path": "x-pack/plugins/observability_shared/common/field_names/elasticsearch.ts", + "signature": ["\"system.process.cgroup.memory.mem.limit.bytes\""], + "path": "x-pack/plugins/observability_solution/observability_shared/common/field_names/elasticsearch.ts", "deprecated": false, "trackAdoption": false, "initialIsOpen": false @@ -4300,10 +3947,8 @@ "tags": [], "label": "METRIC_CGROUP_MEMORY_USAGE_BYTES", "description": [], - "signature": [ - "\"system.process.cgroup.memory.mem.usage.bytes\"" - ], - "path": "x-pack/plugins/observability_shared/common/field_names/elasticsearch.ts", + "signature": ["\"system.process.cgroup.memory.mem.usage.bytes\""], + "path": "x-pack/plugins/observability_solution/observability_shared/common/field_names/elasticsearch.ts", "deprecated": false, "trackAdoption": false, "initialIsOpen": false @@ -4315,10 +3960,8 @@ "tags": [], "label": "METRIC_JAVA_GC_COUNT", "description": [], - "signature": [ - "\"jvm.gc.count\"" - ], - "path": "x-pack/plugins/observability_shared/common/field_names/elasticsearch.ts", + "signature": ["\"jvm.gc.count\""], + "path": "x-pack/plugins/observability_solution/observability_shared/common/field_names/elasticsearch.ts", "deprecated": false, "trackAdoption": false, "initialIsOpen": false @@ -4330,10 +3973,8 @@ "tags": [], "label": "METRIC_JAVA_GC_TIME", "description": [], - "signature": [ - "\"jvm.gc.time\"" - ], - "path": "x-pack/plugins/observability_shared/common/field_names/elasticsearch.ts", + "signature": ["\"jvm.gc.time\""], + "path": "x-pack/plugins/observability_solution/observability_shared/common/field_names/elasticsearch.ts", "deprecated": false, "trackAdoption": false, "initialIsOpen": false @@ -4345,10 +3986,8 @@ "tags": [], "label": "METRIC_JAVA_HEAP_MEMORY_COMMITTED", "description": [], - "signature": [ - "\"jvm.memory.heap.committed\"" - ], - "path": "x-pack/plugins/observability_shared/common/field_names/elasticsearch.ts", + "signature": ["\"jvm.memory.heap.committed\""], + "path": "x-pack/plugins/observability_solution/observability_shared/common/field_names/elasticsearch.ts", "deprecated": false, "trackAdoption": false, "initialIsOpen": false @@ -4360,10 +3999,8 @@ "tags": [], "label": "METRIC_JAVA_HEAP_MEMORY_MAX", "description": [], - "signature": [ - "\"jvm.memory.heap.max\"" - ], - "path": "x-pack/plugins/observability_shared/common/field_names/elasticsearch.ts", + "signature": ["\"jvm.memory.heap.max\""], + "path": "x-pack/plugins/observability_solution/observability_shared/common/field_names/elasticsearch.ts", "deprecated": false, "trackAdoption": false, "initialIsOpen": false @@ -4375,10 +4012,8 @@ "tags": [], "label": "METRIC_JAVA_HEAP_MEMORY_USED", "description": [], - "signature": [ - "\"jvm.memory.heap.used\"" - ], - "path": "x-pack/plugins/observability_shared/common/field_names/elasticsearch.ts", + "signature": ["\"jvm.memory.heap.used\""], + "path": "x-pack/plugins/observability_solution/observability_shared/common/field_names/elasticsearch.ts", "deprecated": false, "trackAdoption": false, "initialIsOpen": false @@ -4390,10 +4025,8 @@ "tags": [], "label": "METRIC_JAVA_NON_HEAP_MEMORY_COMMITTED", "description": [], - "signature": [ - "\"jvm.memory.non_heap.committed\"" - ], - "path": "x-pack/plugins/observability_shared/common/field_names/elasticsearch.ts", + "signature": ["\"jvm.memory.non_heap.committed\""], + "path": "x-pack/plugins/observability_solution/observability_shared/common/field_names/elasticsearch.ts", "deprecated": false, "trackAdoption": false, "initialIsOpen": false @@ -4405,10 +4038,8 @@ "tags": [], "label": "METRIC_JAVA_NON_HEAP_MEMORY_MAX", "description": [], - "signature": [ - "\"jvm.memory.non_heap.max\"" - ], - "path": "x-pack/plugins/observability_shared/common/field_names/elasticsearch.ts", + "signature": ["\"jvm.memory.non_heap.max\""], + "path": "x-pack/plugins/observability_solution/observability_shared/common/field_names/elasticsearch.ts", "deprecated": false, "trackAdoption": false, "initialIsOpen": false @@ -4420,10 +4051,8 @@ "tags": [], "label": "METRIC_JAVA_NON_HEAP_MEMORY_USED", "description": [], - "signature": [ - "\"jvm.memory.non_heap.used\"" - ], - "path": "x-pack/plugins/observability_shared/common/field_names/elasticsearch.ts", + "signature": ["\"jvm.memory.non_heap.used\""], + "path": "x-pack/plugins/observability_solution/observability_shared/common/field_names/elasticsearch.ts", "deprecated": false, "trackAdoption": false, "initialIsOpen": false @@ -4435,10 +4064,8 @@ "tags": [], "label": "METRIC_JAVA_THREAD_COUNT", "description": [], - "signature": [ - "\"jvm.thread.count\"" - ], - "path": "x-pack/plugins/observability_shared/common/field_names/elasticsearch.ts", + "signature": ["\"jvm.thread.count\""], + "path": "x-pack/plugins/observability_solution/observability_shared/common/field_names/elasticsearch.ts", "deprecated": false, "trackAdoption": false, "initialIsOpen": false @@ -4450,10 +4077,8 @@ "tags": [], "label": "METRIC_PROCESS_CPU_PERCENT", "description": [], - "signature": [ - "\"system.process.cpu.total.norm.pct\"" - ], - "path": "x-pack/plugins/observability_shared/common/field_names/elasticsearch.ts", + "signature": ["\"system.process.cpu.total.norm.pct\""], + "path": "x-pack/plugins/observability_solution/observability_shared/common/field_names/elasticsearch.ts", "deprecated": false, "trackAdoption": false, "initialIsOpen": false @@ -4465,10 +4090,8 @@ "tags": [], "label": "METRIC_SYSTEM_CPU_PERCENT", "description": [], - "signature": [ - "\"system.cpu.total.norm.pct\"" - ], - "path": "x-pack/plugins/observability_shared/common/field_names/elasticsearch.ts", + "signature": ["\"system.cpu.total.norm.pct\""], + "path": "x-pack/plugins/observability_solution/observability_shared/common/field_names/elasticsearch.ts", "deprecated": false, "trackAdoption": false, "initialIsOpen": false @@ -4480,10 +4103,8 @@ "tags": [], "label": "METRIC_SYSTEM_CPU_USAGE", "description": [], - "signature": [ - "\"system.cpu.usage\"" - ], - "path": "x-pack/plugins/observability_shared/common/field_names/elasticsearch.ts", + "signature": ["\"system.cpu.usage\""], + "path": "x-pack/plugins/observability_solution/observability_shared/common/field_names/elasticsearch.ts", "deprecated": false, "trackAdoption": false, "initialIsOpen": false @@ -4495,10 +4116,8 @@ "tags": [], "label": "METRIC_SYSTEM_FREE_MEMORY", "description": [], - "signature": [ - "\"system.memory.actual.free\"" - ], - "path": "x-pack/plugins/observability_shared/common/field_names/elasticsearch.ts", + "signature": ["\"system.memory.actual.free\""], + "path": "x-pack/plugins/observability_solution/observability_shared/common/field_names/elasticsearch.ts", "deprecated": false, "trackAdoption": false, "initialIsOpen": false @@ -4510,10 +4129,8 @@ "tags": [], "label": "METRIC_SYSTEM_MEMORY_USAGE", "description": [], - "signature": [ - "\"system.memory.usage\"" - ], - "path": "x-pack/plugins/observability_shared/common/field_names/elasticsearch.ts", + "signature": ["\"system.memory.usage\""], + "path": "x-pack/plugins/observability_solution/observability_shared/common/field_names/elasticsearch.ts", "deprecated": false, "trackAdoption": false, "initialIsOpen": false @@ -4525,10 +4142,8 @@ "tags": [], "label": "METRIC_SYSTEM_TOTAL_MEMORY", "description": [], - "signature": [ - "\"system.memory.total\"" - ], - "path": "x-pack/plugins/observability_shared/common/field_names/elasticsearch.ts", + "signature": ["\"system.memory.total\""], + "path": "x-pack/plugins/observability_solution/observability_shared/common/field_names/elasticsearch.ts", "deprecated": false, "trackAdoption": false, "initialIsOpen": false @@ -4540,10 +4155,8 @@ "tags": [], "label": "NETWORK_TIMINGS_FIELDS", "description": [], - "signature": [ - "string[]" - ], - "path": "x-pack/plugins/observability_shared/common/field_names/synthetics.ts", + "signature": ["string[]"], + "path": "x-pack/plugins/observability_solution/observability_shared/common/field_names/synthetics.ts", "deprecated": false, "trackAdoption": false, "initialIsOpen": false @@ -4555,10 +4168,8 @@ "tags": [], "label": "observabilityAppId", "description": [], - "signature": [ - "\"observability-overview\"" - ], - "path": "x-pack/plugins/observability_shared/common/index.ts", + "signature": ["\"observability-overview\""], + "path": "x-pack/plugins/observability_solution/observability_shared/common/index.ts", "deprecated": false, "trackAdoption": false, "initialIsOpen": false @@ -4570,10 +4181,8 @@ "tags": [], "label": "observabilityFeatureId", "description": [], - "signature": [ - "\"observability\"" - ], - "path": "x-pack/plugins/observability_shared/common/index.ts", + "signature": ["\"observability\""], + "path": "x-pack/plugins/observability_solution/observability_shared/common/index.ts", "deprecated": false, "trackAdoption": false, "initialIsOpen": false @@ -4585,10 +4194,8 @@ "tags": [], "label": "OBSERVER_HOSTNAME", "description": [], - "signature": [ - "\"observer.hostname\"" - ], - "path": "x-pack/plugins/observability_shared/common/field_names/elasticsearch.ts", + "signature": ["\"observer.hostname\""], + "path": "x-pack/plugins/observability_solution/observability_shared/common/field_names/elasticsearch.ts", "deprecated": false, "trackAdoption": false, "initialIsOpen": false @@ -4600,10 +4207,8 @@ "tags": [], "label": "OBSERVER_LISTENING", "description": [], - "signature": [ - "\"observer.listening\"" - ], - "path": "x-pack/plugins/observability_shared/common/field_names/elasticsearch.ts", + "signature": ["\"observer.listening\""], + "path": "x-pack/plugins/observability_solution/observability_shared/common/field_names/elasticsearch.ts", "deprecated": false, "trackAdoption": false, "initialIsOpen": false @@ -4615,10 +4220,8 @@ "tags": [], "label": "OBSERVER_VERSION_MAJOR", "description": [], - "signature": [ - "\"observer.version_major\"" - ], - "path": "x-pack/plugins/observability_shared/common/field_names/elasticsearch.ts", + "signature": ["\"observer.version_major\""], + "path": "x-pack/plugins/observability_solution/observability_shared/common/field_names/elasticsearch.ts", "deprecated": false, "trackAdoption": false, "initialIsOpen": false @@ -4630,10 +4233,8 @@ "tags": [], "label": "PARENT_ID", "description": [], - "signature": [ - "\"parent.id\"" - ], - "path": "x-pack/plugins/observability_shared/common/field_names/elasticsearch.ts", + "signature": ["\"parent.id\""], + "path": "x-pack/plugins/observability_solution/observability_shared/common/field_names/elasticsearch.ts", "deprecated": false, "trackAdoption": false, "initialIsOpen": false @@ -4645,10 +4246,8 @@ "tags": [], "label": "POD_NAME", "description": [], - "signature": [ - "\"kubernetes.pod.name\"" - ], - "path": "x-pack/plugins/observability_shared/common/field_names/elasticsearch.ts", + "signature": ["\"kubernetes.pod.name\""], + "path": "x-pack/plugins/observability_solution/observability_shared/common/field_names/elasticsearch.ts", "deprecated": false, "trackAdoption": false, "initialIsOpen": false @@ -4660,10 +4259,8 @@ "tags": [], "label": "PROCESSOR_EVENT", "description": [], - "signature": [ - "\"processor.event\"" - ], - "path": "x-pack/plugins/observability_shared/common/field_names/elasticsearch.ts", + "signature": ["\"processor.event\""], + "path": "x-pack/plugins/observability_solution/observability_shared/common/field_names/elasticsearch.ts", "deprecated": false, "trackAdoption": false, "initialIsOpen": false @@ -4675,10 +4272,8 @@ "tags": [], "label": "PROFILE_ALLOC_OBJECTS", "description": [], - "signature": [ - "\"profile.alloc_objects.count\"" - ], - "path": "x-pack/plugins/observability_shared/common/field_names/elasticsearch.ts", + "signature": ["\"profile.alloc_objects.count\""], + "path": "x-pack/plugins/observability_solution/observability_shared/common/field_names/elasticsearch.ts", "deprecated": false, "trackAdoption": false, "initialIsOpen": false @@ -4690,10 +4285,8 @@ "tags": [], "label": "PROFILE_ALLOC_SPACE", "description": [], - "signature": [ - "\"profile.alloc_space.bytes\"" - ], - "path": "x-pack/plugins/observability_shared/common/field_names/elasticsearch.ts", + "signature": ["\"profile.alloc_space.bytes\""], + "path": "x-pack/plugins/observability_solution/observability_shared/common/field_names/elasticsearch.ts", "deprecated": false, "trackAdoption": false, "initialIsOpen": false @@ -4705,10 +4298,8 @@ "tags": [], "label": "PROFILE_CPU_NS", "description": [], - "signature": [ - "\"profile.cpu.ns\"" - ], - "path": "x-pack/plugins/observability_shared/common/field_names/elasticsearch.ts", + "signature": ["\"profile.cpu.ns\""], + "path": "x-pack/plugins/observability_solution/observability_shared/common/field_names/elasticsearch.ts", "deprecated": false, "trackAdoption": false, "initialIsOpen": false @@ -4720,10 +4311,8 @@ "tags": [], "label": "PROFILE_DURATION", "description": [], - "signature": [ - "\"profile.duration\"" - ], - "path": "x-pack/plugins/observability_shared/common/field_names/elasticsearch.ts", + "signature": ["\"profile.duration\""], + "path": "x-pack/plugins/observability_solution/observability_shared/common/field_names/elasticsearch.ts", "deprecated": false, "trackAdoption": false, "initialIsOpen": false @@ -4735,10 +4324,8 @@ "tags": [], "label": "PROFILE_ID", "description": [], - "signature": [ - "\"profile.id\"" - ], - "path": "x-pack/plugins/observability_shared/common/field_names/elasticsearch.ts", + "signature": ["\"profile.id\""], + "path": "x-pack/plugins/observability_solution/observability_shared/common/field_names/elasticsearch.ts", "deprecated": false, "trackAdoption": false, "initialIsOpen": false @@ -4750,10 +4337,8 @@ "tags": [], "label": "PROFILE_INUSE_OBJECTS", "description": [], - "signature": [ - "\"profile.inuse_objects.count\"" - ], - "path": "x-pack/plugins/observability_shared/common/field_names/elasticsearch.ts", + "signature": ["\"profile.inuse_objects.count\""], + "path": "x-pack/plugins/observability_solution/observability_shared/common/field_names/elasticsearch.ts", "deprecated": false, "trackAdoption": false, "initialIsOpen": false @@ -4765,10 +4350,8 @@ "tags": [], "label": "PROFILE_INUSE_SPACE", "description": [], - "signature": [ - "\"profile.inuse_space.bytes\"" - ], - "path": "x-pack/plugins/observability_shared/common/field_names/elasticsearch.ts", + "signature": ["\"profile.inuse_space.bytes\""], + "path": "x-pack/plugins/observability_solution/observability_shared/common/field_names/elasticsearch.ts", "deprecated": false, "trackAdoption": false, "initialIsOpen": false @@ -4780,10 +4363,8 @@ "tags": [], "label": "PROFILE_SAMPLES_COUNT", "description": [], - "signature": [ - "\"profile.samples.count\"" - ], - "path": "x-pack/plugins/observability_shared/common/field_names/elasticsearch.ts", + "signature": ["\"profile.samples.count\""], + "path": "x-pack/plugins/observability_solution/observability_shared/common/field_names/elasticsearch.ts", "deprecated": false, "trackAdoption": false, "initialIsOpen": false @@ -4795,10 +4376,8 @@ "tags": [], "label": "PROFILE_STACK", "description": [], - "signature": [ - "\"profile.stack\"" - ], - "path": "x-pack/plugins/observability_shared/common/field_names/elasticsearch.ts", + "signature": ["\"profile.stack\""], + "path": "x-pack/plugins/observability_solution/observability_shared/common/field_names/elasticsearch.ts", "deprecated": false, "trackAdoption": false, "initialIsOpen": false @@ -4810,10 +4389,8 @@ "tags": [], "label": "PROFILE_TOP_ID", "description": [], - "signature": [ - "\"profile.top.id\"" - ], - "path": "x-pack/plugins/observability_shared/common/field_names/elasticsearch.ts", + "signature": ["\"profile.top.id\""], + "path": "x-pack/plugins/observability_solution/observability_shared/common/field_names/elasticsearch.ts", "deprecated": false, "trackAdoption": false, "initialIsOpen": false @@ -4825,10 +4402,8 @@ "tags": [], "label": "PROFILE_WALL_US", "description": [], - "signature": [ - "\"profile.wall.us\"" - ], - "path": "x-pack/plugins/observability_shared/common/field_names/elasticsearch.ts", + "signature": ["\"profile.wall.us\""], + "path": "x-pack/plugins/observability_solution/observability_shared/common/field_names/elasticsearch.ts", "deprecated": false, "trackAdoption": false, "initialIsOpen": false @@ -4840,10 +4415,8 @@ "tags": [], "label": "SERVICE", "description": [], - "signature": [ - "\"service\"" - ], - "path": "x-pack/plugins/observability_shared/common/field_names/elasticsearch.ts", + "signature": ["\"service\""], + "path": "x-pack/plugins/observability_solution/observability_shared/common/field_names/elasticsearch.ts", "deprecated": false, "trackAdoption": false, "initialIsOpen": false @@ -4855,10 +4428,8 @@ "tags": [], "label": "SERVICE_ENVIRONMENT", "description": [], - "signature": [ - "\"service.environment\"" - ], - "path": "x-pack/plugins/observability_shared/common/field_names/elasticsearch.ts", + "signature": ["\"service.environment\""], + "path": "x-pack/plugins/observability_solution/observability_shared/common/field_names/elasticsearch.ts", "deprecated": false, "trackAdoption": false, "initialIsOpen": false @@ -4870,10 +4441,8 @@ "tags": [], "label": "SERVICE_FRAMEWORK_NAME", "description": [], - "signature": [ - "\"service.framework.name\"" - ], - "path": "x-pack/plugins/observability_shared/common/field_names/elasticsearch.ts", + "signature": ["\"service.framework.name\""], + "path": "x-pack/plugins/observability_solution/observability_shared/common/field_names/elasticsearch.ts", "deprecated": false, "trackAdoption": false, "initialIsOpen": false @@ -4885,10 +4454,8 @@ "tags": [], "label": "SERVICE_FRAMEWORK_VERSION", "description": [], - "signature": [ - "\"service.framework.version\"" - ], - "path": "x-pack/plugins/observability_shared/common/field_names/elasticsearch.ts", + "signature": ["\"service.framework.version\""], + "path": "x-pack/plugins/observability_solution/observability_shared/common/field_names/elasticsearch.ts", "deprecated": false, "trackAdoption": false, "initialIsOpen": false @@ -4900,10 +4467,8 @@ "tags": [], "label": "SERVICE_LANGUAGE_NAME", "description": [], - "signature": [ - "\"service.language.name\"" - ], - "path": "x-pack/plugins/observability_shared/common/field_names/elasticsearch.ts", + "signature": ["\"service.language.name\""], + "path": "x-pack/plugins/observability_solution/observability_shared/common/field_names/elasticsearch.ts", "deprecated": false, "trackAdoption": false, "initialIsOpen": false @@ -4915,10 +4480,8 @@ "tags": [], "label": "SERVICE_LANGUAGE_VERSION", "description": [], - "signature": [ - "\"service.language.version\"" - ], - "path": "x-pack/plugins/observability_shared/common/field_names/elasticsearch.ts", + "signature": ["\"service.language.version\""], + "path": "x-pack/plugins/observability_solution/observability_shared/common/field_names/elasticsearch.ts", "deprecated": false, "trackAdoption": false, "initialIsOpen": false @@ -4930,10 +4493,8 @@ "tags": [], "label": "SERVICE_NAME", "description": [], - "signature": [ - "\"service.name\"" - ], - "path": "x-pack/plugins/observability_shared/common/field_names/elasticsearch.ts", + "signature": ["\"service.name\""], + "path": "x-pack/plugins/observability_solution/observability_shared/common/field_names/elasticsearch.ts", "deprecated": false, "trackAdoption": false, "initialIsOpen": false @@ -4945,10 +4506,8 @@ "tags": [], "label": "SERVICE_NODE_NAME", "description": [], - "signature": [ - "\"service.node.name\"" - ], - "path": "x-pack/plugins/observability_shared/common/field_names/elasticsearch.ts", + "signature": ["\"service.node.name\""], + "path": "x-pack/plugins/observability_solution/observability_shared/common/field_names/elasticsearch.ts", "deprecated": false, "trackAdoption": false, "initialIsOpen": false @@ -4960,10 +4519,8 @@ "tags": [], "label": "SERVICE_RUNTIME_NAME", "description": [], - "signature": [ - "\"service.runtime.name\"" - ], - "path": "x-pack/plugins/observability_shared/common/field_names/elasticsearch.ts", + "signature": ["\"service.runtime.name\""], + "path": "x-pack/plugins/observability_solution/observability_shared/common/field_names/elasticsearch.ts", "deprecated": false, "trackAdoption": false, "initialIsOpen": false @@ -4975,10 +4532,8 @@ "tags": [], "label": "SERVICE_RUNTIME_VERSION", "description": [], - "signature": [ - "\"service.runtime.version\"" - ], - "path": "x-pack/plugins/observability_shared/common/field_names/elasticsearch.ts", + "signature": ["\"service.runtime.version\""], + "path": "x-pack/plugins/observability_solution/observability_shared/common/field_names/elasticsearch.ts", "deprecated": false, "trackAdoption": false, "initialIsOpen": false @@ -4990,10 +4545,8 @@ "tags": [], "label": "SERVICE_VERSION", "description": [], - "signature": [ - "\"service.version\"" - ], - "path": "x-pack/plugins/observability_shared/common/field_names/elasticsearch.ts", + "signature": ["\"service.version\""], + "path": "x-pack/plugins/observability_solution/observability_shared/common/field_names/elasticsearch.ts", "deprecated": false, "trackAdoption": false, "initialIsOpen": false @@ -5005,10 +4558,8 @@ "tags": [], "label": "sloFeatureId", "description": [], - "signature": [ - "\"slo\"" - ], - "path": "x-pack/plugins/observability_shared/common/index.ts", + "signature": ["\"slo\""], + "path": "x-pack/plugins/observability_solution/observability_shared/common/index.ts", "deprecated": false, "trackAdoption": false, "initialIsOpen": false @@ -5020,10 +4571,8 @@ "tags": [], "label": "SPAN_ACTION", "description": [], - "signature": [ - "\"span.action\"" - ], - "path": "x-pack/plugins/observability_shared/common/field_names/elasticsearch.ts", + "signature": ["\"span.action\""], + "path": "x-pack/plugins/observability_solution/observability_shared/common/field_names/elasticsearch.ts", "deprecated": false, "trackAdoption": false, "initialIsOpen": false @@ -5035,10 +4584,8 @@ "tags": [], "label": "SPAN_DESTINATION_SERVICE_RESOURCE", "description": [], - "signature": [ - "\"span.destination.service.resource\"" - ], - "path": "x-pack/plugins/observability_shared/common/field_names/elasticsearch.ts", + "signature": ["\"span.destination.service.resource\""], + "path": "x-pack/plugins/observability_solution/observability_shared/common/field_names/elasticsearch.ts", "deprecated": false, "trackAdoption": false, "initialIsOpen": false @@ -5050,10 +4597,8 @@ "tags": [], "label": "SPAN_DESTINATION_SERVICE_RESPONSE_TIME_COUNT", "description": [], - "signature": [ - "\"span.destination.service.response_time.count\"" - ], - "path": "x-pack/plugins/observability_shared/common/field_names/elasticsearch.ts", + "signature": ["\"span.destination.service.response_time.count\""], + "path": "x-pack/plugins/observability_solution/observability_shared/common/field_names/elasticsearch.ts", "deprecated": false, "trackAdoption": false, "initialIsOpen": false @@ -5065,10 +4610,8 @@ "tags": [], "label": "SPAN_DESTINATION_SERVICE_RESPONSE_TIME_SUM", "description": [], - "signature": [ - "\"span.destination.service.response_time.sum.us\"" - ], - "path": "x-pack/plugins/observability_shared/common/field_names/elasticsearch.ts", + "signature": ["\"span.destination.service.response_time.sum.us\""], + "path": "x-pack/plugins/observability_solution/observability_shared/common/field_names/elasticsearch.ts", "deprecated": false, "trackAdoption": false, "initialIsOpen": false @@ -5080,10 +4623,8 @@ "tags": [], "label": "SPAN_DURATION", "description": [], - "signature": [ - "\"span.duration.us\"" - ], - "path": "x-pack/plugins/observability_shared/common/field_names/elasticsearch.ts", + "signature": ["\"span.duration.us\""], + "path": "x-pack/plugins/observability_solution/observability_shared/common/field_names/elasticsearch.ts", "deprecated": false, "trackAdoption": false, "initialIsOpen": false @@ -5095,10 +4636,8 @@ "tags": [], "label": "SPAN_ID", "description": [], - "signature": [ - "\"span.id\"" - ], - "path": "x-pack/plugins/observability_shared/common/field_names/elasticsearch.ts", + "signature": ["\"span.id\""], + "path": "x-pack/plugins/observability_solution/observability_shared/common/field_names/elasticsearch.ts", "deprecated": false, "trackAdoption": false, "initialIsOpen": false @@ -5110,10 +4649,8 @@ "tags": [], "label": "SPAN_NAME", "description": [], - "signature": [ - "\"span.name\"" - ], - "path": "x-pack/plugins/observability_shared/common/field_names/elasticsearch.ts", + "signature": ["\"span.name\""], + "path": "x-pack/plugins/observability_solution/observability_shared/common/field_names/elasticsearch.ts", "deprecated": false, "trackAdoption": false, "initialIsOpen": false @@ -5125,10 +4662,8 @@ "tags": [], "label": "SPAN_SELF_TIME_SUM", "description": [], - "signature": [ - "\"span.self_time.sum.us\"" - ], - "path": "x-pack/plugins/observability_shared/common/field_names/elasticsearch.ts", + "signature": ["\"span.self_time.sum.us\""], + "path": "x-pack/plugins/observability_solution/observability_shared/common/field_names/elasticsearch.ts", "deprecated": false, "trackAdoption": false, "initialIsOpen": false @@ -5140,10 +4675,8 @@ "tags": [], "label": "SPAN_SUBTYPE", "description": [], - "signature": [ - "\"span.subtype\"" - ], - "path": "x-pack/plugins/observability_shared/common/field_names/elasticsearch.ts", + "signature": ["\"span.subtype\""], + "path": "x-pack/plugins/observability_solution/observability_shared/common/field_names/elasticsearch.ts", "deprecated": false, "trackAdoption": false, "initialIsOpen": false @@ -5155,10 +4688,8 @@ "tags": [], "label": "SPAN_TYPE", "description": [], - "signature": [ - "\"span.type\"" - ], - "path": "x-pack/plugins/observability_shared/common/field_names/elasticsearch.ts", + "signature": ["\"span.type\""], + "path": "x-pack/plugins/observability_solution/observability_shared/common/field_names/elasticsearch.ts", "deprecated": false, "trackAdoption": false, "initialIsOpen": false @@ -5170,10 +4701,8 @@ "tags": [], "label": "SYNTHETICS_BLOCKED_TIMINGS", "description": [], - "signature": [ - "\"synthetics.payload.timings.blocked\"" - ], - "path": "x-pack/plugins/observability_shared/common/field_names/synthetics.ts", + "signature": ["\"synthetics.payload.timings.blocked\""], + "path": "x-pack/plugins/observability_solution/observability_shared/common/field_names/synthetics.ts", "deprecated": false, "trackAdoption": false, "initialIsOpen": false @@ -5185,10 +4714,8 @@ "tags": [], "label": "SYNTHETICS_CONNECT_TIMINGS", "description": [], - "signature": [ - "\"synthetics.payload.timings.connect\"" - ], - "path": "x-pack/plugins/observability_shared/common/field_names/synthetics.ts", + "signature": ["\"synthetics.payload.timings.connect\""], + "path": "x-pack/plugins/observability_solution/observability_shared/common/field_names/synthetics.ts", "deprecated": false, "trackAdoption": false, "initialIsOpen": false @@ -5200,10 +4727,8 @@ "tags": [], "label": "SYNTHETICS_DNS_TIMINGS", "description": [], - "signature": [ - "\"synthetics.payload.timings.dns\"" - ], - "path": "x-pack/plugins/observability_shared/common/field_names/synthetics.ts", + "signature": ["\"synthetics.payload.timings.dns\""], + "path": "x-pack/plugins/observability_solution/observability_shared/common/field_names/synthetics.ts", "deprecated": false, "trackAdoption": false, "initialIsOpen": false @@ -5215,10 +4740,8 @@ "tags": [], "label": "SYNTHETICS_RECEIVE_TIMINGS", "description": [], - "signature": [ - "\"synthetics.payload.timings.receive\"" - ], - "path": "x-pack/plugins/observability_shared/common/field_names/synthetics.ts", + "signature": ["\"synthetics.payload.timings.receive\""], + "path": "x-pack/plugins/observability_solution/observability_shared/common/field_names/synthetics.ts", "deprecated": false, "trackAdoption": false, "initialIsOpen": false @@ -5230,10 +4753,8 @@ "tags": [], "label": "SYNTHETICS_SEND_TIMINGS", "description": [], - "signature": [ - "\"synthetics.payload.timings.send\"" - ], - "path": "x-pack/plugins/observability_shared/common/field_names/synthetics.ts", + "signature": ["\"synthetics.payload.timings.send\""], + "path": "x-pack/plugins/observability_solution/observability_shared/common/field_names/synthetics.ts", "deprecated": false, "trackAdoption": false, "initialIsOpen": false @@ -5245,10 +4766,8 @@ "tags": [], "label": "SYNTHETICS_SSL_TIMINGS", "description": [], - "signature": [ - "\"synthetics.payload.timings.ssl\"" - ], - "path": "x-pack/plugins/observability_shared/common/field_names/synthetics.ts", + "signature": ["\"synthetics.payload.timings.ssl\""], + "path": "x-pack/plugins/observability_solution/observability_shared/common/field_names/synthetics.ts", "deprecated": false, "trackAdoption": false, "initialIsOpen": false @@ -5260,10 +4779,8 @@ "tags": [], "label": "SYNTHETICS_TOTAL_TIMINGS", "description": [], - "signature": [ - "\"synthetics.payload.timings.total\"" - ], - "path": "x-pack/plugins/observability_shared/common/field_names/synthetics.ts", + "signature": ["\"synthetics.payload.timings.total\""], + "path": "x-pack/plugins/observability_solution/observability_shared/common/field_names/synthetics.ts", "deprecated": false, "trackAdoption": false, "initialIsOpen": false @@ -5275,10 +4792,8 @@ "tags": [], "label": "SYNTHETICS_WAIT_TIMINGS", "description": [], - "signature": [ - "\"synthetics.payload.timings.wait\"" - ], - "path": "x-pack/plugins/observability_shared/common/field_names/synthetics.ts", + "signature": ["\"synthetics.payload.timings.wait\""], + "path": "x-pack/plugins/observability_solution/observability_shared/common/field_names/synthetics.ts", "deprecated": false, "trackAdoption": false, "initialIsOpen": false @@ -5290,10 +4805,8 @@ "tags": [], "label": "TBT_FIELD", "description": [], - "signature": [ - "\"transaction.experience.tbt\"" - ], - "path": "x-pack/plugins/observability_shared/common/field_names/elasticsearch.ts", + "signature": ["\"transaction.experience.tbt\""], + "path": "x-pack/plugins/observability_solution/observability_shared/common/field_names/elasticsearch.ts", "deprecated": false, "trackAdoption": false, "initialIsOpen": false @@ -5305,10 +4818,8 @@ "tags": [], "label": "TRACE_ID", "description": [], - "signature": [ - "\"trace.id\"" - ], - "path": "x-pack/plugins/observability_shared/common/field_names/elasticsearch.ts", + "signature": ["\"trace.id\""], + "path": "x-pack/plugins/observability_solution/observability_shared/common/field_names/elasticsearch.ts", "deprecated": false, "trackAdoption": false, "initialIsOpen": false @@ -5320,10 +4831,8 @@ "tags": [], "label": "TRANSACTION_DOM_INTERACTIVE", "description": [], - "signature": [ - "\"transaction.marks.agent.domInteractive\"" - ], - "path": "x-pack/plugins/observability_shared/common/field_names/elasticsearch.ts", + "signature": ["\"transaction.marks.agent.domInteractive\""], + "path": "x-pack/plugins/observability_solution/observability_shared/common/field_names/elasticsearch.ts", "deprecated": false, "trackAdoption": false, "initialIsOpen": false @@ -5335,10 +4844,8 @@ "tags": [], "label": "TRANSACTION_DURATION", "description": [], - "signature": [ - "\"transaction.duration.us\"" - ], - "path": "x-pack/plugins/observability_shared/common/field_names/elasticsearch.ts", + "signature": ["\"transaction.duration.us\""], + "path": "x-pack/plugins/observability_solution/observability_shared/common/field_names/elasticsearch.ts", "deprecated": false, "trackAdoption": false, "initialIsOpen": false @@ -5350,10 +4857,8 @@ "tags": [], "label": "TRANSACTION_DURATION_HISTOGRAM", "description": [], - "signature": [ - "\"transaction.duration.histogram\"" - ], - "path": "x-pack/plugins/observability_shared/common/field_names/elasticsearch.ts", + "signature": ["\"transaction.duration.histogram\""], + "path": "x-pack/plugins/observability_solution/observability_shared/common/field_names/elasticsearch.ts", "deprecated": false, "trackAdoption": false, "initialIsOpen": false @@ -5365,10 +4870,8 @@ "tags": [], "label": "TRANSACTION_ID", "description": [], - "signature": [ - "\"transaction.id\"" - ], - "path": "x-pack/plugins/observability_shared/common/field_names/elasticsearch.ts", + "signature": ["\"transaction.id\""], + "path": "x-pack/plugins/observability_solution/observability_shared/common/field_names/elasticsearch.ts", "deprecated": false, "trackAdoption": false, "initialIsOpen": false @@ -5380,10 +4883,8 @@ "tags": [], "label": "TRANSACTION_NAME", "description": [], - "signature": [ - "\"transaction.name\"" - ], - "path": "x-pack/plugins/observability_shared/common/field_names/elasticsearch.ts", + "signature": ["\"transaction.name\""], + "path": "x-pack/plugins/observability_solution/observability_shared/common/field_names/elasticsearch.ts", "deprecated": false, "trackAdoption": false, "initialIsOpen": false @@ -5395,10 +4896,8 @@ "tags": [], "label": "TRANSACTION_PAGE_URL", "description": [], - "signature": [ - "\"transaction.page.url\"" - ], - "path": "x-pack/plugins/observability_shared/common/field_names/elasticsearch.ts", + "signature": ["\"transaction.page.url\""], + "path": "x-pack/plugins/observability_solution/observability_shared/common/field_names/elasticsearch.ts", "deprecated": false, "trackAdoption": false, "initialIsOpen": false @@ -5410,10 +4909,8 @@ "tags": [], "label": "TRANSACTION_RESULT", "description": [], - "signature": [ - "\"transaction.result\"" - ], - "path": "x-pack/plugins/observability_shared/common/field_names/elasticsearch.ts", + "signature": ["\"transaction.result\""], + "path": "x-pack/plugins/observability_solution/observability_shared/common/field_names/elasticsearch.ts", "deprecated": false, "trackAdoption": false, "initialIsOpen": false @@ -5425,10 +4922,8 @@ "tags": [], "label": "TRANSACTION_ROOT", "description": [], - "signature": [ - "\"transaction.root\"" - ], - "path": "x-pack/plugins/observability_shared/common/field_names/elasticsearch.ts", + "signature": ["\"transaction.root\""], + "path": "x-pack/plugins/observability_solution/observability_shared/common/field_names/elasticsearch.ts", "deprecated": false, "trackAdoption": false, "initialIsOpen": false @@ -5440,10 +4935,8 @@ "tags": [], "label": "TRANSACTION_SAMPLED", "description": [], - "signature": [ - "\"transaction.sampled\"" - ], - "path": "x-pack/plugins/observability_shared/common/field_names/elasticsearch.ts", + "signature": ["\"transaction.sampled\""], + "path": "x-pack/plugins/observability_solution/observability_shared/common/field_names/elasticsearch.ts", "deprecated": false, "trackAdoption": false, "initialIsOpen": false @@ -5455,10 +4948,8 @@ "tags": [], "label": "TRANSACTION_TIME_TO_FIRST_BYTE", "description": [], - "signature": [ - "\"transaction.marks.agent.timeToFirstByte\"" - ], - "path": "x-pack/plugins/observability_shared/common/field_names/elasticsearch.ts", + "signature": ["\"transaction.marks.agent.timeToFirstByte\""], + "path": "x-pack/plugins/observability_solution/observability_shared/common/field_names/elasticsearch.ts", "deprecated": false, "trackAdoption": false, "initialIsOpen": false @@ -5470,10 +4961,8 @@ "tags": [], "label": "TRANSACTION_TYPE", "description": [], - "signature": [ - "\"transaction.type\"" - ], - "path": "x-pack/plugins/observability_shared/common/field_names/elasticsearch.ts", + "signature": ["\"transaction.type\""], + "path": "x-pack/plugins/observability_solution/observability_shared/common/field_names/elasticsearch.ts", "deprecated": false, "trackAdoption": false, "initialIsOpen": false @@ -5485,10 +4974,8 @@ "tags": [], "label": "TRANSACTION_URL", "description": [], - "signature": [ - "\"url.full\"" - ], - "path": "x-pack/plugins/observability_shared/common/field_names/elasticsearch.ts", + "signature": ["\"url.full\""], + "path": "x-pack/plugins/observability_solution/observability_shared/common/field_names/elasticsearch.ts", "deprecated": false, "trackAdoption": false, "initialIsOpen": false @@ -5500,10 +4987,8 @@ "tags": [], "label": "URL_FULL", "description": [], - "signature": [ - "\"url.full\"" - ], - "path": "x-pack/plugins/observability_shared/common/field_names/elasticsearch.ts", + "signature": ["\"url.full\""], + "path": "x-pack/plugins/observability_solution/observability_shared/common/field_names/elasticsearch.ts", "deprecated": false, "trackAdoption": false, "initialIsOpen": false @@ -5515,10 +5000,8 @@ "tags": [], "label": "USER_AGENT_DEVICE", "description": [], - "signature": [ - "\"user_agent.device.name\"" - ], - "path": "x-pack/plugins/observability_shared/common/field_names/elasticsearch.ts", + "signature": ["\"user_agent.device.name\""], + "path": "x-pack/plugins/observability_solution/observability_shared/common/field_names/elasticsearch.ts", "deprecated": false, "trackAdoption": false, "initialIsOpen": false @@ -5530,10 +5013,8 @@ "tags": [], "label": "USER_AGENT_NAME", "description": [], - "signature": [ - "\"user_agent.name\"" - ], - "path": "x-pack/plugins/observability_shared/common/field_names/elasticsearch.ts", + "signature": ["\"user_agent.name\""], + "path": "x-pack/plugins/observability_solution/observability_shared/common/field_names/elasticsearch.ts", "deprecated": false, "trackAdoption": false, "initialIsOpen": false @@ -5545,10 +5026,8 @@ "tags": [], "label": "USER_AGENT_ORIGINAL", "description": [], - "signature": [ - "\"user_agent.original\"" - ], - "path": "x-pack/plugins/observability_shared/common/field_names/elasticsearch.ts", + "signature": ["\"user_agent.original\""], + "path": "x-pack/plugins/observability_solution/observability_shared/common/field_names/elasticsearch.ts", "deprecated": false, "trackAdoption": false, "initialIsOpen": false @@ -5560,10 +5039,8 @@ "tags": [], "label": "USER_AGENT_OS", "description": [], - "signature": [ - "\"user_agent.os.name\"" - ], - "path": "x-pack/plugins/observability_shared/common/field_names/elasticsearch.ts", + "signature": ["\"user_agent.os.name\""], + "path": "x-pack/plugins/observability_solution/observability_shared/common/field_names/elasticsearch.ts", "deprecated": false, "trackAdoption": false, "initialIsOpen": false @@ -5575,10 +5052,8 @@ "tags": [], "label": "USER_AGENT_OS_VERSION", "description": [], - "signature": [ - "\"user_agent.os.version\"" - ], - "path": "x-pack/plugins/observability_shared/common/field_names/elasticsearch.ts", + "signature": ["\"user_agent.os.version\""], + "path": "x-pack/plugins/observability_solution/observability_shared/common/field_names/elasticsearch.ts", "deprecated": false, "trackAdoption": false, "initialIsOpen": false @@ -5590,10 +5065,8 @@ "tags": [], "label": "USER_AGENT_VERSION", "description": [], - "signature": [ - "\"user_agent.version\"" - ], - "path": "x-pack/plugins/observability_shared/common/field_names/elasticsearch.ts", + "signature": ["\"user_agent.version\""], + "path": "x-pack/plugins/observability_solution/observability_shared/common/field_names/elasticsearch.ts", "deprecated": false, "trackAdoption": false, "initialIsOpen": false @@ -5605,10 +5078,8 @@ "tags": [], "label": "USER_ID", "description": [], - "signature": [ - "\"user.id\"" - ], - "path": "x-pack/plugins/observability_shared/common/field_names/elasticsearch.ts", + "signature": ["\"user.id\""], + "path": "x-pack/plugins/observability_solution/observability_shared/common/field_names/elasticsearch.ts", "deprecated": false, "trackAdoption": false, "initialIsOpen": false @@ -5616,4 +5087,4 @@ ], "objects": [] } -} \ No newline at end of file +} diff --git a/api_docs/observability_shared.mdx b/api_docs/observability_shared.mdx index 6cab17e76e71c..cde799925bb1a 100644 --- a/api_docs/observability_shared.mdx +++ b/api_docs/observability_shared.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/observabilityShared title: "observabilityShared" image: https://source.unsplash.com/400x175/?github description: API docs for the observabilityShared plugin -date: 2024-02-19 +date: 2024-02-22 tags: ['contributor', 'dev', 'apidocs', 'kibana', 'observabilityShared'] --- import observabilitySharedObj from './observability_shared.devdocs.json'; diff --git a/api_docs/osquery.mdx b/api_docs/osquery.mdx index 1ed21aa10e09e..bac1c7efac920 100644 --- a/api_docs/osquery.mdx +++ b/api_docs/osquery.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/osquery title: "osquery" image: https://source.unsplash.com/400x175/?github description: API docs for the osquery plugin -date: 2024-02-19 +date: 2024-02-22 tags: ['contributor', 'dev', 'apidocs', 'kibana', 'osquery'] --- import osqueryObj from './osquery.devdocs.json'; diff --git a/api_docs/painless_lab.mdx b/api_docs/painless_lab.mdx index 20705c6b48506..372f1e047230f 100644 --- a/api_docs/painless_lab.mdx +++ b/api_docs/painless_lab.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/painlessLab title: "painlessLab" image: https://source.unsplash.com/400x175/?github description: API docs for the painlessLab plugin -date: 2024-02-19 +date: 2024-02-22 tags: ['contributor', 'dev', 'apidocs', 'kibana', 'painlessLab'] --- import painlessLabObj from './painless_lab.devdocs.json'; diff --git a/api_docs/plugin_directory.mdx b/api_docs/plugin_directory.mdx index 53985b0e0dbb6..091a2829400c2 100644 --- a/api_docs/plugin_directory.mdx +++ b/api_docs/plugin_directory.mdx @@ -7,7 +7,7 @@ id: kibDevDocsPluginDirectory slug: /kibana-dev-docs/api-meta/plugin-api-directory title: Directory description: Directory of public APIs available through plugins or packages. -date: 2024-02-19 +date: 2024-02-22 tags: ['contributor', 'dev', 'apidocs', 'kibana'] --- @@ -15,13 +15,13 @@ tags: ['contributor', 'dev', 'apidocs', 'kibana'] | Count | Plugins or Packages with a
public API | Number of teams | |--------------|----------|------------------------| -| 752 | 644 | 40 | +| 753 | 645 | 40 | ### Public API health stats | API Count | Any Count | Missing comments | Missing exports | |--------------|----------|-----------------|--------| -| 45094 | 231 | 34037 | 1745 | +| 45130 | 231 | 34074 | 1746 | ## Plugin Directory @@ -91,7 +91,7 @@ tags: ['contributor', 'dev', 'apidocs', 'kibana'] | | [@elastic/kibana-presentation](https://github.com/orgs/elastic/teams/kibana-presentation) | Adds 'shape' function and renderer to expressions | 148 | 0 | 146 | 0 | | | [@elastic/kibana-visualizations](https://github.com/orgs/elastic/teams/kibana-visualizations) | Expression Tagcloud plugin adds a `tagcloud` renderer and function to the expression plugin. The renderer will display the `Wordcloud` chart. | 6 | 0 | 6 | 2 | | | [@elastic/kibana-visualizations](https://github.com/orgs/elastic/teams/kibana-visualizations) | Expression XY plugin adds a `xy` renderer and function to the expression plugin. The renderer will display the `xy` chart. | 177 | 0 | 167 | 13 | -| | [@elastic/kibana-visualizations](https://github.com/orgs/elastic/teams/kibana-visualizations) | Adds expression runtime to Kibana | 2224 | 17 | 1762 | 5 | +| | [@elastic/kibana-visualizations](https://github.com/orgs/elastic/teams/kibana-visualizations) | Adds expression runtime to Kibana | 2216 | 17 | 1757 | 5 | | | [@elastic/kibana-core](https://github.com/orgs/elastic/teams/kibana-core) | - | 235 | 0 | 99 | 2 | | | [@elastic/kibana-data-discovery](https://github.com/orgs/elastic/teams/kibana-data-discovery) | Index pattern fields and ambiguous values formatters | 292 | 5 | 253 | 3 | | | [@elastic/kibana-gis](https://github.com/orgs/elastic/teams/kibana-gis) | The file upload plugin contains components and services for uploading a file, analyzing its data, and then importing the data into an Elasticsearch index. Supported file types include CSV, TSV, newline-delimited JSON and GeoJSON. | 84 | 0 | 84 | 8 | @@ -119,13 +119,13 @@ tags: ['contributor', 'dev', 'apidocs', 'kibana'] | kibanaUsageCollection | [@elastic/kibana-core](https://github.com/orgs/elastic/teams/kibana-core) | - | 0 | 0 | 0 | 0 | | | [@elastic/appex-sharedux](https://github.com/orgs/elastic/teams/appex-sharedux) | - | 609 | 3 | 416 | 9 | | | [@elastic/kibana-cloud-security-posture](https://github.com/orgs/elastic/teams/kibana-cloud-security-posture) | - | 5 | 0 | 5 | 1 | -| | [@elastic/kibana-visualizations](https://github.com/orgs/elastic/teams/kibana-visualizations) | Visualization editor allowing to quickly and easily configure compelling visualizations to use on dashboards and canvas workpads. Exposes components to embed visualizations and link into the Lens editor from within other apps in Kibana. | 662 | 0 | 561 | 61 | +| | [@elastic/kibana-visualizations](https://github.com/orgs/elastic/teams/kibana-visualizations) | Visualization editor allowing to quickly and easily configure compelling visualizations to use on dashboards and canvas workpads. Exposes components to embed visualizations and link into the Lens editor from within other apps in Kibana. | 663 | 0 | 562 | 61 | | | [@elastic/platform-deployment-management](https://github.com/orgs/elastic/teams/platform-deployment-management) | - | 8 | 0 | 8 | 0 | | | [@elastic/platform-deployment-management](https://github.com/orgs/elastic/teams/platform-deployment-management) | - | 4 | 0 | 4 | 1 | | | [@elastic/kibana-core](https://github.com/orgs/elastic/teams/kibana-core) | - | 117 | 0 | 42 | 10 | | | [@elastic/kibana-presentation](https://github.com/orgs/elastic/teams/kibana-presentation) | A dashboard panel for creating links to dashboards or external links. | 57 | 0 | 57 | 6 | | | [@elastic/security-detection-engine](https://github.com/orgs/elastic/teams/security-detection-engine) | - | 226 | 0 | 97 | 52 | -| | [@elastic/obs-ux-logs-team](https://github.com/orgs/elastic/teams/obs-ux-logs-team) | This plugin provides a LogsExplorer component using the Discover customization framework, offering several affordances specifically designed for log consumption. | 110 | 3 | 110 | 22 | +| | [@elastic/obs-ux-logs-team](https://github.com/orgs/elastic/teams/obs-ux-logs-team) | This plugin provides a LogsExplorer component using the Discover customization framework, offering several affordances specifically designed for log consumption. | 119 | 3 | 119 | 22 | | | [@elastic/obs-ux-logs-team](https://github.com/orgs/elastic/teams/obs-ux-logs-team) | Exposes the shared components and APIs to access and visualize logs. | 302 | 0 | 276 | 32 | | logstash | [@elastic/logstash](https://github.com/orgs/elastic/teams/logstash) | - | 0 | 0 | 0 | 0 | | | [@elastic/platform-deployment-management](https://github.com/orgs/elastic/teams/platform-deployment-management) | - | 45 | 0 | 45 | 7 | @@ -142,7 +142,7 @@ tags: ['contributor', 'dev', 'apidocs', 'kibana'] | | [@elastic/appex-sharedux](https://github.com/orgs/elastic/teams/appex-sharedux) | - | 2 | 0 | 2 | 1 | | | [@elastic/obs-ux-management-team](https://github.com/orgs/elastic/teams/obs-ux-management-team) | - | 649 | 2 | 640 | 17 | | | [@elastic/obs-knowledge-team](https://github.com/orgs/elastic/teams/obs-knowledge-team) | - | 78 | 0 | 76 | 14 | -| | [@elastic/obs-ux-logs-team](https://github.com/orgs/elastic/teams/obs-ux-logs-team) | This plugin exposes and registers observability log consumption features. | 19 | 0 | 19 | 1 | +| | [@elastic/obs-ux-logs-team](https://github.com/orgs/elastic/teams/obs-ux-logs-team) | This plugin exposes and registers observability log consumption features. | 20 | 0 | 20 | 1 | | | [@elastic/obs-ux-logs-team](https://github.com/orgs/elastic/teams/obs-ux-logs-team) | - | 14 | 0 | 14 | 0 | | | [@elastic/observability-ui](https://github.com/orgs/elastic/teams/observability-ui) | - | 330 | 1 | 325 | 19 | | | [@elastic/security-defend-workflows](https://github.com/orgs/elastic/teams/security-defend-workflows) | - | 23 | 0 | 23 | 7 | @@ -247,7 +247,7 @@ tags: ['contributor', 'dev', 'apidocs', 'kibana'] | | [@elastic/kibana-visualizations](https://github.com/orgs/elastic/teams/kibana-visualizations) | - | 7 | 0 | 7 | 1 | | | [@elastic/response-ops](https://github.com/orgs/elastic/teams/response-ops) | - | 19 | 0 | 16 | 0 | | | [@elastic/security-threat-hunting-explore](https://github.com/orgs/elastic/teams/security-threat-hunting-explore) | - | 60 | 1 | 42 | 3 | -| | [@elastic/kibana-visualizations](https://github.com/orgs/elastic/teams/kibana-visualizations) | - | 27 | 0 | 22 | 0 | +| | [@elastic/kibana-visualizations](https://github.com/orgs/elastic/teams/kibana-visualizations) | - | 23 | 0 | 19 | 0 | | | [@elastic/kibana-visualizations](https://github.com/orgs/elastic/teams/kibana-visualizations) | - | 78 | 0 | 78 | 0 | | | [@elastic/kibana-operations](https://github.com/orgs/elastic/teams/kibana-operations) | - | 7 | 0 | 2 | 0 | | | [@elastic/kibana-operations](https://github.com/orgs/elastic/teams/kibana-operations) | - | 3 | 0 | 3 | 0 | @@ -415,7 +415,7 @@ tags: ['contributor', 'dev', 'apidocs', 'kibana'] | | [@elastic/appex-sharedux](https://github.com/orgs/elastic/teams/appex-sharedux) | - | 33 | 2 | 20 | 1 | | | [@elastic/appex-sharedux](https://github.com/orgs/elastic/teams/appex-sharedux) | - | 11 | 1 | 11 | 3 | | | [@elastic/appex-sharedux](https://github.com/orgs/elastic/teams/appex-sharedux) | - | 8 | 0 | 8 | 0 | -| | [@elastic/appex-sharedux](https://github.com/orgs/elastic/teams/appex-sharedux) | - | 27 | 0 | 4 | 0 | +| | [@elastic/appex-sharedux](https://github.com/orgs/elastic/teams/appex-sharedux) | - | 30 | 0 | 6 | 0 | | | [@elastic/appex-sharedux](https://github.com/orgs/elastic/teams/appex-sharedux) | - | 37 | 1 | 19 | 0 | | | [@elastic/appex-sharedux](https://github.com/orgs/elastic/teams/appex-sharedux) | - | 18 | 1 | 17 | 3 | | | [@elastic/appex-sharedux](https://github.com/orgs/elastic/teams/appex-sharedux) | - | 6 | 0 | 6 | 0 | @@ -439,7 +439,7 @@ tags: ['contributor', 'dev', 'apidocs', 'kibana'] | | [@elastic/platform-deployment-management](https://github.com/orgs/elastic/teams/platform-deployment-management) | - | 5 | 0 | 5 | 0 | | | [@elastic/platform-deployment-management](https://github.com/orgs/elastic/teams/platform-deployment-management) | - | 4 | 0 | 4 | 0 | | | [@elastic/ml-ui](https://github.com/orgs/elastic/teams/ml-ui) | - | 3 | 0 | 3 | 0 | -| | [@elastic/obs-ux-logs-team](https://github.com/orgs/elastic/teams/obs-ux-logs-team) | - | 34 | 0 | 24 | 0 | +| | [@elastic/obs-ux-logs-team](https://github.com/orgs/elastic/teams/obs-ux-logs-team) | - | 37 | 0 | 26 | 0 | | | [@elastic/enterprise-search-frontend](https://github.com/orgs/elastic/teams/enterprise-search-frontend) | - | 4 | 0 | 4 | 0 | | | [@elastic/kibana-data-discovery](https://github.com/orgs/elastic/teams/kibana-data-discovery) | - | 8 | 0 | 8 | 0 | | | [@elastic/platform-deployment-management](https://github.com/orgs/elastic/teams/platform-deployment-management) | - | 8 | 0 | 8 | 0 | @@ -507,7 +507,7 @@ tags: ['contributor', 'dev', 'apidocs', 'kibana'] | | [@elastic/platform-deployment-management](https://github.com/orgs/elastic/teams/platform-deployment-management) | - | 23 | 0 | 7 | 0 | | | [@elastic/platform-deployment-management](https://github.com/orgs/elastic/teams/platform-deployment-management) | - | 8 | 0 | 2 | 3 | | | [@elastic/platform-deployment-management](https://github.com/orgs/elastic/teams/platform-deployment-management) | - | 45 | 0 | 0 | 0 | -| | [@elastic/appex-sharedux @elastic/platform-deployment-management](https://github.com/orgs/elastic/teams/appex-sharedux ) | - | 134 | 0 | 132 | 0 | +| | [@elastic/appex-sharedux @elastic/platform-deployment-management](https://github.com/orgs/elastic/teams/appex-sharedux ) | - | 135 | 0 | 132 | 0 | | | [@elastic/appex-sharedux @elastic/platform-deployment-management](https://github.com/orgs/elastic/teams/appex-sharedux ) | - | 20 | 0 | 11 | 0 | | | [@elastic/platform-deployment-management](https://github.com/orgs/elastic/teams/platform-deployment-management) | - | 88 | 0 | 10 | 0 | | | [@elastic/platform-deployment-management](https://github.com/orgs/elastic/teams/platform-deployment-management) | - | 56 | 0 | 6 | 0 | @@ -540,7 +540,7 @@ tags: ['contributor', 'dev', 'apidocs', 'kibana'] | | [@elastic/ml-ui](https://github.com/orgs/elastic/teams/ml-ui) | - | 18 | 0 | 18 | 0 | | | [@elastic/ml-ui](https://github.com/orgs/elastic/teams/ml-ui) | - | 31 | 1 | 24 | 1 | | | [@elastic/kibana-security](https://github.com/orgs/elastic/teams/kibana-security) | - | 22 | 0 | 16 | 0 | -| | [@elastic/appex-sharedux](https://github.com/orgs/elastic/teams/appex-sharedux) | - | 105 | 0 | 105 | 2 | +| | [@elastic/appex-sharedux](https://github.com/orgs/elastic/teams/appex-sharedux) | - | 106 | 0 | 106 | 2 | | | [@elastic/appex-sharedux](https://github.com/orgs/elastic/teams/appex-sharedux) | - | 55 | 1 | 50 | 0 | | | [@elastic/obs-ux-management-team](https://github.com/orgs/elastic/teams/obs-ux-management-team) | - | 10 | 0 | 10 | 2 | | | [@elastic/obs-ux-management-team](https://github.com/orgs/elastic/teams/obs-ux-management-team) | - | 99 | 1 | 99 | 0 | @@ -588,7 +588,7 @@ tags: ['contributor', 'dev', 'apidocs', 'kibana'] | | [@elastic/security-detections-response](https://github.com/orgs/elastic/teams/security-detections-response) | - | 122 | 0 | 119 | 0 | | | [@elastic/appex-sharedux](https://github.com/orgs/elastic/teams/appex-sharedux) | - | 2 | 0 | 2 | 0 | | | [@elastic/enterprise-search-frontend](https://github.com/orgs/elastic/teams/enterprise-search-frontend) | - | 76 | 0 | 76 | 0 | -| | [@elastic/enterprise-search-frontend](https://github.com/orgs/elastic/teams/enterprise-search-frontend) | - | 3084 | 0 | 3084 | 0 | +| | [@elastic/enterprise-search-frontend](https://github.com/orgs/elastic/teams/enterprise-search-frontend) | - | 3104 | 0 | 3104 | 0 | | | [@elastic/kibana-data-discovery](https://github.com/orgs/elastic/teams/kibana-data-discovery) | - | 18 | 1 | 17 | 1 | | | [@elastic/enterprise-search-frontend](https://github.com/orgs/elastic/teams/enterprise-search-frontend) | - | 25 | 0 | 25 | 0 | | | [@elastic/kibana-data-discovery](https://github.com/orgs/elastic/teams/kibana-data-discovery) | - | 20 | 0 | 18 | 1 | @@ -601,7 +601,7 @@ tags: ['contributor', 'dev', 'apidocs', 'kibana'] | | [@elastic/security-threat-hunting-explore](https://github.com/orgs/elastic/teams/security-threat-hunting-explore) | - | 29 | 0 | 23 | 0 | | | [@elastic/security-threat-hunting-explore](https://github.com/orgs/elastic/teams/security-threat-hunting-explore) | - | 2 | 0 | 0 | 0 | | | [@elastic/security-detection-engine](https://github.com/orgs/elastic/teams/security-detection-engine) | - | 56 | 1 | 41 | 1 | -| | [@elastic/security-threat-hunting-investigations](https://github.com/orgs/elastic/teams/security-threat-hunting-investigations) | - | 95 | 0 | 72 | 7 | +| | [@elastic/security-threat-hunting-investigations](https://github.com/orgs/elastic/teams/security-threat-hunting-investigations) | - | 94 | 0 | 71 | 7 | | | [@elastic/security-threat-hunting-explore](https://github.com/orgs/elastic/teams/security-threat-hunting-explore) | - | 341 | 1 | 337 | 32 | | | [@elastic/security-detection-engine](https://github.com/orgs/elastic/teams/security-detection-engine) | - | 87 | 0 | 76 | 1 | | | [@elastic/security-detection-engine](https://github.com/orgs/elastic/teams/security-detection-engine) | - | 105 | 0 | 94 | 1 | @@ -677,13 +677,14 @@ tags: ['contributor', 'dev', 'apidocs', 'kibana'] | | [@elastic/kibana-operations](https://github.com/orgs/elastic/teams/kibana-operations) | - | 137 | 5 | 105 | 2 | | | [@elastic/kibana-operations](https://github.com/orgs/elastic/teams/kibana-operations) | - | 2 | 0 | 1 | 0 | | | [@elastic/kibana-visualizations](https://github.com/orgs/elastic/teams/kibana-visualizations) | - | 31 | 0 | 13 | 0 | +| | [@elastic/obs-ux-logs-team](https://github.com/orgs/elastic/teams/obs-ux-logs-team) | - | 8 | 0 | 8 | 0 | | | [@elastic/kibana-operations](https://github.com/orgs/elastic/teams/kibana-operations) | - | 72 | 0 | 55 | 0 | | | [@elastic/response-ops](https://github.com/orgs/elastic/teams/response-ops) | - | 11 | 0 | 11 | 0 | | | [@elastic/kibana-operations](https://github.com/orgs/elastic/teams/kibana-operations) | - | 39 | 0 | 25 | 1 | | | [@elastic/obs-knowledge-team](https://github.com/orgs/elastic/teams/obs-knowledge-team) | - | 86 | 0 | 86 | 1 | | | [@elastic/appex-sharedux](https://github.com/orgs/elastic/teams/appex-sharedux) | - | 42 | 0 | 28 | 0 | | | [@elastic/kibana-operations](https://github.com/orgs/elastic/teams/kibana-operations) | - | 55 | 0 | 46 | 0 | -| | [@elastic/kibana-operations](https://github.com/orgs/elastic/teams/kibana-operations) | - | 7 | 0 | 6 | 0 | +| | [@elastic/kibana-operations](https://github.com/orgs/elastic/teams/kibana-operations) | - | 9 | 0 | 8 | 0 | | | [@elastic/kibana-data-discovery](https://github.com/orgs/elastic/teams/kibana-data-discovery) | Contains functionality for the unified data table which can be integrated into apps | 143 | 0 | 78 | 1 | | | [@elastic/kibana-data-discovery](https://github.com/orgs/elastic/teams/kibana-data-discovery) | - | 14 | 0 | 13 | 6 | | | [@elastic/kibana-data-discovery](https://github.com/orgs/elastic/teams/kibana-data-discovery) | Contains functionality for the field list and field stats which can be integrated into apps | 291 | 0 | 267 | 10 | diff --git a/api_docs/presentation_panel.mdx b/api_docs/presentation_panel.mdx index c108c6e617302..b0b380ca76141 100644 --- a/api_docs/presentation_panel.mdx +++ b/api_docs/presentation_panel.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/presentationPanel title: "presentationPanel" image: https://source.unsplash.com/400x175/?github description: API docs for the presentationPanel plugin -date: 2024-02-19 +date: 2024-02-22 tags: ['contributor', 'dev', 'apidocs', 'kibana', 'presentationPanel'] --- import presentationPanelObj from './presentation_panel.devdocs.json'; diff --git a/api_docs/presentation_util.mdx b/api_docs/presentation_util.mdx index df7ac746ed342..9f90fbc240c7b 100644 --- a/api_docs/presentation_util.mdx +++ b/api_docs/presentation_util.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/presentationUtil title: "presentationUtil" image: https://source.unsplash.com/400x175/?github description: API docs for the presentationUtil plugin -date: 2024-02-19 +date: 2024-02-22 tags: ['contributor', 'dev', 'apidocs', 'kibana', 'presentationUtil'] --- import presentationUtilObj from './presentation_util.devdocs.json'; diff --git a/api_docs/profiling.devdocs.json b/api_docs/profiling.devdocs.json index 6889fdd47e14e..22ec96dd7c083 100644 --- a/api_docs/profiling.devdocs.json +++ b/api_docs/profiling.devdocs.json @@ -14,10 +14,8 @@ "tags": [], "label": "ProfilingPluginStart", "description": [], - "signature": [ - "void" - ], - "path": "x-pack/plugins/profiling/public/plugin.tsx", + "signature": ["void"], + "path": "x-pack/plugins/observability_solution/profiling/public/plugin.tsx", "deprecated": false, "trackAdoption": false, "lifecycle": "start", @@ -40,7 +38,7 @@ "signature": [ "{ readonly telemetry?: boolean | undefined; readonly host?: string | undefined; readonly tls_enabled?: boolean | undefined; readonly tls_supported_protocols?: string[] | undefined; readonly tls_certificate_path?: string | undefined; readonly tls_key_path?: string | undefined; }" ], - "path": "x-pack/plugins/profiling/server/index.ts", + "path": "x-pack/plugins/observability_solution/profiling/server/index.ts", "deprecated": false, "trackAdoption": false, "initialIsOpen": false @@ -55,7 +53,7 @@ "signature": [ "{ readonly elasticsearch?: Readonly<{} & { username: string; hosts: string; password: string; }> | undefined; readonly symbolizer?: Readonly<{ telemetry?: boolean | undefined; host?: string | undefined; tls_enabled?: boolean | undefined; tls_supported_protocols?: string[] | undefined; tls_certificate_path?: string | undefined; tls_key_path?: string | undefined; } & {}> | undefined; readonly collector?: Readonly<{ telemetry?: boolean | undefined; host?: string | undefined; tls_enabled?: boolean | undefined; tls_supported_protocols?: string[] | undefined; tls_certificate_path?: string | undefined; tls_key_path?: string | undefined; } & {}> | undefined; readonly enabled: boolean; }" ], - "path": "x-pack/plugins/profiling/server/index.ts", + "path": "x-pack/plugins/observability_solution/profiling/server/index.ts", "deprecated": false, "trackAdoption": false, "initialIsOpen": false @@ -69,7 +67,7 @@ "tags": [], "label": "ProfilingPluginSetup", "description": [], - "path": "x-pack/plugins/profiling/server/types.ts", + "path": "x-pack/plugins/observability_solution/profiling/server/types.ts", "deprecated": false, "trackAdoption": false, "children": [], @@ -83,7 +81,7 @@ "tags": [], "label": "ProfilingPluginStart", "description": [], - "path": "x-pack/plugins/profiling/server/types.ts", + "path": "x-pack/plugins/observability_solution/profiling/server/types.ts", "deprecated": false, "trackAdoption": false, "children": [], @@ -104,7 +102,7 @@ "signature": [ "() => { TopN: string; TopNContainers: string; TopNDeployments: string; TopNFunctions: string; TopNHosts: string; TopNThreads: string; TopNTraces: string; Flamechart: string; HasSetupESResources: string; SetupDataCollectionInstructions: string; StorageExplorerSummary: string; StorageExplorerHostStorageDetails: string; StorageExplorerIndicesStorageDetails: string; }" ], - "path": "x-pack/plugins/profiling/common/index.ts", + "path": "x-pack/plugins/observability_solution/profiling/common/index.ts", "deprecated": false, "trackAdoption": false, "children": [], @@ -118,10 +116,8 @@ "tags": [], "label": "timeRangeFromRequest", "description": [], - "signature": [ - "(request: any) => [number, number]" - ], - "path": "x-pack/plugins/profiling/common/index.ts", + "signature": ["(request: any) => [number, number]"], + "path": "x-pack/plugins/observability_solution/profiling/common/index.ts", "deprecated": false, "trackAdoption": false, "children": [ @@ -132,10 +128,8 @@ "tags": [], "label": "request", "description": [], - "signature": [ - "any" - ], - "path": "x-pack/plugins/profiling/common/index.ts", + "signature": ["any"], + "path": "x-pack/plugins/observability_solution/profiling/common/index.ts", "deprecated": false, "trackAdoption": false, "isRequired": true @@ -155,10 +149,8 @@ "tags": [], "label": "INDEX_EVENTS", "description": [], - "signature": [ - "\"profiling-events-all\"" - ], - "path": "x-pack/plugins/profiling/common/index.ts", + "signature": ["\"profiling-events-all\""], + "path": "x-pack/plugins/observability_solution/profiling/common/index.ts", "deprecated": false, "trackAdoption": false, "initialIsOpen": false @@ -170,10 +162,8 @@ "tags": [], "label": "INDEX_EXECUTABLES", "description": [], - "signature": [ - "\"profiling-executables\"" - ], - "path": "x-pack/plugins/profiling/common/index.ts", + "signature": ["\"profiling-executables\""], + "path": "x-pack/plugins/observability_solution/profiling/common/index.ts", "deprecated": false, "trackAdoption": false, "initialIsOpen": false @@ -185,10 +175,8 @@ "tags": [], "label": "INDEX_FRAMES", "description": [], - "signature": [ - "\"profiling-stackframes\"" - ], - "path": "x-pack/plugins/profiling/common/index.ts", + "signature": ["\"profiling-stackframes\""], + "path": "x-pack/plugins/observability_solution/profiling/common/index.ts", "deprecated": false, "trackAdoption": false, "initialIsOpen": false @@ -200,10 +188,8 @@ "tags": [], "label": "INDEX_TRACES", "description": [], - "signature": [ - "\"profiling-stacktraces\"" - ], - "path": "x-pack/plugins/profiling/common/index.ts", + "signature": ["\"profiling-stacktraces\""], + "path": "x-pack/plugins/observability_solution/profiling/common/index.ts", "deprecated": false, "trackAdoption": false, "initialIsOpen": false @@ -215,7 +201,7 @@ "tags": [], "label": "NOT_AVAILABLE_LABEL", "description": [], - "path": "x-pack/plugins/profiling/common/index.ts", + "path": "x-pack/plugins/observability_solution/profiling/common/index.ts", "deprecated": false, "trackAdoption": false, "initialIsOpen": false @@ -227,10 +213,8 @@ "tags": [], "label": "PLUGIN_ID", "description": [], - "signature": [ - "\"profiling\"" - ], - "path": "x-pack/plugins/profiling/common/index.ts", + "signature": ["\"profiling\""], + "path": "x-pack/plugins/observability_solution/profiling/common/index.ts", "deprecated": false, "trackAdoption": false, "initialIsOpen": false @@ -242,10 +226,8 @@ "tags": [], "label": "PLUGIN_NAME", "description": [], - "signature": [ - "\"profiling\"" - ], - "path": "x-pack/plugins/profiling/common/index.ts", + "signature": ["\"profiling\""], + "path": "x-pack/plugins/observability_solution/profiling/common/index.ts", "deprecated": false, "trackAdoption": false, "initialIsOpen": false @@ -253,4 +235,4 @@ ], "objects": [] } -} \ No newline at end of file +} diff --git a/api_docs/profiling.mdx b/api_docs/profiling.mdx index f00d08fd192a3..129a15cf406bb 100644 --- a/api_docs/profiling.mdx +++ b/api_docs/profiling.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/profiling title: "profiling" image: https://source.unsplash.com/400x175/?github description: API docs for the profiling plugin -date: 2024-02-19 +date: 2024-02-22 tags: ['contributor', 'dev', 'apidocs', 'kibana', 'profiling'] --- import profilingObj from './profiling.devdocs.json'; diff --git a/api_docs/profiling_data_access.devdocs.json b/api_docs/profiling_data_access.devdocs.json index cfdad38608f23..07d1936c69377 100644 --- a/api_docs/profiling_data_access.devdocs.json +++ b/api_docs/profiling_data_access.devdocs.json @@ -24,7 +24,7 @@ "signature": [ "{ readonly elasticsearch?: Readonly<{} & { username: string; hosts: string; password: string; }> | undefined; }" ], - "path": "x-pack/plugins/profiling_data_access/server/index.ts", + "path": "x-pack/plugins/observability_solution/profiling_data_access/server/index.ts", "deprecated": false, "trackAdoption": false, "initialIsOpen": false @@ -67,7 +67,7 @@ }, ">; }; }" ], - "path": "x-pack/plugins/profiling_data_access/server/plugin.ts", + "path": "x-pack/plugins/observability_solution/profiling_data_access/server/plugin.ts", "deprecated": false, "trackAdoption": false, "initialIsOpen": false @@ -81,10 +81,8 @@ "tags": [], "label": "ProfilingDataAccessPluginSetup", "description": [], - "signature": [ - "void" - ], - "path": "x-pack/plugins/profiling_data_access/server/plugin.ts", + "signature": ["void"], + "path": "x-pack/plugins/observability_solution/profiling_data_access/server/plugin.ts", "deprecated": false, "trackAdoption": false, "lifecycle": "start", @@ -128,7 +126,7 @@ }, " | null>" ], - "path": "x-pack/plugins/profiling_data_access/common/get_apm_policy.ts", + "path": "x-pack/plugins/observability_solution/profiling_data_access/common/get_apm_policy.ts", "deprecated": false, "trackAdoption": false, "children": [ @@ -139,7 +137,7 @@ "tags": [], "label": "{\n packagePolicyClient,\n soClient,\n}", "description": [], - "path": "x-pack/plugins/profiling_data_access/common/get_apm_policy.ts", + "path": "x-pack/plugins/observability_solution/profiling_data_access/common/get_apm_policy.ts", "deprecated": false, "trackAdoption": false, "children": [ @@ -159,7 +157,7 @@ "text": "PackagePolicyClient" } ], - "path": "x-pack/plugins/profiling_data_access/common/get_apm_policy.ts", + "path": "x-pack/plugins/observability_solution/profiling_data_access/common/get_apm_policy.ts", "deprecated": false, "trackAdoption": false }, @@ -179,7 +177,7 @@ "text": "SavedObjectsClientContract" } ], - "path": "x-pack/plugins/profiling_data_access/common/get_apm_policy.ts", + "path": "x-pack/plugins/observability_solution/profiling_data_access/common/get_apm_policy.ts", "deprecated": false, "trackAdoption": false } @@ -223,7 +221,7 @@ }, " | undefined>" ], - "path": "x-pack/plugins/profiling_data_access/common/fleet_policies.ts", + "path": "x-pack/plugins/observability_solution/profiling_data_access/common/fleet_policies.ts", "deprecated": false, "trackAdoption": false, "children": [ @@ -234,7 +232,7 @@ "tags": [], "label": "{\n soClient,\n packagePolicyClient,\n}", "description": [], - "path": "x-pack/plugins/profiling_data_access/common/fleet_policies.ts", + "path": "x-pack/plugins/observability_solution/profiling_data_access/common/fleet_policies.ts", "deprecated": false, "trackAdoption": false, "children": [ @@ -254,7 +252,7 @@ "text": "PackagePolicyClient" } ], - "path": "x-pack/plugins/profiling_data_access/common/fleet_policies.ts", + "path": "x-pack/plugins/observability_solution/profiling_data_access/common/fleet_policies.ts", "deprecated": false, "trackAdoption": false }, @@ -274,7 +272,7 @@ "text": "SavedObjectsClientContract" } ], - "path": "x-pack/plugins/profiling_data_access/common/fleet_policies.ts", + "path": "x-pack/plugins/observability_solution/profiling_data_access/common/fleet_policies.ts", "deprecated": false, "trackAdoption": false } @@ -318,7 +316,7 @@ }, " | undefined>" ], - "path": "x-pack/plugins/profiling_data_access/common/fleet_policies.ts", + "path": "x-pack/plugins/observability_solution/profiling_data_access/common/fleet_policies.ts", "deprecated": false, "trackAdoption": false, "children": [ @@ -329,7 +327,7 @@ "tags": [], "label": "{\n soClient,\n packagePolicyClient,\n}", "description": [], - "path": "x-pack/plugins/profiling_data_access/common/fleet_policies.ts", + "path": "x-pack/plugins/observability_solution/profiling_data_access/common/fleet_policies.ts", "deprecated": false, "trackAdoption": false, "children": [ @@ -349,7 +347,7 @@ "text": "PackagePolicyClient" } ], - "path": "x-pack/plugins/profiling_data_access/common/fleet_policies.ts", + "path": "x-pack/plugins/observability_solution/profiling_data_access/common/fleet_policies.ts", "deprecated": false, "trackAdoption": false }, @@ -369,7 +367,7 @@ "text": "SavedObjectsClientContract" } ], - "path": "x-pack/plugins/profiling_data_access/common/fleet_policies.ts", + "path": "x-pack/plugins/observability_solution/profiling_data_access/common/fleet_policies.ts", "deprecated": false, "trackAdoption": false } @@ -399,7 +397,7 @@ " extends ", "ProfilingSetupOptions" ], - "path": "x-pack/plugins/profiling_data_access/common/cloud_setup.ts", + "path": "x-pack/plugins/observability_solution/profiling_data_access/common/cloud_setup.ts", "deprecated": false, "trackAdoption": false, "children": [ @@ -419,7 +417,7 @@ "text": "PackagePolicyClient" } ], - "path": "x-pack/plugins/profiling_data_access/common/cloud_setup.ts", + "path": "x-pack/plugins/observability_solution/profiling_data_access/common/cloud_setup.ts", "deprecated": false, "trackAdoption": false }, @@ -430,7 +428,7 @@ "tags": [], "label": "isCloudEnabled", "description": [], - "path": "x-pack/plugins/profiling_data_access/common/cloud_setup.ts", + "path": "x-pack/plugins/observability_solution/profiling_data_access/common/cloud_setup.ts", "deprecated": false, "trackAdoption": false } @@ -447,10 +445,8 @@ "tags": [], "label": "COLLECTOR_PACKAGE_POLICY_NAME", "description": [], - "signature": [ - "\"elastic-universal-profiling-collector\"" - ], - "path": "x-pack/plugins/profiling_data_access/common/fleet_policies.ts", + "signature": ["\"elastic-universal-profiling-collector\""], + "path": "x-pack/plugins/observability_solution/profiling_data_access/common/fleet_policies.ts", "deprecated": false, "trackAdoption": false, "initialIsOpen": false @@ -462,10 +458,8 @@ "tags": [], "label": "ELASTIC_CLOUD_APM_POLICY", "description": [], - "signature": [ - "\"elastic-cloud-apm\"" - ], - "path": "x-pack/plugins/profiling_data_access/common/get_apm_policy.ts", + "signature": ["\"elastic-cloud-apm\""], + "path": "x-pack/plugins/observability_solution/profiling_data_access/common/get_apm_policy.ts", "deprecated": false, "trackAdoption": false, "initialIsOpen": false @@ -477,10 +471,8 @@ "tags": [], "label": "MAX_BUCKETS", "description": [], - "signature": [ - "150000" - ], - "path": "x-pack/plugins/profiling_data_access/common/cluster_settings.ts", + "signature": ["150000"], + "path": "x-pack/plugins/observability_solution/profiling_data_access/common/cluster_settings.ts", "deprecated": false, "trackAdoption": false, "initialIsOpen": false @@ -492,10 +484,8 @@ "tags": [], "label": "SYMBOLIZER_PACKAGE_POLICY_NAME", "description": [], - "signature": [ - "\"elastic-universal-profiling-symbolizer\"" - ], - "path": "x-pack/plugins/profiling_data_access/common/fleet_policies.ts", + "signature": ["\"elastic-universal-profiling-symbolizer\""], + "path": "x-pack/plugins/observability_solution/profiling_data_access/common/fleet_policies.ts", "deprecated": false, "trackAdoption": false, "initialIsOpen": false @@ -503,4 +493,4 @@ ], "objects": [] } -} \ No newline at end of file +} diff --git a/api_docs/profiling_data_access.mdx b/api_docs/profiling_data_access.mdx index c6548c2bbd0af..d5c60f4d95ae8 100644 --- a/api_docs/profiling_data_access.mdx +++ b/api_docs/profiling_data_access.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/profilingDataAccess title: "profilingDataAccess" image: https://source.unsplash.com/400x175/?github description: API docs for the profilingDataAccess plugin -date: 2024-02-19 +date: 2024-02-22 tags: ['contributor', 'dev', 'apidocs', 'kibana', 'profilingDataAccess'] --- import profilingDataAccessObj from './profiling_data_access.devdocs.json'; diff --git a/api_docs/remote_clusters.mdx b/api_docs/remote_clusters.mdx index 427d57d507d40..edca43c721fdd 100644 --- a/api_docs/remote_clusters.mdx +++ b/api_docs/remote_clusters.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/remoteClusters title: "remoteClusters" image: https://source.unsplash.com/400x175/?github description: API docs for the remoteClusters plugin -date: 2024-02-19 +date: 2024-02-22 tags: ['contributor', 'dev', 'apidocs', 'kibana', 'remoteClusters'] --- import remoteClustersObj from './remote_clusters.devdocs.json'; diff --git a/api_docs/reporting.mdx b/api_docs/reporting.mdx index 15ad577e4adac..15b128918b457 100644 --- a/api_docs/reporting.mdx +++ b/api_docs/reporting.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/reporting title: "reporting" image: https://source.unsplash.com/400x175/?github description: API docs for the reporting plugin -date: 2024-02-19 +date: 2024-02-22 tags: ['contributor', 'dev', 'apidocs', 'kibana', 'reporting'] --- import reportingObj from './reporting.devdocs.json'; diff --git a/api_docs/rollup.mdx b/api_docs/rollup.mdx index 6c73a8a4b61df..5711192836fe0 100644 --- a/api_docs/rollup.mdx +++ b/api_docs/rollup.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/rollup title: "rollup" image: https://source.unsplash.com/400x175/?github description: API docs for the rollup plugin -date: 2024-02-19 +date: 2024-02-22 tags: ['contributor', 'dev', 'apidocs', 'kibana', 'rollup'] --- import rollupObj from './rollup.devdocs.json'; diff --git a/api_docs/rule_registry.mdx b/api_docs/rule_registry.mdx index c336526b4197e..cc1a8f711b673 100644 --- a/api_docs/rule_registry.mdx +++ b/api_docs/rule_registry.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/ruleRegistry title: "ruleRegistry" image: https://source.unsplash.com/400x175/?github description: API docs for the ruleRegistry plugin -date: 2024-02-19 +date: 2024-02-22 tags: ['contributor', 'dev', 'apidocs', 'kibana', 'ruleRegistry'] --- import ruleRegistryObj from './rule_registry.devdocs.json'; diff --git a/api_docs/runtime_fields.mdx b/api_docs/runtime_fields.mdx index 5602168067de0..d05133fa70f28 100644 --- a/api_docs/runtime_fields.mdx +++ b/api_docs/runtime_fields.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/runtimeFields title: "runtimeFields" image: https://source.unsplash.com/400x175/?github description: API docs for the runtimeFields plugin -date: 2024-02-19 +date: 2024-02-22 tags: ['contributor', 'dev', 'apidocs', 'kibana', 'runtimeFields'] --- import runtimeFieldsObj from './runtime_fields.devdocs.json'; diff --git a/api_docs/saved_objects.mdx b/api_docs/saved_objects.mdx index 8ea068fc712ee..94258c318486f 100644 --- a/api_docs/saved_objects.mdx +++ b/api_docs/saved_objects.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/savedObjects title: "savedObjects" image: https://source.unsplash.com/400x175/?github description: API docs for the savedObjects plugin -date: 2024-02-19 +date: 2024-02-22 tags: ['contributor', 'dev', 'apidocs', 'kibana', 'savedObjects'] --- import savedObjectsObj from './saved_objects.devdocs.json'; diff --git a/api_docs/saved_objects_finder.mdx b/api_docs/saved_objects_finder.mdx index 438ec5dc39fe8..ad6b471d7f93b 100644 --- a/api_docs/saved_objects_finder.mdx +++ b/api_docs/saved_objects_finder.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/savedObjectsFinder title: "savedObjectsFinder" image: https://source.unsplash.com/400x175/?github description: API docs for the savedObjectsFinder plugin -date: 2024-02-19 +date: 2024-02-22 tags: ['contributor', 'dev', 'apidocs', 'kibana', 'savedObjectsFinder'] --- import savedObjectsFinderObj from './saved_objects_finder.devdocs.json'; diff --git a/api_docs/saved_objects_management.mdx b/api_docs/saved_objects_management.mdx index 60006e628640e..9db9dd5771f93 100644 --- a/api_docs/saved_objects_management.mdx +++ b/api_docs/saved_objects_management.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/savedObjectsManagement title: "savedObjectsManagement" image: https://source.unsplash.com/400x175/?github description: API docs for the savedObjectsManagement plugin -date: 2024-02-19 +date: 2024-02-22 tags: ['contributor', 'dev', 'apidocs', 'kibana', 'savedObjectsManagement'] --- import savedObjectsManagementObj from './saved_objects_management.devdocs.json'; diff --git a/api_docs/saved_objects_tagging.mdx b/api_docs/saved_objects_tagging.mdx index d996b4777a74e..6e41141e927f7 100644 --- a/api_docs/saved_objects_tagging.mdx +++ b/api_docs/saved_objects_tagging.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/savedObjectsTagging title: "savedObjectsTagging" image: https://source.unsplash.com/400x175/?github description: API docs for the savedObjectsTagging plugin -date: 2024-02-19 +date: 2024-02-22 tags: ['contributor', 'dev', 'apidocs', 'kibana', 'savedObjectsTagging'] --- import savedObjectsTaggingObj from './saved_objects_tagging.devdocs.json'; diff --git a/api_docs/saved_objects_tagging_oss.mdx b/api_docs/saved_objects_tagging_oss.mdx index 996721208d0df..a31807d39ad59 100644 --- a/api_docs/saved_objects_tagging_oss.mdx +++ b/api_docs/saved_objects_tagging_oss.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/savedObjectsTaggingOss title: "savedObjectsTaggingOss" image: https://source.unsplash.com/400x175/?github description: API docs for the savedObjectsTaggingOss plugin -date: 2024-02-19 +date: 2024-02-22 tags: ['contributor', 'dev', 'apidocs', 'kibana', 'savedObjectsTaggingOss'] --- import savedObjectsTaggingOssObj from './saved_objects_tagging_oss.devdocs.json'; diff --git a/api_docs/saved_search.mdx b/api_docs/saved_search.mdx index b1a2181f89863..91072b47228eb 100644 --- a/api_docs/saved_search.mdx +++ b/api_docs/saved_search.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/savedSearch title: "savedSearch" image: https://source.unsplash.com/400x175/?github description: API docs for the savedSearch plugin -date: 2024-02-19 +date: 2024-02-22 tags: ['contributor', 'dev', 'apidocs', 'kibana', 'savedSearch'] --- import savedSearchObj from './saved_search.devdocs.json'; diff --git a/api_docs/screenshot_mode.mdx b/api_docs/screenshot_mode.mdx index 3749ae6917709..67a306cf41384 100644 --- a/api_docs/screenshot_mode.mdx +++ b/api_docs/screenshot_mode.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/screenshotMode title: "screenshotMode" image: https://source.unsplash.com/400x175/?github description: API docs for the screenshotMode plugin -date: 2024-02-19 +date: 2024-02-22 tags: ['contributor', 'dev', 'apidocs', 'kibana', 'screenshotMode'] --- import screenshotModeObj from './screenshot_mode.devdocs.json'; diff --git a/api_docs/screenshotting.mdx b/api_docs/screenshotting.mdx index 5402ab2f0db28..d9182272da3df 100644 --- a/api_docs/screenshotting.mdx +++ b/api_docs/screenshotting.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/screenshotting title: "screenshotting" image: https://source.unsplash.com/400x175/?github description: API docs for the screenshotting plugin -date: 2024-02-19 +date: 2024-02-22 tags: ['contributor', 'dev', 'apidocs', 'kibana', 'screenshotting'] --- import screenshottingObj from './screenshotting.devdocs.json'; diff --git a/api_docs/security.mdx b/api_docs/security.mdx index 131b5b2919a2e..3668ccf966c76 100644 --- a/api_docs/security.mdx +++ b/api_docs/security.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/security title: "security" image: https://source.unsplash.com/400x175/?github description: API docs for the security plugin -date: 2024-02-19 +date: 2024-02-22 tags: ['contributor', 'dev', 'apidocs', 'kibana', 'security'] --- import securityObj from './security.devdocs.json'; diff --git a/api_docs/security_solution.devdocs.json b/api_docs/security_solution.devdocs.json index cf688503dff61..c3872931ae67b 100644 --- a/api_docs/security_solution.devdocs.json +++ b/api_docs/security_solution.devdocs.json @@ -3085,16 +3085,16 @@ "children": [ { "parentPluginId": "securitySolution", - "id": "def-server.SecuritySolutionPluginSetup.setAppFeaturesConfigurator", + "id": "def-server.SecuritySolutionPluginSetup.setProductFeaturesConfigurator", "type": "Function", "tags": [], - "label": "setAppFeaturesConfigurator", + "label": "setProductFeaturesConfigurator", "description": [ "\nSets the configurations for app features that are available to the Security Solution" ], "signature": [ "(configurator: ", - "AppFeaturesConfigurator", + "ProductFeaturesConfigurator", ") => void" ], "path": "x-pack/plugins/security_solution/server/plugin_contract.ts", @@ -3104,15 +3104,15 @@ "children": [ { "parentPluginId": "securitySolution", - "id": "def-server.SecuritySolutionPluginSetup.setAppFeaturesConfigurator.$1", + "id": "def-server.SecuritySolutionPluginSetup.setProductFeaturesConfigurator.$1", "type": "Object", "tags": [], "label": "configurator", "description": [], "signature": [ - "AppFeaturesConfigurator" + "ProductFeaturesConfigurator" ], - "path": "x-pack/plugins/security_solution/server/lib/app_features_service/app_features_service.ts", + "path": "x-pack/plugins/security_solution/server/lib/product_features_service/product_features_service.ts", "deprecated": false, "trackAdoption": false } diff --git a/api_docs/security_solution.mdx b/api_docs/security_solution.mdx index 45eb1193e5493..68cf0b3d3048d 100644 --- a/api_docs/security_solution.mdx +++ b/api_docs/security_solution.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/securitySolution title: "securitySolution" image: https://source.unsplash.com/400x175/?github description: API docs for the securitySolution plugin -date: 2024-02-19 +date: 2024-02-22 tags: ['contributor', 'dev', 'apidocs', 'kibana', 'securitySolution'] --- import securitySolutionObj from './security_solution.devdocs.json'; diff --git a/api_docs/security_solution_ess.mdx b/api_docs/security_solution_ess.mdx index fa82fa12e615a..fdfbe3d807d73 100644 --- a/api_docs/security_solution_ess.mdx +++ b/api_docs/security_solution_ess.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/securitySolutionEss title: "securitySolutionEss" image: https://source.unsplash.com/400x175/?github description: API docs for the securitySolutionEss plugin -date: 2024-02-19 +date: 2024-02-22 tags: ['contributor', 'dev', 'apidocs', 'kibana', 'securitySolutionEss'] --- import securitySolutionEssObj from './security_solution_ess.devdocs.json'; diff --git a/api_docs/security_solution_serverless.mdx b/api_docs/security_solution_serverless.mdx index 0d2cd80015096..f61aa34a765db 100644 --- a/api_docs/security_solution_serverless.mdx +++ b/api_docs/security_solution_serverless.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/securitySolutionServerless title: "securitySolutionServerless" image: https://source.unsplash.com/400x175/?github description: API docs for the securitySolutionServerless plugin -date: 2024-02-19 +date: 2024-02-22 tags: ['contributor', 'dev', 'apidocs', 'kibana', 'securitySolutionServerless'] --- import securitySolutionServerlessObj from './security_solution_serverless.devdocs.json'; diff --git a/api_docs/serverless.mdx b/api_docs/serverless.mdx index e5e4ebe257777..069443118e39b 100644 --- a/api_docs/serverless.mdx +++ b/api_docs/serverless.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/serverless title: "serverless" image: https://source.unsplash.com/400x175/?github description: API docs for the serverless plugin -date: 2024-02-19 +date: 2024-02-22 tags: ['contributor', 'dev', 'apidocs', 'kibana', 'serverless'] --- import serverlessObj from './serverless.devdocs.json'; diff --git a/api_docs/serverless_observability.mdx b/api_docs/serverless_observability.mdx index 671438f072468..1f4fe14954991 100644 --- a/api_docs/serverless_observability.mdx +++ b/api_docs/serverless_observability.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/serverlessObservability title: "serverlessObservability" image: https://source.unsplash.com/400x175/?github description: API docs for the serverlessObservability plugin -date: 2024-02-19 +date: 2024-02-22 tags: ['contributor', 'dev', 'apidocs', 'kibana', 'serverlessObservability'] --- import serverlessObservabilityObj from './serverless_observability.devdocs.json'; diff --git a/api_docs/serverless_search.mdx b/api_docs/serverless_search.mdx index 6baabf6ff6081..0968691ea2ba0 100644 --- a/api_docs/serverless_search.mdx +++ b/api_docs/serverless_search.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/serverlessSearch title: "serverlessSearch" image: https://source.unsplash.com/400x175/?github description: API docs for the serverlessSearch plugin -date: 2024-02-19 +date: 2024-02-22 tags: ['contributor', 'dev', 'apidocs', 'kibana', 'serverlessSearch'] --- import serverlessSearchObj from './serverless_search.devdocs.json'; diff --git a/api_docs/session_view.mdx b/api_docs/session_view.mdx index 2f728c2b84f51..c28498eecb10d 100644 --- a/api_docs/session_view.mdx +++ b/api_docs/session_view.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/sessionView title: "sessionView" image: https://source.unsplash.com/400x175/?github description: API docs for the sessionView plugin -date: 2024-02-19 +date: 2024-02-22 tags: ['contributor', 'dev', 'apidocs', 'kibana', 'sessionView'] --- import sessionViewObj from './session_view.devdocs.json'; diff --git a/api_docs/share.mdx b/api_docs/share.mdx index c85f61714d044..1f45e1a592a78 100644 --- a/api_docs/share.mdx +++ b/api_docs/share.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/share title: "share" image: https://source.unsplash.com/400x175/?github description: API docs for the share plugin -date: 2024-02-19 +date: 2024-02-22 tags: ['contributor', 'dev', 'apidocs', 'kibana', 'share'] --- import shareObj from './share.devdocs.json'; diff --git a/api_docs/snapshot_restore.mdx b/api_docs/snapshot_restore.mdx index a8ef8afe32592..ae5d4d2ea6542 100644 --- a/api_docs/snapshot_restore.mdx +++ b/api_docs/snapshot_restore.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/snapshotRestore title: "snapshotRestore" image: https://source.unsplash.com/400x175/?github description: API docs for the snapshotRestore plugin -date: 2024-02-19 +date: 2024-02-22 tags: ['contributor', 'dev', 'apidocs', 'kibana', 'snapshotRestore'] --- import snapshotRestoreObj from './snapshot_restore.devdocs.json'; diff --git a/api_docs/spaces.mdx b/api_docs/spaces.mdx index 34ee0daeb2448..c1ee54494f4d5 100644 --- a/api_docs/spaces.mdx +++ b/api_docs/spaces.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/spaces title: "spaces" image: https://source.unsplash.com/400x175/?github description: API docs for the spaces plugin -date: 2024-02-19 +date: 2024-02-22 tags: ['contributor', 'dev', 'apidocs', 'kibana', 'spaces'] --- import spacesObj from './spaces.devdocs.json'; diff --git a/api_docs/stack_alerts.mdx b/api_docs/stack_alerts.mdx index 02c541c6b6715..c1ab7f6724778 100644 --- a/api_docs/stack_alerts.mdx +++ b/api_docs/stack_alerts.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/stackAlerts title: "stackAlerts" image: https://source.unsplash.com/400x175/?github description: API docs for the stackAlerts plugin -date: 2024-02-19 +date: 2024-02-22 tags: ['contributor', 'dev', 'apidocs', 'kibana', 'stackAlerts'] --- import stackAlertsObj from './stack_alerts.devdocs.json'; diff --git a/api_docs/stack_connectors.mdx b/api_docs/stack_connectors.mdx index d947e8fc15529..09daa7ff09265 100644 --- a/api_docs/stack_connectors.mdx +++ b/api_docs/stack_connectors.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/stackConnectors title: "stackConnectors" image: https://source.unsplash.com/400x175/?github description: API docs for the stackConnectors plugin -date: 2024-02-19 +date: 2024-02-22 tags: ['contributor', 'dev', 'apidocs', 'kibana', 'stackConnectors'] --- import stackConnectorsObj from './stack_connectors.devdocs.json'; diff --git a/api_docs/task_manager.mdx b/api_docs/task_manager.mdx index 1a16f0d3b777d..3ee57a9e4d79c 100644 --- a/api_docs/task_manager.mdx +++ b/api_docs/task_manager.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/taskManager title: "taskManager" image: https://source.unsplash.com/400x175/?github description: API docs for the taskManager plugin -date: 2024-02-19 +date: 2024-02-22 tags: ['contributor', 'dev', 'apidocs', 'kibana', 'taskManager'] --- import taskManagerObj from './task_manager.devdocs.json'; diff --git a/api_docs/telemetry.mdx b/api_docs/telemetry.mdx index ed9b83d88490a..cb20f3e8fea02 100644 --- a/api_docs/telemetry.mdx +++ b/api_docs/telemetry.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/telemetry title: "telemetry" image: https://source.unsplash.com/400x175/?github description: API docs for the telemetry plugin -date: 2024-02-19 +date: 2024-02-22 tags: ['contributor', 'dev', 'apidocs', 'kibana', 'telemetry'] --- import telemetryObj from './telemetry.devdocs.json'; diff --git a/api_docs/telemetry_collection_manager.mdx b/api_docs/telemetry_collection_manager.mdx index 419547e887167..2621aeba77c6c 100644 --- a/api_docs/telemetry_collection_manager.mdx +++ b/api_docs/telemetry_collection_manager.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/telemetryCollectionManager title: "telemetryCollectionManager" image: https://source.unsplash.com/400x175/?github description: API docs for the telemetryCollectionManager plugin -date: 2024-02-19 +date: 2024-02-22 tags: ['contributor', 'dev', 'apidocs', 'kibana', 'telemetryCollectionManager'] --- import telemetryCollectionManagerObj from './telemetry_collection_manager.devdocs.json'; diff --git a/api_docs/telemetry_collection_xpack.mdx b/api_docs/telemetry_collection_xpack.mdx index 3d2e9d46e93dd..84f270d16a229 100644 --- a/api_docs/telemetry_collection_xpack.mdx +++ b/api_docs/telemetry_collection_xpack.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/telemetryCollectionXpack title: "telemetryCollectionXpack" image: https://source.unsplash.com/400x175/?github description: API docs for the telemetryCollectionXpack plugin -date: 2024-02-19 +date: 2024-02-22 tags: ['contributor', 'dev', 'apidocs', 'kibana', 'telemetryCollectionXpack'] --- import telemetryCollectionXpackObj from './telemetry_collection_xpack.devdocs.json'; diff --git a/api_docs/telemetry_management_section.mdx b/api_docs/telemetry_management_section.mdx index 09926a1cea92b..b5686d3596610 100644 --- a/api_docs/telemetry_management_section.mdx +++ b/api_docs/telemetry_management_section.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/telemetryManagementSection title: "telemetryManagementSection" image: https://source.unsplash.com/400x175/?github description: API docs for the telemetryManagementSection plugin -date: 2024-02-19 +date: 2024-02-22 tags: ['contributor', 'dev', 'apidocs', 'kibana', 'telemetryManagementSection'] --- import telemetryManagementSectionObj from './telemetry_management_section.devdocs.json'; diff --git a/api_docs/text_based_languages.mdx b/api_docs/text_based_languages.mdx index 963288522e8c4..44241b5564580 100644 --- a/api_docs/text_based_languages.mdx +++ b/api_docs/text_based_languages.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/textBasedLanguages title: "textBasedLanguages" image: https://source.unsplash.com/400x175/?github description: API docs for the textBasedLanguages plugin -date: 2024-02-19 +date: 2024-02-22 tags: ['contributor', 'dev', 'apidocs', 'kibana', 'textBasedLanguages'] --- import textBasedLanguagesObj from './text_based_languages.devdocs.json'; diff --git a/api_docs/threat_intelligence.mdx b/api_docs/threat_intelligence.mdx index f4df327bb4c83..3fdf27ca0be47 100644 --- a/api_docs/threat_intelligence.mdx +++ b/api_docs/threat_intelligence.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/threatIntelligence title: "threatIntelligence" image: https://source.unsplash.com/400x175/?github description: API docs for the threatIntelligence plugin -date: 2024-02-19 +date: 2024-02-22 tags: ['contributor', 'dev', 'apidocs', 'kibana', 'threatIntelligence'] --- import threatIntelligenceObj from './threat_intelligence.devdocs.json'; diff --git a/api_docs/timelines.mdx b/api_docs/timelines.mdx index fc7591510e2ac..88fc6c694c73b 100644 --- a/api_docs/timelines.mdx +++ b/api_docs/timelines.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/timelines title: "timelines" image: https://source.unsplash.com/400x175/?github description: API docs for the timelines plugin -date: 2024-02-19 +date: 2024-02-22 tags: ['contributor', 'dev', 'apidocs', 'kibana', 'timelines'] --- import timelinesObj from './timelines.devdocs.json'; diff --git a/api_docs/transform.mdx b/api_docs/transform.mdx index aea5dbff1b077..938c12b6629e6 100644 --- a/api_docs/transform.mdx +++ b/api_docs/transform.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/transform title: "transform" image: https://source.unsplash.com/400x175/?github description: API docs for the transform plugin -date: 2024-02-19 +date: 2024-02-22 tags: ['contributor', 'dev', 'apidocs', 'kibana', 'transform'] --- import transformObj from './transform.devdocs.json'; diff --git a/api_docs/triggers_actions_ui.mdx b/api_docs/triggers_actions_ui.mdx index 3f07adfaa2452..56091b1daaf8a 100644 --- a/api_docs/triggers_actions_ui.mdx +++ b/api_docs/triggers_actions_ui.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/triggersActionsUi title: "triggersActionsUi" image: https://source.unsplash.com/400x175/?github description: API docs for the triggersActionsUi plugin -date: 2024-02-19 +date: 2024-02-22 tags: ['contributor', 'dev', 'apidocs', 'kibana', 'triggersActionsUi'] --- import triggersActionsUiObj from './triggers_actions_ui.devdocs.json'; diff --git a/api_docs/ui_actions.mdx b/api_docs/ui_actions.mdx index 3d62289590e43..69efb220189c4 100644 --- a/api_docs/ui_actions.mdx +++ b/api_docs/ui_actions.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/uiActions title: "uiActions" image: https://source.unsplash.com/400x175/?github description: API docs for the uiActions plugin -date: 2024-02-19 +date: 2024-02-22 tags: ['contributor', 'dev', 'apidocs', 'kibana', 'uiActions'] --- import uiActionsObj from './ui_actions.devdocs.json'; diff --git a/api_docs/ui_actions_enhanced.mdx b/api_docs/ui_actions_enhanced.mdx index 0ac0e921fa073..f645e4de73bc8 100644 --- a/api_docs/ui_actions_enhanced.mdx +++ b/api_docs/ui_actions_enhanced.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/uiActionsEnhanced title: "uiActionsEnhanced" image: https://source.unsplash.com/400x175/?github description: API docs for the uiActionsEnhanced plugin -date: 2024-02-19 +date: 2024-02-22 tags: ['contributor', 'dev', 'apidocs', 'kibana', 'uiActionsEnhanced'] --- import uiActionsEnhancedObj from './ui_actions_enhanced.devdocs.json'; diff --git a/api_docs/unified_doc_viewer.mdx b/api_docs/unified_doc_viewer.mdx index 20fe549ad5496..b726ecc4761f7 100644 --- a/api_docs/unified_doc_viewer.mdx +++ b/api_docs/unified_doc_viewer.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/unifiedDocViewer title: "unifiedDocViewer" image: https://source.unsplash.com/400x175/?github description: API docs for the unifiedDocViewer plugin -date: 2024-02-19 +date: 2024-02-22 tags: ['contributor', 'dev', 'apidocs', 'kibana', 'unifiedDocViewer'] --- import unifiedDocViewerObj from './unified_doc_viewer.devdocs.json'; diff --git a/api_docs/unified_histogram.mdx b/api_docs/unified_histogram.mdx index 4c0f396da51cc..485d7c7984726 100644 --- a/api_docs/unified_histogram.mdx +++ b/api_docs/unified_histogram.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/unifiedHistogram title: "unifiedHistogram" image: https://source.unsplash.com/400x175/?github description: API docs for the unifiedHistogram plugin -date: 2024-02-19 +date: 2024-02-22 tags: ['contributor', 'dev', 'apidocs', 'kibana', 'unifiedHistogram'] --- import unifiedHistogramObj from './unified_histogram.devdocs.json'; diff --git a/api_docs/unified_search.mdx b/api_docs/unified_search.mdx index 49b5f0afcafa9..969c76c7d2710 100644 --- a/api_docs/unified_search.mdx +++ b/api_docs/unified_search.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/unifiedSearch title: "unifiedSearch" image: https://source.unsplash.com/400x175/?github description: API docs for the unifiedSearch plugin -date: 2024-02-19 +date: 2024-02-22 tags: ['contributor', 'dev', 'apidocs', 'kibana', 'unifiedSearch'] --- import unifiedSearchObj from './unified_search.devdocs.json'; diff --git a/api_docs/unified_search_autocomplete.mdx b/api_docs/unified_search_autocomplete.mdx index 9d0e2ebf93de0..cb626a2881061 100644 --- a/api_docs/unified_search_autocomplete.mdx +++ b/api_docs/unified_search_autocomplete.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/unifiedSearch-autocomplete title: "unifiedSearch.autocomplete" image: https://source.unsplash.com/400x175/?github description: API docs for the unifiedSearch.autocomplete plugin -date: 2024-02-19 +date: 2024-02-22 tags: ['contributor', 'dev', 'apidocs', 'kibana', 'unifiedSearch.autocomplete'] --- import unifiedSearchAutocompleteObj from './unified_search_autocomplete.devdocs.json'; diff --git a/api_docs/uptime.mdx b/api_docs/uptime.mdx index 63e1a2dab92bb..047d492b0f957 100644 --- a/api_docs/uptime.mdx +++ b/api_docs/uptime.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/uptime title: "uptime" image: https://source.unsplash.com/400x175/?github description: API docs for the uptime plugin -date: 2024-02-19 +date: 2024-02-22 tags: ['contributor', 'dev', 'apidocs', 'kibana', 'uptime'] --- import uptimeObj from './uptime.devdocs.json'; diff --git a/api_docs/url_forwarding.mdx b/api_docs/url_forwarding.mdx index 80430ff41cee7..d203483fe5681 100644 --- a/api_docs/url_forwarding.mdx +++ b/api_docs/url_forwarding.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/urlForwarding title: "urlForwarding" image: https://source.unsplash.com/400x175/?github description: API docs for the urlForwarding plugin -date: 2024-02-19 +date: 2024-02-22 tags: ['contributor', 'dev', 'apidocs', 'kibana', 'urlForwarding'] --- import urlForwardingObj from './url_forwarding.devdocs.json'; diff --git a/api_docs/usage_collection.mdx b/api_docs/usage_collection.mdx index 03072cd20d4e5..4279dd3d96760 100644 --- a/api_docs/usage_collection.mdx +++ b/api_docs/usage_collection.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/usageCollection title: "usageCollection" image: https://source.unsplash.com/400x175/?github description: API docs for the usageCollection plugin -date: 2024-02-19 +date: 2024-02-22 tags: ['contributor', 'dev', 'apidocs', 'kibana', 'usageCollection'] --- import usageCollectionObj from './usage_collection.devdocs.json'; diff --git a/api_docs/ux.devdocs.json b/api_docs/ux.devdocs.json index 88ae637d044d0..0198d4e41388f 100644 --- a/api_docs/ux.devdocs.json +++ b/api_docs/ux.devdocs.json @@ -17,7 +17,7 @@ "signature": [ "void" ], - "path": "x-pack/plugins/ux/public/plugin.ts", + "path": "x-pack/plugins/observability_solution/ux/public/plugin.ts", "deprecated": false, "trackAdoption": false, "lifecycle": "start", diff --git a/api_docs/ux.mdx b/api_docs/ux.mdx index 54042aefff723..61f35c79560e4 100644 --- a/api_docs/ux.mdx +++ b/api_docs/ux.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/ux title: "ux" image: https://source.unsplash.com/400x175/?github description: API docs for the ux plugin -date: 2024-02-19 +date: 2024-02-22 tags: ['contributor', 'dev', 'apidocs', 'kibana', 'ux'] --- import uxObj from './ux.devdocs.json'; diff --git a/api_docs/vis_default_editor.mdx b/api_docs/vis_default_editor.mdx index f819015ab8a46..618b7267e185c 100644 --- a/api_docs/vis_default_editor.mdx +++ b/api_docs/vis_default_editor.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/visDefaultEditor title: "visDefaultEditor" image: https://source.unsplash.com/400x175/?github description: API docs for the visDefaultEditor plugin -date: 2024-02-19 +date: 2024-02-22 tags: ['contributor', 'dev', 'apidocs', 'kibana', 'visDefaultEditor'] --- import visDefaultEditorObj from './vis_default_editor.devdocs.json'; diff --git a/api_docs/vis_type_gauge.mdx b/api_docs/vis_type_gauge.mdx index 9886eaaf06fd1..f364cb5baf52b 100644 --- a/api_docs/vis_type_gauge.mdx +++ b/api_docs/vis_type_gauge.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/visTypeGauge title: "visTypeGauge" image: https://source.unsplash.com/400x175/?github description: API docs for the visTypeGauge plugin -date: 2024-02-19 +date: 2024-02-22 tags: ['contributor', 'dev', 'apidocs', 'kibana', 'visTypeGauge'] --- import visTypeGaugeObj from './vis_type_gauge.devdocs.json'; diff --git a/api_docs/vis_type_heatmap.mdx b/api_docs/vis_type_heatmap.mdx index c4eb5c2cbf62c..392cb6ed42442 100644 --- a/api_docs/vis_type_heatmap.mdx +++ b/api_docs/vis_type_heatmap.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/visTypeHeatmap title: "visTypeHeatmap" image: https://source.unsplash.com/400x175/?github description: API docs for the visTypeHeatmap plugin -date: 2024-02-19 +date: 2024-02-22 tags: ['contributor', 'dev', 'apidocs', 'kibana', 'visTypeHeatmap'] --- import visTypeHeatmapObj from './vis_type_heatmap.devdocs.json'; diff --git a/api_docs/vis_type_pie.mdx b/api_docs/vis_type_pie.mdx index 7135857e693d6..a04283358a65f 100644 --- a/api_docs/vis_type_pie.mdx +++ b/api_docs/vis_type_pie.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/visTypePie title: "visTypePie" image: https://source.unsplash.com/400x175/?github description: API docs for the visTypePie plugin -date: 2024-02-19 +date: 2024-02-22 tags: ['contributor', 'dev', 'apidocs', 'kibana', 'visTypePie'] --- import visTypePieObj from './vis_type_pie.devdocs.json'; diff --git a/api_docs/vis_type_table.mdx b/api_docs/vis_type_table.mdx index dc086678eef9c..94651b92815a4 100644 --- a/api_docs/vis_type_table.mdx +++ b/api_docs/vis_type_table.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/visTypeTable title: "visTypeTable" image: https://source.unsplash.com/400x175/?github description: API docs for the visTypeTable plugin -date: 2024-02-19 +date: 2024-02-22 tags: ['contributor', 'dev', 'apidocs', 'kibana', 'visTypeTable'] --- import visTypeTableObj from './vis_type_table.devdocs.json'; diff --git a/api_docs/vis_type_timelion.mdx b/api_docs/vis_type_timelion.mdx index 9dcc9f47616e2..51d3298f2632b 100644 --- a/api_docs/vis_type_timelion.mdx +++ b/api_docs/vis_type_timelion.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/visTypeTimelion title: "visTypeTimelion" image: https://source.unsplash.com/400x175/?github description: API docs for the visTypeTimelion plugin -date: 2024-02-19 +date: 2024-02-22 tags: ['contributor', 'dev', 'apidocs', 'kibana', 'visTypeTimelion'] --- import visTypeTimelionObj from './vis_type_timelion.devdocs.json'; diff --git a/api_docs/vis_type_timeseries.mdx b/api_docs/vis_type_timeseries.mdx index afa4dde1d2824..d2f6296251540 100644 --- a/api_docs/vis_type_timeseries.mdx +++ b/api_docs/vis_type_timeseries.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/visTypeTimeseries title: "visTypeTimeseries" image: https://source.unsplash.com/400x175/?github description: API docs for the visTypeTimeseries plugin -date: 2024-02-19 +date: 2024-02-22 tags: ['contributor', 'dev', 'apidocs', 'kibana', 'visTypeTimeseries'] --- import visTypeTimeseriesObj from './vis_type_timeseries.devdocs.json'; diff --git a/api_docs/vis_type_vega.mdx b/api_docs/vis_type_vega.mdx index 58be26bca248e..7a8f7c0da6f5a 100644 --- a/api_docs/vis_type_vega.mdx +++ b/api_docs/vis_type_vega.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/visTypeVega title: "visTypeVega" image: https://source.unsplash.com/400x175/?github description: API docs for the visTypeVega plugin -date: 2024-02-19 +date: 2024-02-22 tags: ['contributor', 'dev', 'apidocs', 'kibana', 'visTypeVega'] --- import visTypeVegaObj from './vis_type_vega.devdocs.json'; diff --git a/api_docs/vis_type_vislib.mdx b/api_docs/vis_type_vislib.mdx index eb72cc8cd3952..0420e2f635ad1 100644 --- a/api_docs/vis_type_vislib.mdx +++ b/api_docs/vis_type_vislib.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/visTypeVislib title: "visTypeVislib" image: https://source.unsplash.com/400x175/?github description: API docs for the visTypeVislib plugin -date: 2024-02-19 +date: 2024-02-22 tags: ['contributor', 'dev', 'apidocs', 'kibana', 'visTypeVislib'] --- import visTypeVislibObj from './vis_type_vislib.devdocs.json'; diff --git a/api_docs/vis_type_xy.mdx b/api_docs/vis_type_xy.mdx index 40520f407d583..972778651bbc4 100644 --- a/api_docs/vis_type_xy.mdx +++ b/api_docs/vis_type_xy.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/visTypeXy title: "visTypeXy" image: https://source.unsplash.com/400x175/?github description: API docs for the visTypeXy plugin -date: 2024-02-19 +date: 2024-02-22 tags: ['contributor', 'dev', 'apidocs', 'kibana', 'visTypeXy'] --- import visTypeXyObj from './vis_type_xy.devdocs.json'; diff --git a/api_docs/visualizations.mdx b/api_docs/visualizations.mdx index 3fccae4657987..1732492edba4e 100644 --- a/api_docs/visualizations.mdx +++ b/api_docs/visualizations.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/visualizations title: "visualizations" image: https://source.unsplash.com/400x175/?github description: API docs for the visualizations plugin -date: 2024-02-19 +date: 2024-02-22 tags: ['contributor', 'dev', 'apidocs', 'kibana', 'visualizations'] --- import visualizationsObj from './visualizations.devdocs.json'; diff --git a/config/serverless.yml b/config/serverless.yml index 5147b4961d282..d57c6f824e322 100644 --- a/config/serverless.yml +++ b/config/serverless.yml @@ -64,7 +64,6 @@ xpack.security.showInsecureClusterWarning: false # Disable UI of security management plugins xpack.security.ui.userManagementEnabled: false -xpack.security.ui.roleManagementEnabled: false xpack.security.ui.roleMappingManagementEnabled: false # Enforce restring access to internal APIs see https://github.com/elastic/kibana/issues/151940 diff --git a/docs/CHANGELOG.asciidoc b/docs/CHANGELOG.asciidoc index 00f09fb4afb38..88a10b5f64d00 100644 --- a/docs/CHANGELOG.asciidoc +++ b/docs/CHANGELOG.asciidoc @@ -10,6 +10,7 @@ Review important information about the {kib} 8.x releases. +* <> * <> * <> * <> @@ -59,6 +60,35 @@ Review important information about the {kib} 8.x releases. * <> -- +[[release-notes-8.12.2]] +== {kib} 8.12.2 + +The 8.12.2 release includes the following bug fixes. + +[float] +[[fixes-v8.12.2]] +=== Bug Fixes +Alerting:: +* Fixes Discover results when an alert excludes matches from previous runs ({kibana-pull}176690[#176690]). +* Fixes bug where using select all on the rules list bypassed filters ({kibana-pull}176962[#176962]). +Elastic Security:: +For the Elastic Security 8.12.2 release information, refer to {security-guide}/release-notes.html[_Elastic Security Solution Release Notes_]. +Fleet:: +* Fixes a popover about inactive agents not being dismissible ({kibana-pull}176929[#176929]). +* Fixes logstash output being link:https://www.rfc-editor.org/rfc/rfc952[RFC-952] compliant ({kibana-pull}176298[#176298]). +* Fixes assets being unintentionally moved to the default space during Fleet setup ({kibana-pull}176173[#176173]). +* Fixes categories labels in integration overview ({kibana-pull}176141[#176141]). +* Fixes the ability to delete agent policies with inactive agents from UI, the inactive agents need to be unenrolled first ({kibana-pull}175815[#175815]). +Machine Learning:: +* Fixes Single Metric Viewer's zoom range settings in URL not being restored if the URL specifies a `forecastId` ({kibana-pull}176969[#176969]). +* Fixes incorrect document count values in Top Values statistics ({kibana-pull}176328[#176328]). +* Fixes color of markers in Single Metric Viewer when there is sparse data for anomaly detection ({kibana-pull}176303[#176303]). +Management:: +* Fixes package showing 'Needs authorization' warning even after transform assets were authorized successfully ({kibana-pull}176647[#176647]). +Observability:: +* Fixes and simplifies write access default behavior ({kibana-pull}177088[#177088]). +* Fixes recall speed when using CVS output ({kibana-pull}176428[#176428]). + [[release-notes-8.12.1]] == {kib} 8.12.1 diff --git a/docs/developer/advanced/upgrading-nodejs.asciidoc b/docs/developer/advanced/upgrading-nodejs.asciidoc index 1126a0631265e..dea7c55704299 100644 --- a/docs/developer/advanced/upgrading-nodejs.asciidoc +++ b/docs/developer/advanced/upgrading-nodejs.asciidoc @@ -13,17 +13,13 @@ Before making a PR to upgrade Node.js, we must first <" in the "New Build" dialog. === Backporting diff --git a/docs/developer/plugin-list.asciidoc b/docs/developer/plugin-list.asciidoc index 3eccd4beaedab..835ea55744632 100644 --- a/docs/developer/plugin-list.asciidoc +++ b/docs/developer/plugin-list.asciidoc @@ -527,7 +527,7 @@ Plugin server-side only. Plugin has three main functions: |Adds drilldown capabilities to dashboard. Owned by the Kibana App team. -|{kib-repo}blob/{branch}/x-pack/plugins/dataset_quality/README.md[datasetQuality] +|{kib-repo}blob/{branch}/x-pack/plugins/observability_solution/dataset_quality/README.md[datasetQuality] |In order to make ongoing maintenance of log collection easy we want to introduce the concept of dataset quality, where users can easily get an overview on the datasets they have with information such as integration, size, last activity, among others. @@ -566,7 +566,7 @@ security and spaces filtering. activities. -|{kib-repo}blob/{branch}/x-pack/plugins/exploratory_view/README.md[exploratoryView] +|{kib-repo}blob/{branch}/x-pack/plugins/observability_solution/exploratory_view/README.md[exploratoryView] |A shared component for visualizing observability data types via lens embeddable. For further details. @@ -688,7 +688,7 @@ Elastic. |This plugin provides shared components and services for use across observability solutions, as well as the observability landing page UI. -|{kib-repo}blob/{branch}/x-pack/plugins/observability_ai_assistant/README.md[observabilityAIAssistant] +|{kib-repo}blob/{branch}/x-pack/plugins/observability_solution/observability_ai_assistant/README.md[observabilityAIAssistant] |This document gives an overview of the features of the Observability AI Assistant at the time of writing, and how to use them. At a high level, the Observability AI Assistant offers contextual insights, and a chat functionality that we enrich with function calling, allowing the LLM to hook into the user's data. We also allow the LLM to store things it considers new information as embeddings into Elasticsearch, and query this knowledge base when it decides it needs more information, using ELSER. @@ -700,7 +700,7 @@ Elastic. |This plugin provides an onboarding framework for observability solutions: Logs and APM. -|{kib-repo}blob/{branch}/x-pack/plugins/observability_shared/README.md[observabilityShared] +|{kib-repo}blob/{branch}/x-pack/plugins/observability_solution/observability_shared/README.md[observabilityShared] |A plugin that contains components and utilities shared by all Observability plugins. @@ -712,11 +712,11 @@ Elastic. |This plugin helps users learn how to use the Painless scripting language. -|{kib-repo}blob/{branch}/x-pack/plugins/profiling/README.md[profiling] +|{kib-repo}blob/{branch}/x-pack/plugins/observability_solution/profiling/README.md[profiling] |Universal Profiling provides fleet-wide, whole-system, continuous profiling with zero instrumentation. Get a comprehensive understanding of what lines of code are consuming compute resources throughout your entire fleet by visualizing your data in Kibana using the flamegraph, stacktraces, and top functions views. -|{kib-repo}blob/{branch}/x-pack/plugins/profiling_data_access[profilingDataAccess] +|{kib-repo}blob/{branch}/x-pack/plugins/observability_solution/profiling_data_access[profilingDataAccess] |WARNING: Missing README. @@ -857,7 +857,7 @@ in their infrastructure. |NOTE: This plugin contains implementation of URL drilldown. For drilldowns infrastructure code refer to ui_actions_enhanced plugin. -|{kib-repo}blob/{branch}/x-pack/plugins/ux/readme.md[ux] +|{kib-repo}blob/{branch}/x-pack/plugins/observability_solution/ux/readme.md[ux] |https://docs.elastic.dev/kibana-dev-docs/welcome diff --git a/docs/management/advanced-options.asciidoc b/docs/management/advanced-options.asciidoc index f00523b5c1f5c..4ab341571668e 100644 --- a/docs/management/advanced-options.asciidoc +++ b/docs/management/advanced-options.asciidoc @@ -184,8 +184,10 @@ this setting stores part of the URL in your browser session to keep the URL short. [[theme-darkmode]]`theme:darkMode`:: -Set to `true` to enable a dark mode for the {kib} UI. You must refresh the page -to apply the setting. +The UI theme that the {kib} UI should use. +Set to `enabled` or `disabled` to enable or disable the dark theme. +Set to `system` to have the {kib} UI theme follow the system theme. +You must refresh the page to apply the setting. [[theme-version]]`theme:version`:: Kibana only ships with the v8 theme now, so this setting can no longer be edited. @@ -463,8 +465,8 @@ preview:[] Enable the APM Trace Explorer feature, that allows you to search and [[observability-infrastructure-profiling-integration]]`observability:enableInfrastructureProfilingIntegration`:: preview:[] Enables the Profiling view in Host details within Infrastructure. -[[observability-infrastructure-hosts-custom-dashboard]]`observability:enableInfrastructureHostsCustomDashboards`:: -preview:[] Enables option to link custom dashboards in the Host Details view. +[[observability-infrastructure-asset-custom-dashboard]]`observability:enableInfrastructureAssetCustomDashboards`:: +preview:[] Enables option to link custom dashboards in the Asset Details view. [[observability-profiling-per-vcpu-watt-x86]]`observability:profilingPervCPUWattX86`:: The average amortized per-core power consumption (based on 100% CPU utilization) for x86 architecture. diff --git a/docs/setup/settings.asciidoc b/docs/setup/settings.asciidoc index 3e8e05db7511f..0119c3d93407a 100644 --- a/docs/setup/settings.asciidoc +++ b/docs/setup/settings.asciidoc @@ -467,6 +467,11 @@ default is `true`. *Default: `deprecated`* The number of milliseconds to wait before closing an inactive socket. *Default: `"120000"`* +[[server-payloadTimeout]] `server.payloadTimeout`:: +Sets the maximum time allowed for the client to transmit the request payload (body) before giving up +and responding with a Request Timeout (408) error response. +*Default: `"20000"`* + [[server-ssl-cert-key]] `server.ssl.certificate` and `server.ssl.key`:: Paths to a PEM-encoded X.509 server certificate and its corresponding private key. These are used by {kib} to establish trust when receiving inbound SSL/TLS connections from users. diff --git a/docs/user/alerting/images/alert-types-tracking-containment-action-options.png b/docs/user/alerting/images/alert-types-tracking-containment-action-options.png index fa5e9327a46cd..acd77d2b9b072 100644 Binary files a/docs/user/alerting/images/alert-types-tracking-containment-action-options.png and b/docs/user/alerting/images/alert-types-tracking-containment-action-options.png differ diff --git a/docs/user/alerting/images/alert-types-tracking-containment-conditions.png b/docs/user/alerting/images/alert-types-tracking-containment-conditions.png new file mode 100644 index 0000000000000..b328bb05dd0d6 Binary files /dev/null and b/docs/user/alerting/images/alert-types-tracking-containment-conditions.png differ diff --git a/docs/user/alerting/images/alert-types-tracking-containment-rule-action-variables.png b/docs/user/alerting/images/alert-types-tracking-containment-rule-action-variables.png new file mode 100644 index 0000000000000..84e554d0653c8 Binary files /dev/null and b/docs/user/alerting/images/alert-types-tracking-containment-rule-action-variables.png differ diff --git a/docs/user/alerting/rule-types/es-query.asciidoc b/docs/user/alerting/rule-types/es-query.asciidoc index 6aabe3a2c0ff7..9f17768d1d66d 100644 --- a/docs/user/alerting/rule-types/es-query.asciidoc +++ b/docs/user/alerting/rule-types/es-query.asciidoc @@ -134,7 +134,7 @@ For example: image::images/es-query-rule-action-query-matched.png[UI for defining a recovery action] // NOTE: This is an autogenerated screenshot. Do not edit it directly. -You can further refine the conditions under which actions run by specifying that actions only run they match a KQL query or when an alert occurs within a specific time frame. +You can further refine the conditions under which actions run by specifying that actions only run when they match a KQL query or when an alert occurs within a specific time frame. [float] === Add action variables diff --git a/docs/user/alerting/rule-types/geo-rule-types.asciidoc b/docs/user/alerting/rule-types/geo-rule-types.asciidoc index 95fd9e0625881..22c0029601359 100644 --- a/docs/user/alerting/rule-types/geo-rule-types.asciidoc +++ b/docs/user/alerting/rule-types/geo-rule-types.asciidoc @@ -10,24 +10,91 @@ The tracking containment rule alerts when an entity is contained or no longer contained within a boundary. +In *{stack-manage-app}* > *{rules-ui}*, click *Create rule*, fill in the name and optional tags, then select *Tracking containment*. + [float] -=== Requirements -To create a tracking containment rule, the following requirements must be present: +=== Define the conditions + +When you create a tracking containment rule, you must define the conditions that it detects. For example: + +[role="screenshot"] +image::user/alerting/images/alert-types-tracking-containment-conditions.png[Creating a tracking containment rule in Kibana,width=75%] +// NOTE: This is an autogenerated screenshot. Do not edit it directly. + +. Define the entities index, which must contain a `geo_point` or `geo_shape` field, `date` field, and entity identifier. + An entity identifier is a `keyword`, `number`, or `ip` field that identifies the entity. + Entity data is expected to be updating so that there are entity movements to alert upon. + +. Define the boundaries index, which contains `geo_shape` data. + Boundaries data is expected to be static (not updating). + Boundaries are collected once when the rule is created and anytime after when boundary configuration is modified. -- *Entities index*: An index containing a `geo_point` or `geo_shape` field, `date` field, and entity identifier. An entity identifier is a `keyword`, `number`, or `ip` field that identifies the entity. Entity data is expected to be updating so that there are entity movements to alert upon. -- *Boundaries index*: An index containing `geo_shape` data. -Boundaries data is expected to be static (not updating). Boundaries are collected once when the rule is created and anytime after when boundary configuration is modified. +. Set the check interval, which defines how often to evaluate the rule conditions. -Entity locations are queried to determine if they are contained within any monitored boundaries. -Entity data should be somewhat "real time", meaning the dates of new documents aren’t older -than the current time minus the amount of the interval. If data older than -`now - ` is ingested, it won't trigger a rule. +Entity locations are queried to determine whether they are contained within any monitored boundaries. +Entity data should be somewhat "real time", meaning the dates of new documents aren't older than the current time minus the amount of the interval. +If data older than `now - ` is ingested, it won't trigger a rule. [float] -=== Actions +=== Add actions -A rule can be triggered either when a containment condition is met or when an entity is no longer contained. +You can optionally send notifications when the rule conditions are met. +In particular, this rule type supports: + +- alert summaries +- actions that run when the containment condition is met +- actions that run when an entity is no longer contained + +For each action, you must choose a connector, which provides connection information for a {kib} service or third party integration. +For more information about all the supported connectors, go to <>. + +After you select a connector, you must set the action frequency. +You can choose to create a summary of alerts on each check interval or on a custom interval. +Alternatively, you can set the action frequency such that actions run for each alert. +Choose how often the action runs (at each check interval, only when the alert status changes, or at a custom action interval). +You must also choose an action group, which indicates whether the action runs when the containment condition is met or when an entity is no longer contained. +Each connector supports a specific set of actions for each action group. +For example: [role="screenshot"] image::user/alerting/images/alert-types-tracking-containment-action-options.png[Action frequency options for an action,width=75%] // NOTE: This is an autogenerated screenshot. Do not edit it directly. + +You can further refine the conditions under which actions run by specifying that actions only run when they match a KQL query or when an alert occurs within a specific time frame. + +[float] +=== Add action variables + +You can pass rule values to an action to provide contextual details. +To view the list of variables available for each action, click the "add rule variable" button. +For example: + +[role="screenshot"] +image::images/alert-types-tracking-containment-rule-action-variables.png[Passing rule values to an action,width=75%] +// NOTE: This is an autogenerated screenshot. Do not edit it directly. + +The following action variables are specific to the tracking containment rule. +You can also specify <>. + +`context.containingBoundaryId`:: +The identifier for the boundary containing the entity. +This value is not set for recovered alerts. + +`context.containingBoundaryName`:: +The name of the boundary containing the entity. +This value is not set for recovered alerts. + +`context.detectionDateTime`:: +The end of the check interval when the alert occurred. + +`context.entityDateTime`:: +The date the entity was recorded in the boundary. + +`context.entityDocumentId`:: +The identifier for the contained entity document. + +`context.entityId`:: +The entity identifier for the document that generated the alert. + +`context.entityLocation`:: +The location of the entity. diff --git a/docs/user/alerting/rule-types/index-threshold.asciidoc b/docs/user/alerting/rule-types/index-threshold.asciidoc index 867dbf4ddb307..a91607c71600e 100644 --- a/docs/user/alerting/rule-types/index-threshold.asciidoc +++ b/docs/user/alerting/rule-types/index-threshold.asciidoc @@ -79,7 +79,7 @@ For example: image::user/alerting/images/rule-types-index-threshold-example-action.png[UI for defining an action for each alert] // NOTE: This is an autogenerated screenshot. Do not edit it directly. -You can further refine the conditions under which actions run by specifying that actions only run they match a KQL query or when an alert occurs within a specific time frame. +You can further refine the conditions under which actions run by specifying that actions only run when they match a KQL query or when an alert occurs within a specific time frame. [float] [[action-variables-index-threshold]] diff --git a/examples/content_management_examples/public/examples/msearch/msearch_table.tsx b/examples/content_management_examples/public/examples/msearch/msearch_table.tsx index 17d8d992c4620..604be1f403e0c 100644 --- a/examples/content_management_examples/public/examples/msearch/msearch_table.tsx +++ b/examples/content_management_examples/public/examples/msearch/msearch_table.tsx @@ -61,7 +61,7 @@ export const MSearchTable = () => { title={`MSearch Demo`} urlStateEnabled={false} emptyPrompt={<>No data found. Try to install some sample data first.} - onClickTitle={(item) => { + getOnClickTitle={(item) => () => { alert(`Clicked item ${item.attributes.title} (${item.id})`); }} /> diff --git a/fleet_packages.json b/fleet_packages.json index 2e5e5cd6be8a4..4a025e7158a9b 100644 --- a/fleet_packages.json +++ b/fleet_packages.json @@ -24,7 +24,7 @@ [ { "name": "apm", - "version": "8.13.0-preview-1705349441", + "version": "8.13.1-preview-1708411360", "forceAlignStackVersion": true, "allowSyncToPrerelease": true }, @@ -34,7 +34,7 @@ }, { "name": "endpoint", - "version": "8.12.0" + "version": "8.13.0" }, { "name": "fleet_server", @@ -56,6 +56,6 @@ }, { "name": "security_detection_engine", - "version": "8.12.4" + "version": "8.12.5" } ] \ No newline at end of file diff --git a/package.json b/package.json index 09397d9cfdb7d..5bcbf5b2f8ce8 100644 --- a/package.json +++ b/package.json @@ -74,7 +74,7 @@ "url": "https://github.com/elastic/kibana.git" }, "engines": { - "node": "20.10.0", + "node": "20.11.1", "yarn": "^1.22.19" }, "resolutions": { @@ -101,12 +101,12 @@ "@dnd-kit/utilities": "^2.0.0", "@elastic/apm-rum": "^5.16.0", "@elastic/apm-rum-react": "^2.0.2", - "@elastic/charts": "63.1.0", + "@elastic/charts": "64.0.0", "@elastic/datemath": "5.0.3", "@elastic/ecs": "^8.11.1", "@elastic/elasticsearch": "npm:@elastic/elasticsearch-canary@8.9.1-canary.1", "@elastic/ems-client": "8.5.1", - "@elastic/eui": "93.0.0", + "@elastic/eui": "93.1.1", "@elastic/filesaver": "1.1.2", "@elastic/node-crypto": "1.2.1", "@elastic/numeral": "^2.5.1", @@ -380,7 +380,7 @@ "@kbn/data-view-utils": "link:packages/kbn-data-view-utils", "@kbn/data-views-plugin": "link:src/plugins/data_views", "@kbn/data-visualizer-plugin": "link:x-pack/plugins/data_visualizer", - "@kbn/dataset-quality-plugin": "link:x-pack/plugins/dataset_quality", + "@kbn/dataset-quality-plugin": "link:x-pack/plugins/observability_solution/dataset_quality", "@kbn/datemath": "link:packages/kbn-datemath", "@kbn/deeplinks-analytics": "link:packages/deeplinks/analytics", "@kbn/deeplinks-devtools": "link:packages/deeplinks/devtools", @@ -432,7 +432,7 @@ "@kbn/event-log-plugin": "link:x-pack/plugins/event_log", "@kbn/expandable-flyout": "link:packages/kbn-expandable-flyout", "@kbn/exploratory-view-example-plugin": "link:x-pack/examples/exploratory_view_example", - "@kbn/exploratory-view-plugin": "link:x-pack/plugins/exploratory_view", + "@kbn/exploratory-view-plugin": "link:x-pack/plugins/observability_solution/exploratory_view", "@kbn/expression-error-plugin": "link:src/plugins/expression_error", "@kbn/expression-gauge-plugin": "link:src/plugins/chart_expressions/expression_gauge", "@kbn/expression-heatmap-plugin": "link:src/plugins/chart_expressions/expression_heatmap", @@ -588,7 +588,7 @@ "@kbn/no-data-page-plugin": "link:src/plugins/no_data_page", "@kbn/notifications-plugin": "link:x-pack/plugins/notifications", "@kbn/object-versioning": "link:packages/kbn-object-versioning", - "@kbn/observability-ai-assistant-plugin": "link:x-pack/plugins/observability_ai_assistant", + "@kbn/observability-ai-assistant-plugin": "link:x-pack/plugins/observability_solution/observability_ai_assistant", "@kbn/observability-alert-details": "link:x-pack/packages/observability/alert_details", "@kbn/observability-alerting-test-data": "link:x-pack/packages/observability/alerting_test_data", "@kbn/observability-fixtures-plugin": "link:x-pack/test/cases_api_integration/common/plugins/observability", @@ -596,7 +596,7 @@ "@kbn/observability-logs-explorer-plugin": "link:x-pack/plugins/observability_solution/observability_logs_explorer", "@kbn/observability-onboarding-plugin": "link:x-pack/plugins/observability_onboarding", "@kbn/observability-plugin": "link:x-pack/plugins/observability", - "@kbn/observability-shared-plugin": "link:x-pack/plugins/observability_shared", + "@kbn/observability-shared-plugin": "link:x-pack/plugins/observability_solution/observability_shared", "@kbn/oidc-provider-plugin": "link:x-pack/test/security_api_integration/plugins/oidc_provider", "@kbn/open-telemetry-instrumented-plugin": "link:test/common/plugins/otel_metrics", "@kbn/osquery-io-ts-types": "link:packages/kbn-osquery-io-ts-types", @@ -612,8 +612,8 @@ "@kbn/presentation-panel-plugin": "link:src/plugins/presentation_panel", "@kbn/presentation-publishing": "link:packages/presentation/presentation_publishing", "@kbn/presentation-util-plugin": "link:src/plugins/presentation_util", - "@kbn/profiling-data-access-plugin": "link:x-pack/plugins/profiling_data_access", - "@kbn/profiling-plugin": "link:x-pack/plugins/profiling", + "@kbn/profiling-data-access-plugin": "link:x-pack/plugins/observability_solution/profiling_data_access", + "@kbn/profiling-plugin": "link:x-pack/plugins/observability_solution/profiling", "@kbn/profiling-utils": "link:packages/kbn-profiling-utils", "@kbn/random-sampling": "link:x-pack/packages/kbn-random-sampling", "@kbn/react-field": "link:packages/kbn-react-field", @@ -845,7 +845,7 @@ "@kbn/utility-types": "link:packages/kbn-utility-types", "@kbn/utility-types-jest": "link:packages/kbn-utility-types-jest", "@kbn/utils": "link:packages/kbn-utils", - "@kbn/ux-plugin": "link:x-pack/plugins/ux", + "@kbn/ux-plugin": "link:x-pack/plugins/observability_solution/ux", "@kbn/v8-profiler-examples-plugin": "link:examples/v8_profiler_examples", "@kbn/vis-default-editor-plugin": "link:src/plugins/vis_default_editor", "@kbn/vis-type-gauge-plugin": "link:src/plugins/vis_types/gauge", @@ -1653,7 +1653,7 @@ "rxjs-marbles": "^7.0.1", "sass-embedded": "^1.70.0", "sass-loader": "^10.5.1", - "selenium-webdriver": "^4.17.0", + "selenium-webdriver": "^4.18.1", "sharp": "0.32.6", "simple-git": "^3.16.0", "sinon": "^7.4.2", diff --git a/packages/content-management/table_list_view/src/table_list_view.tsx b/packages/content-management/table_list_view/src/table_list_view.tsx index 7270fd953a83e..1fd8cc8cc70c2 100644 --- a/packages/content-management/table_list_view/src/table_list_view.tsx +++ b/packages/content-management/table_list_view/src/table_list_view.tsx @@ -31,7 +31,7 @@ export type TableListViewProps({ editItem, deleteItems, getDetailViewLink, - onClickTitle, + getOnClickTitle, rowItemActions, id: listingId, contentEditor, @@ -114,7 +114,7 @@ export const TableListView = ({ deleteItems={deleteItems} rowItemActions={rowItemActions} getDetailViewLink={getDetailViewLink} - onClickTitle={onClickTitle} + getOnClickTitle={getOnClickTitle} id={listingId} contentEditor={contentEditor} titleColumnName={titleColumnName} diff --git a/packages/content-management/table_list_view_table/src/components/item_details.tsx b/packages/content-management/table_list_view_table/src/components/item_details.tsx index 0bd48456c4732..36138839a7daa 100644 --- a/packages/content-management/table_list_view_table/src/components/item_details.tsx +++ b/packages/content-management/table_list_view_table/src/components/item_details.tsx @@ -19,7 +19,7 @@ import { TagBadge } from './tag_badge'; type InheritedProps = Pick< TableListViewTableProps, - 'onClickTitle' | 'getDetailViewLink' | 'id' + 'getOnClickTitle' | 'getDetailViewLink' | 'id' >; interface Props extends InheritedProps { item: T; @@ -39,7 +39,7 @@ export function ItemDetails({ item, searchTerm = '', getDetailViewLink, - onClickTitle, + getOnClickTitle, onClickTag, }: Props) { const { @@ -59,20 +59,21 @@ export function ItemDetails({ ); const onClickTitleHandler = useMemo(() => { + const onClickTitle = getOnClickTitle?.(item); if (!onClickTitle || getDetailViewLink?.(item)) { return undefined; } return ((e) => { e.preventDefault(); - onClickTitle(item); + onClickTitle(); }) as React.MouseEventHandler; - }, [item, onClickTitle, getDetailViewLink]); + }, [getOnClickTitle, item, getDetailViewLink]); const renderTitle = useCallback(() => { const href = getDetailViewLink ? getDetailViewLink(item) : undefined; - if (!href && !onClickTitle) { + if (!href && !getOnClickTitle?.(item)) { // This item is not clickable return {title}; } @@ -93,9 +94,9 @@ export function ItemDetails({ ); }, [ getDetailViewLink, + getOnClickTitle, id, item, - onClickTitle, onClickTitleHandler, redirectAppLinksCoreStart, searchTerm, diff --git a/packages/content-management/table_list_view_table/src/table_list_view_table.tsx b/packages/content-management/table_list_view_table/src/table_list_view_table.tsx index 24f9e9db2b564..eef7c839a0359 100644 --- a/packages/content-management/table_list_view_table/src/table_list_view_table.tsx +++ b/packages/content-management/table_list_view_table/src/table_list_view_table.tsx @@ -87,7 +87,7 @@ export interface TableListViewTableProps< /** Handler to set the item title "href" value. If it returns undefined there won't be a link for this item. */ getDetailViewLink?: (entity: T) => string | undefined; /** Handler to execute when clicking the item title */ - onClickTitle?: (item: T) => void; + getOnClickTitle?: (item: T) => (() => void) | undefined; createItem?(): void; deleteItems?(items: T[]): Promise; /** @@ -256,7 +256,7 @@ function TableListViewTableComp({ editItem, deleteItems, getDetailViewLink, - onClickTitle, + getOnClickTitle, id: listingId = 'userContent', contentEditor = { enabled: false }, titleColumnName, @@ -269,9 +269,9 @@ function TableListViewTableComp({ setPageDataTestSubject(`${entityName}LandingPage`); }, [entityName, setPageDataTestSubject]); - if (!getDetailViewLink && !onClickTitle) { + if (!getDetailViewLink && !getOnClickTitle) { throw new Error( - `[TableListView] One o["getDetailViewLink" or "onClickTitle"] prop must be provided.` + `[TableListView] One o["getDetailViewLink" or "getOnClickTitle"] prop must be provided.` ); } @@ -443,6 +443,12 @@ function TableListViewTableComp({ if (item.managed) { ret[item.id] = { + edit: { + enabled: false, + reason: i18n.translate('contentManagement.tableList.managedItemNoEdit', { + defaultMessage: 'This item is managed by Elastic. Clone it before making changes.', + }), + }, ...ret[item.id], delete: { enabled: false, @@ -450,12 +456,6 @@ function TableListViewTableComp({ defaultMessage: 'This item is managed by Elastic. It cannot be deleted.', }), }, - edit: { - enabled: false, - reason: i18n.translate('contentManagement.tableList.managedItemNoEdit', { - defaultMessage: 'This item is managed by Elastic. Clone it before making changes.', - }), - }, }; } @@ -517,7 +517,7 @@ function TableListViewTableComp({ id={listingId} item={record} getDetailViewLink={getDetailViewLink} - onClickTitle={onClickTitle} + getOnClickTitle={getOnClickTitle} onClickTag={(tag, withModifierKey) => { if (withModifierKey) { addOrRemoveExcludeTagFilter(tag); @@ -623,7 +623,7 @@ function TableListViewTableComp({ contentEditor.enabled, listingId, getDetailViewLink, - onClickTitle, + getOnClickTitle, searchQuery.text, addOrRemoveExcludeTagFilter, addOrRemoveIncludeTagFilter, diff --git a/packages/core/apps/core-apps-server-internal/assets/legacy_styles.css b/packages/core/apps/core-apps-server-internal/assets/legacy_styles.css new file mode 100644 index 0000000000000..55ed0fbfdf8ba --- /dev/null +++ b/packages/core/apps/core-apps-server-internal/assets/legacy_styles.css @@ -0,0 +1,116 @@ +*, *:before, *:after { + box-sizing: border-box; +} + +html, body, div, span, svg { + margin: 0; + padding: 0; + border: none; + vertical-align: baseline; +} + +body, html { + width: 100%; + height: 100%; + margin: 0; + display: block; +} + +.kbnWelcomeView { + line-height: 1.5; + height: 100%; + display: -webkit-box; + display: -webkit-flex; + display: -ms-flexbox; + display: flex; + -webkit-box-flex: 1; + -webkit-flex: 1 0 auto; + -ms-flex: 1 0 auto; + flex: 1 0 auto; + -webkit-box-orient: vertical; + -webkit-box-direction: normal; + -webkit-flex-direction: column; + -ms-flex-direction: column; + flex-direction: column; + -webkit-box-align: center; + -webkit-align-items: center; + -ms-flex-align: center; + align-items: center; + -webkit-box-pack: center; + -webkit-justify-content: center; + -ms-flex-pack: center; + justify-content: center; +} + +.kbnWelcomeTitle { + color: #000; + font-size: 20px; + font-family: sans-serif; + margin: 16px 0; + animation: fadeIn 1s ease-in-out; + animation-fill-mode: forwards; + opacity: 0; + animation-delay: 1.0s; +} + +.kbnWelcomeText { + display: block; + font-size: 14px; + font-family: sans-serif; + line-height: 40px !important; + height: 40px !important; + color: #98A2B3; +} + +.kbnLoaderWrap { + text-align: center; + line-height: 1; + font-family: sans-serif; + letter-spacing: -.005em; + -webkit-text-size-adjust: 100%; + -ms-text-size-adjust: 100%; + font-kerning: normal; + font-weight: 400; +} + +.kbnLoaderWrap svg { + width: 64px; + height: 64px; + margin: auto; + line-height: 1; +} + +.kbnLoader path { + stroke: #FFFFFF; +} + +.kbnProgress { + display: inline-block; + position: relative; + width: 32px; + height: 4px; + overflow: hidden; + line-height: 1; +} + +.kbnProgress:before { + position: absolute; + content: ''; + height: 4px; + width: 100%; + top: 0; + bottom: 0; + left: 0; + transform: scaleX(0) translateX(0%); + animation: kbnProgress 1s cubic-bezier(.694, .0482, .335, 1) infinite; +} + +@keyframes kbnProgress { + 0% { + transform: scaleX(1) translateX(-100%); + } + + 100% { + transform: scaleX(1) translateX(100%); + } +} diff --git a/packages/core/apps/core-apps-server-internal/assets/legacy_theme.js b/packages/core/apps/core-apps-server-internal/assets/legacy_theme.js new file mode 100644 index 0000000000000..ff26788c007e3 --- /dev/null +++ b/packages/core/apps/core-apps-server-internal/assets/legacy_theme.js @@ -0,0 +1,47 @@ +/* + * Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one + * or more contributor license agreements. Licensed under the Elastic License + * 2.0 and the Server Side Public License, v 1; you may not use this file except + * in compliance with, at your election, the Elastic License 2.0 or the Server + * Side Public License, v 1. + */ + +/* eslint-disable no-var */ + +function systemIsDark() { + try { + return window.matchMedia('(prefers-color-scheme: dark)').matches; + } catch (e) { + return false; + } +} + +function createInlineStyles(content) { + var head = document.getElementsByTagName('head')[0]; + var style = document.createElement('style'); + style.textContent = content; + head.appendChild(style); +} + +// must be kept in sync with +// packages/core/rendering/core-rendering-server-internal/src/views/styles.tsx + +var lightStyles = [ + 'html { background-color: #F8FAFD; }', + '.kbnWelcomeText { color: #69707D; }', + '.kbnProgress { background-color: #F5F7FA; }', + '.kbnProgress:before { background-color: #006DE4; }', +].join('\n'); + +var darkStyles = [ + 'html { background-color: #141519; }', + '.kbnWelcomeText { color: #98A2B3; }', + '.kbnProgress { background-color: #25262E; }', + '.kbnProgress:before { background-color: #1BA9F5; }', +].join('\n'); + +if (systemIsDark()) { + createInlineStyles(darkStyles); +} else { + createInlineStyles(lightStyles); +} diff --git a/packages/core/apps/core-apps-server-internal/src/core_app.test.ts b/packages/core/apps/core-apps-server-internal/src/core_app.test.ts index f0bde326b7b74..153a283fe5696 100644 --- a/packages/core/apps/core-apps-server-internal/src/core_app.test.ts +++ b/packages/core/apps/core-apps-server-internal/src/core_app.test.ts @@ -217,6 +217,73 @@ describe('CoreApp', () => { bypassErrorFormat: true, }); }); + + it('registers expected static dirs if there are public plugins', () => { + prebootUIPlugins.internal.set('some-plugin', { + publicAssetsDir: '/foo', + publicTargetDir: '/bar', + requiredBundles: [], + version: '1.0.0', + }); + prebootUIPlugins.public.set('some-plugin-2', { + type: PluginType.preboot, + configPath: 'some-plugin-2', + id: 'some-plugin-2', + optionalPlugins: [], + requiredBundles: [], + requiredPlugins: [], + runtimePluginDependencies: [], + }); + prebootUIPlugins.internal.set('some-plugin-2', { + publicAssetsDir: '/foo', + publicTargetDir: '/bar', + requiredBundles: [], + version: '1.0.0', + }); + + internalCorePreboot.http.staticAssets.prependServerPath.mockReturnValue( + '/static-assets-path' + ); + internalCorePreboot.http.staticAssets.getPluginServerPath.mockImplementation( + (name: string, path: string) => `/static-assets-path/${name}/${path}` + ); + coreApp.preboot(internalCorePreboot, prebootUIPlugins); + + expect(internalCorePreboot.http.registerStaticDir).toHaveBeenCalledTimes( + // Twice for all UI plugins + core's UI asset routes + prebootUIPlugins.public.size * 2 + 2 + ); + expect(internalCorePreboot.http.registerStaticDir).toHaveBeenCalledWith( + '/static-assets-path', + expect.any(String) + ); + expect(internalCorePreboot.http.registerStaticDir).toHaveBeenCalledWith( + '/ui/{path*}', + expect.any(String) + ); + expect(internalCorePreboot.http.registerStaticDir).toHaveBeenCalledWith( + '/static-assets-path/some-plugin/{path*}', + expect.any(String) + ); + expect(internalCorePreboot.http.registerStaticDir).toHaveBeenCalledWith( + '/plugins/some-plugin/assets/{path*}', // legacy + expect.any(String) + ); + expect(internalCorePreboot.http.registerStaticDir).toHaveBeenCalledWith( + '/static-assets-path/some-plugin-2/{path*}', + expect.any(String) + ); + expect(internalCorePreboot.http.registerStaticDir).toHaveBeenCalledWith( + '/plugins/some-plugin-2/assets/{path*}', // legacy + expect.any(String) + ); + }); + + it('does not register any static dirs if there are no public plugins', () => { + prebootUIPlugins = emptyPlugins(); + coreApp.preboot(internalCorePreboot, prebootUIPlugins); + expect(internalCorePreboot.http.registerStaticDir).toHaveBeenCalledTimes(0); + }); }); describe('`/app/{id}/{any*}` route', () => { @@ -249,19 +316,72 @@ describe('CoreApp', () => { }); }); - it('registers SHA-scoped and non-SHA-scoped UI bundle routes', async () => { + it('registers expected static dirs if there are public plugins', async () => { const uiPlugins = emptyPlugins(); - internalCoreSetup.http.staticAssets.prependServerPath.mockReturnValue('/some-path'); + uiPlugins.public.set('some-plugin', { + type: PluginType.preboot, + configPath: 'some-plugin', + id: 'some-plugin', + optionalPlugins: [], + requiredBundles: [], + requiredPlugins: [], + runtimePluginDependencies: [], + }); + uiPlugins.internal.set('some-plugin', { + publicAssetsDir: '/foo', + publicTargetDir: '/bar', + requiredBundles: [], + version: '1.0.0', + }); + uiPlugins.public.set('some-plugin-2', { + type: PluginType.preboot, + configPath: 'some-plugin-2', + id: 'some-plugin-2', + optionalPlugins: [], + requiredBundles: [], + requiredPlugins: [], + runtimePluginDependencies: [], + }); + uiPlugins.internal.set('some-plugin-2', { + publicAssetsDir: '/foo', + publicTargetDir: '/bar', + requiredBundles: [], + version: '1.0.0', + }); + + internalCoreSetup.http.staticAssets.prependServerPath.mockReturnValue('/static-assets-path'); + internalCoreSetup.http.staticAssets.getPluginServerPath.mockImplementation( + (name: string, path: string) => `/static-assets-path/${name}/${path}` + ); await coreApp.setup(internalCoreSetup, uiPlugins); - expect(internalCoreSetup.http.registerStaticDir).toHaveBeenCalledTimes(2); + expect(internalCoreSetup.http.registerStaticDir).toHaveBeenCalledTimes( + // Twice for all UI plugins + core's UI asset routes + uiPlugins.public.size * 2 + 2 + ); expect(internalCoreSetup.http.registerStaticDir).toHaveBeenCalledWith( - '/some-path', + '/static-assets-path', expect.any(String) ); expect(internalCoreSetup.http.registerStaticDir).toHaveBeenCalledWith( '/ui/{path*}', expect.any(String) ); + expect(internalCoreSetup.http.registerStaticDir).toHaveBeenCalledWith( + '/static-assets-path/some-plugin/{path*}', + expect.any(String) + ); + expect(internalCoreSetup.http.registerStaticDir).toHaveBeenCalledWith( + '/plugins/some-plugin/assets/{path*}', // legacy + expect.any(String) + ); + expect(internalCoreSetup.http.registerStaticDir).toHaveBeenCalledWith( + '/static-assets-path/some-plugin-2/{path*}', + expect.any(String) + ); + expect(internalCoreSetup.http.registerStaticDir).toHaveBeenCalledWith( + '/plugins/some-plugin-2/assets/{path*}', // legacy + expect.any(String) + ); }); }); diff --git a/packages/core/apps/core-apps-server-internal/src/core_app.ts b/packages/core/apps/core-apps-server-internal/src/core_app.ts index 1e54d7d8aaa26..a65b3373b2e83 100644 --- a/packages/core/apps/core-apps-server-internal/src/core_app.ts +++ b/packages/core/apps/core-apps-server-internal/src/core_app.ts @@ -63,7 +63,7 @@ export class CoreAppsService { // We register app-serving routes only if there are `preboot` plugins that may need them. if (uiPlugins.public.size > 0) { this.registerPrebootDefaultRoutes(corePreboot, uiPlugins); - this.registerStaticDirs(corePreboot); + this.registerStaticDirs(corePreboot, uiPlugins); } } @@ -71,7 +71,7 @@ export class CoreAppsService { this.logger.debug('Setting up core app.'); const config = await firstValueFrom(this.config$); this.registerDefaultRoutes(coreSetup, uiPlugins, config); - this.registerStaticDirs(coreSetup); + this.registerStaticDirs(coreSetup, uiPlugins); } private registerPrebootDefaultRoutes(corePreboot: InternalCorePreboot, uiPlugins: UiPlugins) { @@ -271,7 +271,7 @@ export class CoreAppsService { // After the package is built and bootstrap extracts files to bazel-bin, // assets are exposed at the root of the package and in the package's node_modules dir - private registerStaticDirs(core: InternalCoreSetup | InternalCorePreboot) { + private registerStaticDirs(core: InternalCoreSetup | InternalCorePreboot, uiPlugins: UiPlugins) { /** * Serve UI from sha-scoped and not-sha-scoped paths to allow time for plugin code to migrate * Eventually we only want to serve from the sha scoped path @@ -282,5 +282,20 @@ export class CoreAppsService { fromRoot('node_modules/@kbn/core-apps-server-internal/assets') ); }); + + for (const [pluginName] of uiPlugins.public) { + const pluginInfo = uiPlugins.internal.get(pluginName); + if (!pluginInfo) continue; // assuming we will never hit this case; a public entry should have internal info registered + /** + * Serve UI from sha-scoped and not-sha-scoped paths to allow time for plugin code to migrate + * Eventually we only want to serve from the sha scoped path + */ + [ + core.http.staticAssets.getPluginServerPath(pluginName, '{path*}'), + `/plugins/${pluginName}/assets/{path*}`, + ].forEach((path) => { + core.http.registerStaticDir(path, pluginInfo.publicAssetsDir); + }); + } } } diff --git a/packages/core/http/core-http-server-internal/src/__snapshots__/http_config.test.ts.snap b/packages/core/http/core-http-server-internal/src/__snapshots__/http_config.test.ts.snap index fe4336270c0c0..fb38682503275 100644 --- a/packages/core/http/core-http-server-internal/src/__snapshots__/http_config.test.ts.snap +++ b/packages/core/http/core-http-server-internal/src/__snapshots__/http_config.test.ts.snap @@ -73,6 +73,7 @@ Object { "valueInBytes": 1048576, }, "name": "kibana-hostname", + "payloadTimeout": 20000, "port": 5601, "requestId": Object { "allowFromAnyIp": false, diff --git a/packages/core/http/core-http-server-internal/src/http_config.test.ts b/packages/core/http/core-http-server-internal/src/http_config.test.ts index f0bd5773b40b9..45886865ca945 100644 --- a/packages/core/http/core-http-server-internal/src/http_config.test.ts +++ b/packages/core/http/core-http-server-internal/src/http_config.test.ts @@ -349,6 +349,14 @@ test('can specify socket timeouts', () => { expect(socketTimeout).toBe(5e5); }); +test('can specify payload timeouts', () => { + const obj = { + payloadTimeout: 654321, + }; + const { payloadTimeout } = config.schema.validate(obj); + expect(payloadTimeout).toBe(654321); +}); + describe('with compression', () => { test('accepts valid referrer whitelist', () => { const { diff --git a/packages/core/http/core-http-server-internal/src/http_config.ts b/packages/core/http/core-http-server-internal/src/http_config.ts index 54b8e808f675b..dde050c44e762 100644 --- a/packages/core/http/core-http-server-internal/src/http_config.ts +++ b/packages/core/http/core-http-server-internal/src/http_config.ts @@ -26,6 +26,8 @@ import { } from './security_response_headers_config'; import { CdnConfig } from './cdn_config'; +const SECOND = 1000; + const validBasePathRegex = /^\/.*[^\/]$/; const hostURISchema = schema.uri({ scheme: ['http', 'https'] }); @@ -129,10 +131,13 @@ const configSchema = schema.object( rewriteBasePath: schema.boolean({ defaultValue: false }), ssl: sslSchema, keepaliveTimeout: schema.number({ - defaultValue: 120000, + defaultValue: 120 * SECOND, }), socketTimeout: schema.number({ - defaultValue: 120000, + defaultValue: 120 * SECOND, + }), + payloadTimeout: schema.number({ + defaultValue: 20 * SECOND, }), compression: schema.object({ enabled: schema.boolean({ defaultValue: true }), @@ -278,6 +283,7 @@ export class HttpConfig implements IHttpConfig { public host: string; public keepaliveTimeout: number; public socketTimeout: number; + public payloadTimeout: number; public port: number; public cors: { enabled: boolean; @@ -342,6 +348,7 @@ export class HttpConfig implements IHttpConfig { this.publicBaseUrl = rawHttpConfig.publicBaseUrl; this.keepaliveTimeout = rawHttpConfig.keepaliveTimeout; this.socketTimeout = rawHttpConfig.socketTimeout; + this.payloadTimeout = rawHttpConfig.payloadTimeout; this.rewriteBasePath = rawHttpConfig.rewriteBasePath; this.ssl = new SslConfig(rawHttpConfig.ssl || {}); this.compression = rawHttpConfig.compression; diff --git a/packages/core/i18n/core-i18n-browser-internal/src/__snapshots__/i18n_service.test.tsx.snap b/packages/core/i18n/core-i18n-browser-internal/src/__snapshots__/i18n_service.test.tsx.snap index 50b4b74b0f3e5..87f13bee8f7c9 100644 --- a/packages/core/i18n/core-i18n-browser-internal/src/__snapshots__/i18n_service.test.tsx.snap +++ b/packages/core/i18n/core-i18n-browser-internal/src/__snapshots__/i18n_service.test.tsx.snap @@ -383,7 +383,6 @@ exports[`#start() returns \`Context\` component 1`] = ` "euiTourStepIndicator.isActive": "active", "euiTourStepIndicator.isComplete": "complete", "euiTourStepIndicator.isIncomplete": "incomplete", - "euiTreeView.ariaLabel": [Function], "euiTreeView.listNavigationInstructions": "You can quickly navigate this list using arrow keys.", }, } diff --git a/packages/core/i18n/core-i18n-browser-internal/src/i18n_eui_mapping.tsx b/packages/core/i18n/core-i18n-browser-internal/src/i18n_eui_mapping.tsx index a8c4db74ba406..58f057e2fedcc 100644 --- a/packages/core/i18n/core-i18n-browser-internal/src/i18n_eui_mapping.tsx +++ b/packages/core/i18n/core-i18n-browser-internal/src/i18n_eui_mapping.tsx @@ -1737,11 +1737,6 @@ export const getEuiContextMapping = (): EuiTokensObject => { values: { status, number }, description: 'Screen reader text describing the state of a tour step', }), - 'euiTreeView.ariaLabel': ({ nodeLabel, ariaLabel }: EuiValues) => - i18n.translate('core.euiTreeView.ariaLabel', { - defaultMessage: '{nodeLabel} child of {ariaLabel}', - values: { nodeLabel, ariaLabel }, - }), 'euiTreeView.listNavigationInstructions': i18n.translate( 'core.euiTreeView.listNavigationInstructions', { diff --git a/packages/core/injected-metadata/core-injected-metadata-browser-internal/src/types.ts b/packages/core/injected-metadata/core-injected-metadata-browser-internal/src/types.ts index 3b996e68e50b3..bf77a2531660a 100644 --- a/packages/core/injected-metadata/core-injected-metadata-browser-internal/src/types.ts +++ b/packages/core/injected-metadata/core-injected-metadata-browser-internal/src/types.ts @@ -6,12 +6,12 @@ * Side Public License, v 1. */ -import { ThemeVersion } from '@kbn/ui-shared-deps-npm'; import { InjectedMetadata, InjectedMetadataClusterInfo, InjectedMetadataExternalUrlPolicy, InjectedMetadataPlugin, + InjectedMetadataTheme, } from '@kbn/core-injected-metadata-common-internal'; import type { CustomBranding } from '@kbn/core-custom-branding-common'; @@ -39,10 +39,7 @@ export interface InternalInjectedMetadataSetup { getExternalUrlConfig: () => { policy: InjectedMetadataExternalUrlPolicy[]; }; - getTheme: () => { - darkMode: boolean; - version: ThemeVersion; - }; + getTheme: () => InjectedMetadataTheme; getElasticsearchInfo: () => InjectedMetadataClusterInfo; /** * An array of frontend plugins in topological order. diff --git a/packages/core/injected-metadata/core-injected-metadata-browser-internal/tsconfig.json b/packages/core/injected-metadata/core-injected-metadata-browser-internal/tsconfig.json index 622e507492b11..5b8cc7fff4bc2 100644 --- a/packages/core/injected-metadata/core-injected-metadata-browser-internal/tsconfig.json +++ b/packages/core/injected-metadata/core-injected-metadata-browser-internal/tsconfig.json @@ -13,7 +13,6 @@ ], "kbn_references": [ "@kbn/std", - "@kbn/ui-shared-deps-npm", "@kbn/core-base-common", "@kbn/core-injected-metadata-common-internal", "@kbn/core-custom-branding-common", diff --git a/packages/core/injected-metadata/core-injected-metadata-browser-mocks/src/injected_metadata_service.mock.ts b/packages/core/injected-metadata/core-injected-metadata-browser-mocks/src/injected_metadata_service.mock.ts index 3d76d48cbdb9b..69148ca90e31b 100644 --- a/packages/core/injected-metadata/core-injected-metadata-browser-mocks/src/injected_metadata_service.mock.ts +++ b/packages/core/injected-metadata/core-injected-metadata-browser-mocks/src/injected_metadata_service.mock.ts @@ -55,7 +55,14 @@ const createSetupContractMock = () => { }, } as any); setupContract.getPlugins.mockReturnValue([]); - setupContract.getTheme.mockReturnValue({ darkMode: false, version: 'v8' }); + setupContract.getTheme.mockReturnValue({ + darkMode: false, + version: 'v8', + stylesheetPaths: { + default: ['light-1.css'], + dark: ['dark-1.css'], + }, + }); return setupContract; }; diff --git a/packages/core/injected-metadata/core-injected-metadata-common-internal/index.ts b/packages/core/injected-metadata/core-injected-metadata-common-internal/index.ts index e6cb215e87499..ce66a5189ac9a 100644 --- a/packages/core/injected-metadata/core-injected-metadata-common-internal/index.ts +++ b/packages/core/injected-metadata/core-injected-metadata-common-internal/index.ts @@ -10,5 +10,6 @@ export type { InjectedMetadata, InjectedMetadataClusterInfo, InjectedMetadataExternalUrlPolicy, + InjectedMetadataTheme, InjectedMetadataPlugin, } from './src/types'; diff --git a/packages/core/injected-metadata/core-injected-metadata-common-internal/src/types.ts b/packages/core/injected-metadata/core-injected-metadata-common-internal/src/types.ts index ad1b889a07b22..6d4e3df08a5ef 100644 --- a/packages/core/injected-metadata/core-injected-metadata-common-internal/src/types.ts +++ b/packages/core/injected-metadata/core-injected-metadata-common-internal/src/types.ts @@ -10,6 +10,7 @@ import type { PluginName, DiscoveredPlugin } from '@kbn/core-base-common'; import type { ThemeVersion } from '@kbn/ui-shared-deps-npm'; import type { EnvironmentMode, PackageInfo } from '@kbn/config'; import type { CustomBranding } from '@kbn/core-custom-branding-common'; +import type { DarkModeValue } from '@kbn/core-ui-settings-common'; import type { BrowserLoggingConfig } from '@kbn/core-logging-common-internal'; /** @internal */ @@ -36,6 +37,16 @@ export interface InjectedMetadataExternalUrlPolicy { protocol?: string; } +/** @internal */ +export interface InjectedMetadataTheme { + darkMode: DarkModeValue; + version: ThemeVersion; + stylesheetPaths: { + default: string[]; + dark: string[]; + }; +} + /** @internal */ export interface InjectedMetadata { version: string; @@ -55,10 +66,7 @@ export interface InjectedMetadata { i18n: { translationsUrl: string; }; - theme: { - darkMode: boolean; - version: ThemeVersion; - }; + theme: InjectedMetadataTheme; csp: { warnLegacyBrowsers: boolean; }; diff --git a/packages/core/injected-metadata/core-injected-metadata-common-internal/tsconfig.json b/packages/core/injected-metadata/core-injected-metadata-common-internal/tsconfig.json index 991449b03d2f7..85b7e12e85625 100644 --- a/packages/core/injected-metadata/core-injected-metadata-common-internal/tsconfig.json +++ b/packages/core/injected-metadata/core-injected-metadata-common-internal/tsconfig.json @@ -16,7 +16,8 @@ "@kbn/ui-shared-deps-npm", "@kbn/core-base-common", "@kbn/core-custom-branding-common", - "@kbn/core-logging-common-internal" + "@kbn/core-logging-common-internal", + "@kbn/core-ui-settings-common" ], "exclude": [ "target/**/*", diff --git a/packages/core/plugins/core-plugins-server-internal/src/plugins_service.test.ts b/packages/core/plugins/core-plugins-server-internal/src/plugins_service.test.ts index e25a1b924e420..7d0df69b23891 100644 --- a/packages/core/plugins/core-plugins-server-internal/src/plugins_service.test.ts +++ b/packages/core/plugins/core-plugins-server-internal/src/plugins_service.test.ts @@ -1301,31 +1301,6 @@ describe('PluginsService', () => { expect(standardMockPluginSystem.setupPlugins).not.toHaveBeenCalled(); }); - it('#preboot registers expected static dirs', async () => { - prebootDeps.http.staticAssets.getPluginServerPath.mockImplementation( - (pluginName: string) => `/static-assets/${pluginName}` - ); - await pluginsService.discover({ environment: environmentPreboot, node: nodePreboot }); - await pluginsService.preboot(prebootDeps); - expect(prebootDeps.http.registerStaticDir).toHaveBeenCalledTimes(prebootPlugins.length * 2); - expect(prebootDeps.http.registerStaticDir).toHaveBeenCalledWith( - '/static-assets/plugin-1-preboot', - expect.any(String) - ); - expect(prebootDeps.http.registerStaticDir).toHaveBeenCalledWith( - '/plugins/plugin-1-preboot/assets/{path*}', - expect.any(String) - ); - expect(prebootDeps.http.registerStaticDir).toHaveBeenCalledWith( - '/static-assets/plugin-2-preboot', - expect.any(String) - ); - expect(prebootDeps.http.registerStaticDir).toHaveBeenCalledWith( - '/plugins/plugin-2-preboot/assets/{path*}', - expect.any(String) - ); - }); - it('#setup does initialize `standard` plugins if plugins.initialize is true', async () => { config$.next({ plugins: { initialize: true } }); await pluginsService.discover({ environment: environmentPreboot, node: nodePreboot }); @@ -1346,32 +1321,6 @@ describe('PluginsService', () => { expect(prebootMockPluginSystem.setupPlugins).not.toHaveBeenCalled(); expect(initialized).toBe(false); }); - - it('#setup registers expected static dirs', async () => { - await pluginsService.discover({ environment: environmentPreboot, node: nodePreboot }); - await pluginsService.preboot(prebootDeps); - setupDeps.http.staticAssets.getPluginServerPath.mockImplementation( - (pluginName: string) => `/static-assets/${pluginName}` - ); - await pluginsService.setup(setupDeps); - expect(setupDeps.http.registerStaticDir).toHaveBeenCalledTimes(standardPlugins.length * 2); - expect(setupDeps.http.registerStaticDir).toHaveBeenCalledWith( - '/static-assets/plugin-1-standard', - expect.any(String) - ); - expect(setupDeps.http.registerStaticDir).toHaveBeenCalledWith( - '/plugins/plugin-1-standard/assets/{path*}', - expect.any(String) - ); - expect(setupDeps.http.registerStaticDir).toHaveBeenCalledWith( - '/static-assets/plugin-2-standard', - expect.any(String) - ); - expect(setupDeps.http.registerStaticDir).toHaveBeenCalledWith( - '/plugins/plugin-2-standard/assets/{path*}', - expect.any(String) - ); - }); }); describe('#getExposedPluginConfigsToUsage', () => { diff --git a/packages/core/plugins/core-plugins-server-internal/src/plugins_service.ts b/packages/core/plugins/core-plugins-server-internal/src/plugins_service.ts index da5d77d8be675..bb5ce353c3492 100644 --- a/packages/core/plugins/core-plugins-server-internal/src/plugins_service.ts +++ b/packages/core/plugins/core-plugins-server-internal/src/plugins_service.ts @@ -150,7 +150,6 @@ export class PluginsService const config = await firstValueFrom(this.config$); if (config.initialize) { await this.prebootPluginsSystem.setupPlugins(deps); - this.registerPluginStaticDirs(deps, this.prebootUiPluginInternalInfo); } else { this.log.info( 'Skipping `setup` for `preboot` plugins since plugin initialization is disabled.' @@ -166,7 +165,6 @@ export class PluginsService let contracts = new Map(); if (config.initialize) { contracts = await this.standardPluginsSystem.setupPlugins(deps); - this.registerPluginStaticDirs(deps, this.standardUiPluginInternalInfo); } else { this.log.info( 'Skipping `setup` for `standard` plugins since plugin initialization is disabled.' @@ -442,22 +440,4 @@ export class PluginsService missingOrIncompatibleDependencies, }; } - - private registerPluginStaticDirs( - deps: PluginsServiceSetupDeps | PluginsServicePrebootSetupDeps, - uiPluginInternalInfo: Map - ) { - for (const [pluginName, pluginInfo] of uiPluginInternalInfo) { - /** - * Serve UI from sha-scoped and not-sha-scoped paths to allow time for plugin code to migrate - * Eventually we only want to serve from the sha scoped path - */ - [ - deps.http.staticAssets.getPluginServerPath(pluginName, '{path*}'), - `/plugins/${pluginName}/assets/{path*}`, - ].forEach((path) => { - deps.http.registerStaticDir(path, pluginInfo.publicAssetsDir); - }); - } - } } diff --git a/packages/core/rendering/core-rendering-server-internal/src/__snapshots__/rendering_service.test.ts.snap b/packages/core/rendering/core-rendering-server-internal/src/__snapshots__/rendering_service.test.ts.snap index 7dd7b1739075c..250073318a3ac 100644 --- a/packages/core/rendering/core-rendering-server-internal/src/__snapshots__/rendering_service.test.ts.snap +++ b/packages/core/rendering/core-rendering-server-internal/src/__snapshots__/rendering_service.test.ts.snap @@ -62,6 +62,16 @@ Object { "serverBasePath": "/mock-server-basepath", "theme": Object { "darkMode": "theme:darkMode", + "stylesheetPaths": Object { + "dark": Array [ + "/style-1.css", + "/style-2.css", + ], + "default": Array [ + "/style-1.css", + "/style-2.css", + ], + }, "version": "v8", }, "uiPlugins": Array [], @@ -128,6 +138,16 @@ Object { "serverBasePath": "/mock-server-basepath", "theme": Object { "darkMode": "theme:darkMode", + "stylesheetPaths": Object { + "dark": Array [ + "/style-1.css", + "/style-2.css", + ], + "default": Array [ + "/style-1.css", + "/style-2.css", + ], + }, "version": "v8", }, "uiPlugins": Array [], @@ -198,6 +218,16 @@ Object { "serverBasePath": "/mock-server-basepath", "theme": Object { "darkMode": "theme:darkMode", + "stylesheetPaths": Object { + "dark": Array [ + "/style-1.css", + "/style-2.css", + ], + "default": Array [ + "/style-1.css", + "/style-2.css", + ], + }, "version": "v8", }, "uiPlugins": Array [], @@ -264,6 +294,16 @@ Object { "serverBasePath": "/mock-server-basepath", "theme": Object { "darkMode": "theme:darkMode", + "stylesheetPaths": Object { + "dark": Array [ + "/style-1.css", + "/style-2.css", + ], + "default": Array [ + "/style-1.css", + "/style-2.css", + ], + }, "version": "v8", }, "uiPlugins": Array [], @@ -330,6 +370,16 @@ Object { "serverBasePath": "/mock-server-basepath", "theme": Object { "darkMode": "theme:darkMode", + "stylesheetPaths": Object { + "dark": Array [ + "/style-1.css", + "/style-2.css", + ], + "default": Array [ + "/style-1.css", + "/style-2.css", + ], + }, "version": "v8", }, "uiPlugins": Array [], @@ -400,6 +450,16 @@ Object { "serverBasePath": "/mock-server-basepath", "theme": Object { "darkMode": "theme:darkMode", + "stylesheetPaths": Object { + "dark": Array [ + "/style-1.css", + "/style-2.css", + ], + "default": Array [ + "/style-1.css", + "/style-2.css", + ], + }, "version": "v8", }, "uiPlugins": Array [], @@ -466,6 +526,16 @@ Object { "serverBasePath": "/mock-server-basepath", "theme": Object { "darkMode": "theme:darkMode", + "stylesheetPaths": Object { + "dark": Array [ + "/style-1.css", + "/style-2.css", + ], + "default": Array [ + "/style-1.css", + "/style-2.css", + ], + }, "version": "v8", }, "uiPlugins": Array [], @@ -532,6 +602,16 @@ Object { "serverBasePath": "/mock-server-basepath", "theme": Object { "darkMode": "theme:darkMode", + "stylesheetPaths": Object { + "dark": Array [ + "/style-1.css", + "/style-2.css", + ], + "default": Array [ + "/style-1.css", + "/style-2.css", + ], + }, "version": "v8", }, "uiPlugins": Array [], @@ -607,6 +687,16 @@ Object { "serverBasePath": "/mock-server-basepath", "theme": Object { "darkMode": "theme:darkMode", + "stylesheetPaths": Object { + "dark": Array [ + "/style-1.css", + "/style-2.css", + ], + "default": Array [ + "/style-1.css", + "/style-2.css", + ], + }, "version": "v8", }, "uiPlugins": Array [], @@ -673,6 +763,16 @@ Object { "serverBasePath": "/mock-server-basepath", "theme": Object { "darkMode": "theme:darkMode", + "stylesheetPaths": Object { + "dark": Array [ + "/style-1.css", + "/style-2.css", + ], + "default": Array [ + "/style-1.css", + "/style-2.css", + ], + }, "version": "v8", }, "uiPlugins": Array [], @@ -748,6 +848,16 @@ Object { "serverBasePath": "/mock-server-basepath", "theme": Object { "darkMode": "theme:darkMode", + "stylesheetPaths": Object { + "dark": Array [ + "/style-1.css", + "/style-2.css", + ], + "default": Array [ + "/style-1.css", + "/style-2.css", + ], + }, "version": "v8", }, "uiPlugins": Array [], @@ -819,6 +929,16 @@ Object { "serverBasePath": "/mock-server-basepath", "theme": Object { "darkMode": "theme:darkMode", + "stylesheetPaths": Object { + "dark": Array [ + "/style-1.css", + "/style-2.css", + ], + "default": Array [ + "/style-1.css", + "/style-2.css", + ], + }, "version": "v8", }, "uiPlugins": Array [], @@ -885,6 +1005,16 @@ Object { "serverBasePath": "/mock-server-basepath", "theme": Object { "darkMode": "theme:darkMode", + "stylesheetPaths": Object { + "dark": Array [ + "/style-1.css", + "/style-2.css", + ], + "default": Array [ + "/style-1.css", + "/style-2.css", + ], + }, "version": "v8", }, "uiPlugins": Array [], @@ -960,6 +1090,16 @@ Object { "serverBasePath": "/mock-server-basepath", "theme": Object { "darkMode": "theme:darkMode", + "stylesheetPaths": Object { + "dark": Array [ + "/style-1.css", + "/style-2.css", + ], + "default": Array [ + "/style-1.css", + "/style-2.css", + ], + }, "version": "v8", }, "uiPlugins": Array [], @@ -1031,6 +1171,16 @@ Object { "serverBasePath": "/mock-server-basepath", "theme": Object { "darkMode": "theme:darkMode", + "stylesheetPaths": Object { + "dark": Array [ + "/style-1.css", + "/style-2.css", + ], + "default": Array [ + "/style-1.css", + "/style-2.css", + ], + }, "version": "v8", }, "uiPlugins": Array [], @@ -1102,6 +1252,16 @@ Object { "serverBasePath": "/mock-server-basepath", "theme": Object { "darkMode": "theme:darkMode", + "stylesheetPaths": Object { + "dark": Array [ + "/style-1.css", + "/style-2.css", + ], + "default": Array [ + "/style-1.css", + "/style-2.css", + ], + }, "version": "v8", }, "uiPlugins": Array [], diff --git a/packages/core/rendering/core-rendering-server-internal/src/bootstrap/bootstrap_renderer.test.ts b/packages/core/rendering/core-rendering-server-internal/src/bootstrap/bootstrap_renderer.test.ts index e959b3aff356d..2f87f6dd27a37 100644 --- a/packages/core/rendering/core-rendering-server-internal/src/bootstrap/bootstrap_renderer.test.ts +++ b/packages/core/rendering/core-rendering-server-internal/src/bootstrap/bootstrap_renderer.test.ts @@ -269,6 +269,23 @@ describe('bootstrapRenderer', () => { darkMode: true, }); }); + + it('calls getThemeTag with the correct parameters when darkMode is `system`', async () => { + uiSettingsClient.get.mockResolvedValue('system'); + + const request = httpServerMock.createKibanaRequest(); + + await renderer({ + request, + uiSettingsClient, + }); + + expect(getThemeTagMock).toHaveBeenCalledTimes(1); + expect(getThemeTagMock).toHaveBeenCalledWith({ + themeVersion: 'v8', + darkMode: false, + }); + }); }); describe('when the auth status is `unauthenticated`', () => { diff --git a/packages/core/rendering/core-rendering-server-internal/src/bootstrap/bootstrap_renderer.ts b/packages/core/rendering/core-rendering-server-internal/src/bootstrap/bootstrap_renderer.ts index 57cd247b4f6f5..82df9a484efd4 100644 --- a/packages/core/rendering/core-rendering-server-internal/src/bootstrap/bootstrap_renderer.ts +++ b/packages/core/rendering/core-rendering-server-internal/src/bootstrap/bootstrap_renderer.ts @@ -10,6 +10,7 @@ import { createHash } from 'crypto'; import { PackageInfo } from '@kbn/config'; import { ThemeVersion } from '@kbn/ui-shared-deps-npm'; import type { KibanaRequest, HttpAuth } from '@kbn/core-http-server'; +import { type DarkModeValue, parseDarkModeValue } from '@kbn/core-ui-settings-common'; import type { IUiSettingsClient } from '@kbn/core-ui-settings-server'; import type { UiPlugins } from '@kbn/core-plugins-base-server-internal'; import { InternalUserSettingsServiceSetup } from '@kbn/core-user-settings-server-internal'; @@ -56,7 +57,7 @@ export const bootstrapRendererFactory: BootstrapRendererFactory = ({ }; return async function bootstrapRenderer({ uiSettingsClient, request, isAnonymousPage = false }) { - let darkMode = false; + let darkMode: DarkModeValue = false; const themeVersion: ThemeVersion = 'v8'; try { @@ -68,13 +69,18 @@ export const bootstrapRendererFactory: BootstrapRendererFactory = ({ if (userSettingDarkMode !== undefined) { darkMode = userSettingDarkMode; } else { - darkMode = await uiSettingsClient.get('theme:darkMode'); + darkMode = parseDarkModeValue(await uiSettingsClient.get('theme:darkMode')); } } } catch (e) { // just use the default values in case of connectivity issues with ES } + // keeping legacy themeTag support - note that the browser is now overriding it during setup. + if (darkMode === 'system') { + darkMode = false; + } + const themeTag = getThemeTag({ themeVersion, darkMode, diff --git a/packages/core/rendering/core-rendering-server-internal/src/render_utils.test.ts b/packages/core/rendering/core-rendering-server-internal/src/render_utils.test.ts index e52e18e03776b..46b880dbb257a 100644 --- a/packages/core/rendering/core-rendering-server-internal/src/render_utils.test.ts +++ b/packages/core/rendering/core-rendering-server-internal/src/render_utils.test.ts @@ -6,23 +6,65 @@ * Side Public License, v 1. */ -import { getStylesheetPaths } from './render_utils'; +import { getThemeStylesheetPaths, getCommonStylesheetPaths, getScriptPaths } from './render_utils'; + +describe('getScriptPaths', () => { + it('returns the correct list when darkMode is `system`', () => { + expect( + getScriptPaths({ + baseHref: '/base-path', + darkMode: 'system', + }) + ).toEqual(['/base-path/ui/legacy_theme.js']); + }); + + it('returns the correct list when darkMode is `true`', () => { + expect( + getScriptPaths({ + baseHref: '/base-path', + darkMode: true, + }) + ).toEqual([]); + }); + + it('returns the correct list when darkMode is `false`', () => { + expect( + getScriptPaths({ + baseHref: '/base-path', + darkMode: false, + }) + ).toEqual([]); + }); +}); + +describe('getCommonStylesheetPaths', () => { + it('returns the correct list', () => { + expect( + getCommonStylesheetPaths({ + baseHref: '/base-path', + }) + ).toMatchInlineSnapshot(` + Array [ + "/base-path/bundles/kbn-ui-shared-deps-src/kbn-ui-shared-deps-src.css", + "/base-path/ui/legacy_styles.css", + ] + `); + }); +}); describe('getStylesheetPaths', () => { describe('when darkMode is `true`', () => { describe('when themeVersion is `v8`', () => { it('returns the correct list', () => { expect( - getStylesheetPaths({ + getThemeStylesheetPaths({ darkMode: true, themeVersion: 'v8', baseHref: '/base-path/buildShaShort', - buildNum: 17, }) ).toMatchInlineSnapshot(` Array [ "/base-path/buildShaShort/bundles/kbn-ui-shared-deps-npm/kbn-ui-shared-deps-npm.v8.dark.css", - "/base-path/buildShaShort/bundles/kbn-ui-shared-deps-src/kbn-ui-shared-deps-src.css", "/base-path/buildShaShort/ui/legacy_dark_theme.min.css", ] `); @@ -33,16 +75,14 @@ describe('getStylesheetPaths', () => { describe('when themeVersion is `v8`', () => { it('returns the correct list', () => { expect( - getStylesheetPaths({ + getThemeStylesheetPaths({ darkMode: false, themeVersion: 'v8', baseHref: '/base-path/buildShaShort', - buildNum: 69, }) ).toMatchInlineSnapshot(` Array [ "/base-path/buildShaShort/bundles/kbn-ui-shared-deps-npm/kbn-ui-shared-deps-npm.v8.light.css", - "/base-path/buildShaShort/bundles/kbn-ui-shared-deps-src/kbn-ui-shared-deps-src.css", "/base-path/buildShaShort/ui/legacy_light_theme.min.css", ] `); diff --git a/packages/core/rendering/core-rendering-server-internal/src/render_utils.ts b/packages/core/rendering/core-rendering-server-internal/src/render_utils.ts index 6408b986a7c87..f4ce68885ddb6 100644 --- a/packages/core/rendering/core-rendering-server-internal/src/render_utils.ts +++ b/packages/core/rendering/core-rendering-server-internal/src/render_utils.ts @@ -16,6 +16,7 @@ import { config as loggingConfigDef, type LoggingConfigWithBrowserType, } from '@kbn/core-logging-server-internal'; +import type { DarkModeValue } from '@kbn/core-ui-settings-common'; export const getSettingValue = ( settingName: string, @@ -31,15 +32,35 @@ export const getSettingValue = ( export const getBundlesHref = (baseHref: string): string => `${baseHref}/bundles`; -export const getStylesheetPaths = ({ - themeVersion, +export const getScriptPaths = ({ + baseHref, + darkMode, +}: { + baseHref: string; + darkMode: DarkModeValue; +}) => { + if (darkMode === 'system') { + return [`${baseHref}/ui/legacy_theme.js`]; + } else { + return []; + } +}; + +export const getCommonStylesheetPaths = ({ baseHref }: { baseHref: string }) => { + const bundlesHref = getBundlesHref(baseHref); + return [ + `${bundlesHref}/kbn-ui-shared-deps-src/${UiSharedDepsSrc.cssDistFilename}`, + `${baseHref}/ui/legacy_styles.css`, + ]; +}; + +export const getThemeStylesheetPaths = ({ darkMode, + themeVersion, baseHref, - buildNum, }: { - themeVersion: UiSharedDepsNpm.ThemeVersion; darkMode: boolean; - buildNum: number; + themeVersion: UiSharedDepsNpm.ThemeVersion; baseHref: string; }) => { const bundlesHref = getBundlesHref(baseHref); @@ -49,14 +70,12 @@ export const getStylesheetPaths = ({ `${bundlesHref}/kbn-ui-shared-deps-npm/${UiSharedDepsNpm.darkCssDistFilename( themeVersion )}`, - `${bundlesHref}/kbn-ui-shared-deps-src/${UiSharedDepsSrc.cssDistFilename}`, `${baseHref}/ui/legacy_dark_theme.min.css`, ] : [ `${bundlesHref}/kbn-ui-shared-deps-npm/${UiSharedDepsNpm.lightCssDistFilename( themeVersion )}`, - `${bundlesHref}/kbn-ui-shared-deps-src/${UiSharedDepsSrc.cssDistFilename}`, `${baseHref}/ui/legacy_light_theme.min.css`, ]), ]; diff --git a/packages/core/rendering/core-rendering-server-internal/src/rendering_service.test.mocks.ts b/packages/core/rendering/core-rendering-server-internal/src/rendering_service.test.mocks.ts index e4abd8b3ff95b..e7d95312ed56a 100644 --- a/packages/core/rendering/core-rendering-server-internal/src/rendering_service.test.mocks.ts +++ b/packages/core/rendering/core-rendering-server-internal/src/rendering_service.test.mocks.ts @@ -16,11 +16,15 @@ jest.doMock('./bootstrap', () => ({ })); export const getSettingValueMock = jest.fn(); -export const getStylesheetPathsMock = jest.fn(); +export const getCommonStylesheetPathsMock = jest.fn(); +export const getThemeStylesheetPathsMock = jest.fn(); +export const getScriptPathsMock = jest.fn(); export const getBrowserLoggingConfigMock = jest.fn(); jest.doMock('./render_utils', () => ({ getSettingValue: getSettingValueMock, - getStylesheetPaths: getStylesheetPathsMock, + getCommonStylesheetPaths: getCommonStylesheetPathsMock, + getThemeStylesheetPaths: getThemeStylesheetPathsMock, + getScriptPaths: getScriptPathsMock, getBrowserLoggingConfig: getBrowserLoggingConfigMock, })); diff --git a/packages/core/rendering/core-rendering-server-internal/src/rendering_service.test.ts b/packages/core/rendering/core-rendering-server-internal/src/rendering_service.test.ts index 4cedc33b1b79d..7ebb97fb0779b 100644 --- a/packages/core/rendering/core-rendering-server-internal/src/rendering_service.test.ts +++ b/packages/core/rendering/core-rendering-server-internal/src/rendering_service.test.ts @@ -10,7 +10,9 @@ import { registerBootstrapRouteMock, bootstrapRendererMock, getSettingValueMock, - getStylesheetPathsMock, + getCommonStylesheetPathsMock, + getThemeStylesheetPathsMock, + getScriptPathsMock, getBrowserLoggingConfigMock, } from './rendering_service.test.mocks'; @@ -167,7 +169,7 @@ function renderTestCases( expect(data.legacyMetadata.globalUiSettings.user).toEqual({}); // user settings are not injected }); - it('calls `getStylesheetPaths` with the correct parameters', async () => { + it('calls `getCommonStylesheetPaths` with the correct parameters', async () => { getSettingValueMock.mockImplementation((settingName: string) => { if (settingName === 'theme:darkMode') { return true; @@ -178,12 +180,51 @@ function renderTestCases( const [render] = await getRender(); await render(createKibanaRequest(), uiSettings); - expect(getStylesheetPathsMock).toHaveBeenCalledTimes(1); - expect(getStylesheetPathsMock).toHaveBeenCalledWith({ + expect(getCommonStylesheetPathsMock).toHaveBeenCalledTimes(1); + expect(getCommonStylesheetPathsMock).toHaveBeenCalledWith({ + baseHref: '/mock-server-basepath', + }); + }); + + it('calls `getScriptPaths` with the correct parameters', async () => { + getSettingValueMock.mockImplementation((settingName: string) => { + if (settingName === 'theme:darkMode') { + return true; + } + return settingName; + }); + + const [render] = await getRender(); + await render(createKibanaRequest(), uiSettings); + + expect(getScriptPathsMock).toHaveBeenCalledTimes(1); + expect(getScriptPathsMock).toHaveBeenCalledWith({ + darkMode: true, + baseHref: '/mock-server-basepath', + }); + }); + + it('calls `getThemeStylesheetPaths` with the correct parameters', async () => { + getSettingValueMock.mockImplementation((settingName: string) => { + if (settingName === 'theme:darkMode') { + return true; + } + return settingName; + }); + + const [render] = await getRender(); + await render(createKibanaRequest(), uiSettings); + + expect(getThemeStylesheetPathsMock).toHaveBeenCalledTimes(2); + expect(getThemeStylesheetPathsMock).toHaveBeenCalledWith({ darkMode: true, themeVersion: 'v8', baseHref: '/mock-server-basepath', - buildNum: expect.any(Number), + }); + expect(getThemeStylesheetPathsMock).toHaveBeenCalledWith({ + darkMode: false, + themeVersion: 'v8', + baseHref: '/mock-server-basepath', }); }); @@ -263,11 +304,10 @@ function renderDarkModeTestCases( const [render] = await getRender(); await render(createKibanaRequest(), uiSettings); - expect(getStylesheetPathsMock).toHaveBeenCalledWith({ + expect(getThemeStylesheetPathsMock).toHaveBeenCalledWith({ darkMode: true, themeVersion: 'v8', baseHref: '/mock-server-basepath', - buildNum: expect.any(Number), }); }); @@ -289,11 +329,10 @@ function renderDarkModeTestCases( const [render] = await getRender(); await render(createKibanaRequest(), uiSettings); - expect(getStylesheetPathsMock).toHaveBeenCalledWith({ + expect(getThemeStylesheetPathsMock).toHaveBeenCalledWith({ darkMode: false, themeVersion: 'v8', baseHref: '/mock-server-basepath', - buildNum: expect.any(Number), }); }); @@ -313,11 +352,10 @@ function renderDarkModeTestCases( const [render] = await getRender(); await render(createKibanaRequest(), uiSettings); - expect(getStylesheetPathsMock).toHaveBeenCalledWith({ + expect(getThemeStylesheetPathsMock).toHaveBeenCalledWith({ darkMode: false, themeVersion: 'v8', baseHref: '/mock-server-basepath', - buildNum: expect.any(Number), }); }); @@ -337,11 +375,10 @@ function renderDarkModeTestCases( const [render] = await getRender(); await render(createKibanaRequest(), uiSettings); - expect(getStylesheetPathsMock).toHaveBeenCalledWith({ + expect(getThemeStylesheetPathsMock).toHaveBeenCalledWith({ darkMode: true, themeVersion: 'v8', baseHref: '/mock-server-basepath', - buildNum: expect.any(Number), }); }); @@ -361,11 +398,10 @@ function renderDarkModeTestCases( const [render] = await getRender(); await render(createKibanaRequest(), uiSettings); - expect(getStylesheetPathsMock).toHaveBeenCalledWith({ + expect(getThemeStylesheetPathsMock).toHaveBeenCalledWith({ darkMode: false, themeVersion: 'v8', baseHref: '/mock-server-basepath', - buildNum: expect.any(Number), }); }); @@ -385,11 +421,10 @@ function renderDarkModeTestCases( const [render] = await getRender(); await render(createKibanaRequest(), uiSettings); - expect(getStylesheetPathsMock).toHaveBeenCalledWith({ + expect(getThemeStylesheetPathsMock).toHaveBeenCalledWith({ darkMode: false, themeVersion: 'v8', baseHref: '/mock-server-basepath', - buildNum: expect.any(Number), }); }); @@ -409,11 +444,10 @@ function renderDarkModeTestCases( const [render] = await getRender(); await render(createKibanaRequest(), uiSettings); - expect(getStylesheetPathsMock).toHaveBeenCalledWith({ + expect(getThemeStylesheetPathsMock).toHaveBeenCalledWith({ darkMode: true, themeVersion: 'v8', baseHref: '/mock-server-basepath', - buildNum: expect.any(Number), }); }); }); @@ -436,8 +470,10 @@ describe('RenderingService', () => { jest.clearAllMocks(); service = new RenderingService(mockRenderingServiceParams); - getSettingValueMock.mockReset().mockImplementation((settingName: string) => settingName); - getStylesheetPathsMock.mockReset().mockReturnValue(['/style-1.css', '/style-2.css']); + getSettingValueMock.mockImplementation((settingName: string) => settingName); + getCommonStylesheetPathsMock.mockReturnValue(['/common-1.css']); + getThemeStylesheetPathsMock.mockReturnValue(['/style-1.css', '/style-2.css']); + getScriptPathsMock.mockReturnValue(['/script-1.js']); getBrowserLoggingConfigMock.mockReset().mockReturnValue({}); }); diff --git a/packages/core/rendering/core-rendering-server-internal/src/rendering_service.tsx b/packages/core/rendering/core-rendering-server-internal/src/rendering_service.tsx index 3dde32bc72972..dcf7162b481f8 100644 --- a/packages/core/rendering/core-rendering-server-internal/src/rendering_service.tsx +++ b/packages/core/rendering/core-rendering-server-internal/src/rendering_service.tsx @@ -17,8 +17,12 @@ import type { CoreContext } from '@kbn/core-base-server-internal'; import type { KibanaRequest, HttpAuth } from '@kbn/core-http-server'; import type { IUiSettingsClient } from '@kbn/core-ui-settings-server'; import type { UiPlugins } from '@kbn/core-plugins-base-server-internal'; -import { CustomBranding } from '@kbn/core-custom-branding-common'; -import { UserProvidedValues } from '@kbn/core-ui-settings-common'; +import type { CustomBranding } from '@kbn/core-custom-branding-common'; +import { + type UserProvidedValues, + type DarkModeValue, + parseDarkModeValue, +} from '@kbn/core-ui-settings-common'; import { Template } from './views'; import { IRenderOptions, @@ -29,7 +33,13 @@ import { RenderingMetadata, } from './types'; import { registerBootstrapRoute, bootstrapRendererFactory } from './bootstrap'; -import { getSettingValue, getStylesheetPaths, getBrowserLoggingConfig } from './render_utils'; +import { + getSettingValue, + getCommonStylesheetPaths, + getThemeStylesheetPaths, + getScriptPaths, + getBrowserLoggingConfig, +} from './render_utils'; import { filterUiPlugins } from './filter_ui_plugins'; import type { InternalRenderingRequestHandlerContext } from './internal_types'; @@ -42,6 +52,8 @@ type RenderOptions = userSettings?: never; }); +const themeVersion: ThemeVersion = 'v8'; + /** @internal */ export class RenderingService { constructor(private readonly coreContext: CoreContext) {} @@ -113,7 +125,6 @@ export class RenderingService { mode: this.coreContext.env.mode, packageInfo: this.coreContext.env.packageInfo, }; - const buildNum = env.packageInfo.buildNum; const staticAssetsHrefBase = http.staticAssets.getHrefBase(); const basePath = http.basePath.get(request); const { serverBasePath, publicBaseUrl } = http.basePath; @@ -160,29 +171,32 @@ export class RenderingService { // swallow error } - let userSettingDarkMode: boolean | undefined; - - if (!isAnonymousPage) { - userSettingDarkMode = await userSettings?.getUserSettingDarkMode(request); - } - - let darkMode: boolean; + // dark mode + const userSettingDarkMode = isAnonymousPage + ? undefined + : await userSettings?.getUserSettingDarkMode(request); const isThemeOverridden = settings.user['theme:darkMode']?.isOverridden ?? false; + let darkMode: DarkModeValue; if (userSettingDarkMode !== undefined && !isThemeOverridden) { darkMode = userSettingDarkMode; } else { - darkMode = getSettingValue('theme:darkMode', settings, Boolean); + darkMode = getSettingValue('theme:darkMode', settings, parseDarkModeValue); } - const themeVersion: ThemeVersion = 'v8'; - - const stylesheetPaths = getStylesheetPaths({ + const themeStylesheetPaths = (mode: boolean) => + getThemeStylesheetPaths({ + darkMode: mode, + themeVersion, + baseHref: staticAssetsHrefBase, + }); + const commonStylesheetPaths = getCommonStylesheetPaths({ + baseHref: staticAssetsHrefBase, + }); + const scriptPaths = getScriptPaths({ darkMode, - themeVersion, baseHref: staticAssetsHrefBase, - buildNum, }); const loggingConfig = await getBrowserLoggingConfig(this.coreContext.configService); @@ -195,9 +209,10 @@ export class RenderingService { bootstrapScriptUrl: `${basePath}/${bootstrapScript}`, i18n: i18n.translate, locale: i18n.getLocale(), - darkMode, themeVersion, - stylesheetPaths, + darkMode, + stylesheetPaths: commonStylesheetPaths, + scriptPaths, customBranding: { faviconSVG: branding?.faviconSVG, faviconPNG: branding?.faviconPNG, @@ -223,6 +238,10 @@ export class RenderingService { theme: { darkMode, version: themeVersion, + stylesheetPaths: { + default: themeStylesheetPaths(false), + dark: themeStylesheetPaths(true), + }, }, customBranding: { logo: branding?.logo, diff --git a/packages/core/rendering/core-rendering-server-internal/src/types.ts b/packages/core/rendering/core-rendering-server-internal/src/types.ts index 60dab17a20142..e96353816e199 100644 --- a/packages/core/rendering/core-rendering-server-internal/src/types.ts +++ b/packages/core/rendering/core-rendering-server-internal/src/types.ts @@ -16,6 +16,7 @@ import type { } from '@kbn/core-http-server-internal'; import type { InternalElasticsearchServiceSetup } from '@kbn/core-elasticsearch-server-internal'; import type { InternalStatusServiceSetup } from '@kbn/core-status-server-internal'; +import type { DarkModeValue } from '@kbn/core-ui-settings-common'; import type { IUiSettingsClient } from '@kbn/core-ui-settings-server'; import type { UiPlugins } from '@kbn/core-plugins-base-server-internal'; import type { InternalCustomBrandingSetup } from '@kbn/core-custom-branding-server-internal'; @@ -29,9 +30,10 @@ export interface RenderingMetadata { bootstrapScriptUrl: string; i18n: typeof i18n.translate; locale: string; - darkMode: boolean; themeVersion: ThemeVersion; + darkMode: DarkModeValue; stylesheetPaths: string[]; + scriptPaths: string[]; injectedMetadata: InjectedMetadata; customBranding: CustomBranding; } diff --git a/packages/core/rendering/core-rendering-server-internal/src/views/styles.tsx b/packages/core/rendering/core-rendering-server-internal/src/views/styles.tsx index 64c2941a280f8..0d268496e8688 100644 --- a/packages/core/rendering/core-rendering-server-internal/src/views/styles.tsx +++ b/packages/core/rendering/core-rendering-server-internal/src/views/styles.tsx @@ -7,16 +7,17 @@ */ import React, { FC } from 'react'; +import type { DarkModeValue } from '@kbn/core-ui-settings-common'; interface Props { - darkMode: boolean; + darkMode: DarkModeValue; stylesheetPaths: string[]; } export const Styles: FC = ({ darkMode, stylesheetPaths }) => { return ( <> - + {darkMode !== 'system' && } {stylesheetPaths.map((path) => ( ))} @@ -25,136 +26,30 @@ export const Styles: FC = ({ darkMode, stylesheetPaths }) => { }; const InlineStyles: FC<{ darkMode: boolean }> = ({ darkMode }) => { + // must be kept in sync with + // packages/core/apps/core-apps-server-internal/assets/legacy_theme.js /* eslint-disable react/no-danger */ return (